/**
 * CSS File: rn-interview.css
 * 2026-05-12 | Final checked
 */

.p-rec-new-interview__container {
  position: relative;
  margin: 0 auto;
}

.p-rec-new-interview__footer {
  text-align: center;
  margin-top: 40px;
}

.p-rec-new-interview__note {
  color: #1f2937;
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 24px;
}

.p-rec-new-interview__btn-wrap {
  display: flex;
  justify-content: center;
  width: 100%;
}

.p-rec-new-interview__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  padding: 16px 32px;
  background: #ffffff;
  border: 2px solid #ff4e79;
  color: #ff4e79;
  font-size: 1.125rem;
  font-weight: bold;
  text-decoration: none;
  border-radius: 50px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

@media (min-width: 768px) {
  .p-rec-new-interview__container {
    padding: 0;
  }
  .p-rec-new-interview__note span {
    display: none;
  }
  .p-rec-new-interview__btn:hover {
    background: #ff4e79;
    color: #ffffff;
    transform: translateY(-2px) scale(1.05);
    box-shadow: 0 6px 12px rgba(255, 78, 121, 0.2);
  }

  .p-rec-new-interview__btn::after {
    content: "→";
    margin-left: 8px;
    font-family: sans-serif;
  }
}
