/* ============================================================
   recruit_new.css - 求人ページ専用スタイル
   全クラスに rn- プレフィックスを付与し既存CSSとの衝突を防止
   ============================================================ */

/* --- Reset & Base --- */
.rn-page {
    color: #1A1A2E;
    line-height: 1.8;
    overflow-x: hidden;
}

/* --- Hero --- */
.rn-hero {
    position: relative;
    height: clamp(700px, 42vw, 1000px);
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

/* Hero background media (animated WebP supported) */
.rn-hero__media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;
    display: block;
}

.rn-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.10);
    z-index: 1;
}

.rn-hero__inner {
    position: relative;
    z-index: 2;
    color: #fff;
    padding-top: 240px;
}

.rn-hero__en {
    font-family: 'Roboto', sans-serif;
    font-size: 48px;
    font-weight: 700;
    letter-spacing: 0.04em;
    margin: 0 0 12px;
}

.rn-hero__ja {
    font-size: 18px;
    font-weight: 400;
    letter-spacing: 0.1em;
    margin: 0;
}

/* --- Section Common --- */
.rn-section {
    padding: 80px 0;
}

.rn-section--surface {
    background: #F5F7FA;
}

.rn-container {
    max-width: 1040px;
    margin: 0 auto;
    padding: 0 20px;
}

.rn-section__title {
    text-align: center;
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 16px;
    color: #1A1A2E;
}

.rn-section__subtitle {
    text-align: center;
    font-size: 15px;
    color: #888;
    font-family: 'Roboto', sans-serif;
    letter-spacing: 0.08em;
    margin: 0 0 48px;
}

/* --- About --- */
.rn-about__lead {
    font-size: 22px;
    font-weight: 700;
    text-align: center;
    margin: 0 0 24px;
    line-height: 1.7;
}

.rn-about__text {
    font-size: 15px;
    color: #666;
    text-align: center;
    max-width: 720px;
    margin: 0 auto;
    line-height: 2;
}

/* --- Business Cards --- */
.rn-biz {
    display: flex;
    gap: 24px;
    justify-content: center;
}

.rn-biz__card {
    flex: 1;
    max-width: 480px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    height: 260px;
    display: flex;
    align-items: flex-end;
    text-decoration: none;
    color: #fff;
    transition: transform 0.3s;
}

.rn-biz__card:hover {
    transform: translateY(-4px);
}

.rn-biz__card>img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rn-biz__card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 40%, rgba(0, 0, 0, 0.65));
}

.rn-biz__body {
    position: relative;
    z-index: 1;
    padding: 24px;
}

.rn-biz__logo {
    height: 28px;
    margin-bottom: 8px;
    display: block;
}

.rn-biz__name {
    font-size: 20px;
    font-weight: 700;
    margin: 0;
}

.rn-biz__desc {
    font-size: 13px;
    opacity: 0.85;
    margin: 4px 0 0;
}

/* --- Biz Balloon --- */
.rn-biz__balloon {
    position: relative;
    display: block;
    text-align: center;
    margin: 0 auto 32px;
    width: fit-content;
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 24px;
    padding: 12px 28px;
    font-size: 14px;
    color: #666;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.rn-biz__balloon::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 14px;
    height: 14px;
    background: #fff;
    border-right: 1px solid #E5E7EB;
    border-bottom: 1px solid #E5E7EB;
}

/* --- Numbers --- */
.rn-numbers {
    display: flex;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.rn-numbers__item {
    text-align: center;
    min-width: 160px;
}

.rn-numbers__value {
    font-family: 'Roboto', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #0EA5E9;
    line-height: 1.2;
}

.rn-numbers__value span {
    font-size: 18px;
    font-weight: 400;
}

.rn-numbers__label {
    font-size: 14px;
    color: #666;
    margin-top: 8px;
}

/* --- Tabs (Sub) --- */
.rn-tabs--sub {
    margin-bottom: 32px;
    gap: 8px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
}

.rn-tabs--sub .rn-tabs__btn {
    padding: 8px 16px;
    font-size: 14px;
    font-weight: 500;
    color: #4B5563;
    background: #F3F4F6;
    border-radius: 20px;
    border: none;
    transition: all 0.2s;
}

.rn-tabs--sub .rn-tabs__btn:hover {
    background: #E5E7EB;
    color: #1A1A2E;
}

.rn-tabs--sub .rn-tabs__btn.is-active {
    background: #0ea5e9;
    color: #fff;
    box-shadow: 0 4px 12px rgba(14, 165, 233, 0.2);
}

/* --- Job Cards --- */
.rn-jobs {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.rn-job {
    background: #fff;
    border: 1px solid #E5E7EB;
    border-radius: 12px;
    overflow: hidden;
    transition: box-shadow 0.3s;
}

.rn-job:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.rn-job__header {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    cursor: pointer;
    gap: 16px;
    user-select: none;
}

.rn-job__header--flat {
    cursor: default;
}

.rn-job__header--flat:hover {
    background: #fff;
}

.rn-job__badges {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.rn-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 4px;
    color: #fff;
    white-space: nowrap;
}

.rn-badge--filmlabo {
    background: #FFF100;
    color: #1A1A2E;
}

.rn-badge--mycaselabo {
    background: #3FAD9E;
}

.rn-badge--bestsports {
    background: #333;
}

.rn-badge--it {
    background: #0EA5E9;
}

.rn-job__title {
    font-size: 18px;
    font-weight: 700;
    flex: 1;
    margin: 0;
}

.rn-job__toggle {
    display: none;
    /* Hide accordion toggle for flat layout */
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #F5F7FA;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform 0.3s, background 0.3s;
}

.rn-job__toggle::before {
    content: '';
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid #666;
    border-bottom: 2px solid #666;
    transform: rotate(45deg);
    margin-top: -3px;
    transition: transform 0.3s;
}

.rn-job.is-open .rn-job__toggle {
    background: #0EA5E9;
}

.rn-job.is-open .rn-job__toggle::before {
    border-color: #fff;
    transform: rotate(-135deg);
    margin-top: 3px;
}

/* --- Job Detail --- */
.rn-job__detail {
    display: none;
    border-top: 1px solid #E5E7EB;
}

.rn-job__detail--flat {
    display: block;
    /* Always show in flat layout */
}

.rn-job__detail-inner {
    padding: 32px 24px;
}

.rn-job__detail-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 20px;
    padding-left: 12px;
    border-left: 3px solid #0EA5E9;
}

.rn-detail-table {
    width: 100%;
    border-collapse: collapse;
}

.rn-detail-table tr {
    border-bottom: 1px solid #F0F0F0;
}

.rn-detail-table tr:last-child {
    border-bottom: none;
}

.rn-detail-table th {
    width: 140px;
    padding: 14px 16px;
    font-size: 14px;
    font-weight: 600;
    color: #1A1A2E;
    vertical-align: top;
    text-align: left;
    background: #FAFBFC;
    white-space: nowrap;
}

.rn-detail-table td {
    padding: 14px 16px;
    font-size: 14px;
    color: #444;
    line-height: 1.9;
}

.rn-detail-table a {
    color: #0EA5E9;
    text-decoration: underline;
}

.rn-job__actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #F0F0F0;
}

.rn-btn-entry {
    display: inline-block;
    background: #0EA5E9;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 32px;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.3s;
}

.rn-btn-entry:hover {
    background: #0284C7;
}

.rn-job__close {
    display: none;
    /* Hide close button in flat layout */
    font-size: 13px;
    color: #888;
    cursor: pointer;
    background: none;
    border: none;
    padding: 8px;
    transition: color 0.3s;
}

.rn-job__close:hover {
    color: #1A1A2E;
}

/* --- Flow --- */
.rn-flow {
    display: flex;
    gap: 24px;
    justify-content: center;
    counter-reset: flow;
}

.rn-flow__step {
    flex: 1;
    max-width: 220px;
    background: #fff;
    border-radius: 12px;
    padding: 32px 20px 24px;
    text-align: center;
    position: relative;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.rn-flow__num {
    font-family: 'Roboto', sans-serif;
    font-size: 13px;
    font-weight: 700;
    color: #0EA5E9;
    margin-bottom: 12px;
}

.rn-flow__icon {
    font-size: 32px;
    margin-bottom: 12px;
    line-height: 1;
}

.rn-flow__label {
    font-size: 15px;
    font-weight: 700;
    margin: 0 0 8px;
}

.rn-flow__desc {
    font-size: 13px;
    color: #888;
    margin: 0;
    line-height: 1.6;
}

.rn-flow__arrow {
    display: flex;
    align-items: center;
    font-size: 20px;
    color: #CBD5E1;
    flex-shrink: 0;
    padding: 0 4px;
}

/* --- CTA --- */
.rn-cta {
    background: #0EA5E9;
    padding: 64px 0;
    text-align: center;
    color: #fff;
}

.rn-cta__title {
    font-size: 24px;
    font-weight: 700;
    margin: 0 0 8px;
}

.rn-cta__sub {
    font-size: 14px;
    opacity: 0.85;
    margin: 0 0 32px;
}

.rn-cta__btn {
    display: inline-block;
    background: #fff;
    color: #0EA5E9;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 48px;
    border-radius: 8px;
    text-decoration: none;
    transition: transform 0.3s, box-shadow 0.3s;
}

.rn-cta__btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.15);
}

.rn-cta__phone {
    margin-top: 24px;
    font-size: 14px;
    opacity: 0.85;
}

.rn-cta__phone-number {
    font-family: 'Roboto', sans-serif;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* --- Footer bridge (contact bar) --- */
.rn-footer-contact {
    background: #F5F7FA;
    text-align: center;
    padding: 24px 20px;
    font-size: 14px;
    color: #666;
}

.rn-footer-contact a {
    color: #0EA5E9;
    text-decoration: underline;
}

/* --- Interview --- */
.rn-job__interview {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px dashed #E5E7EB;
}

.rn-interview--incard {
    background: #FAFBFC;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #E5E7EB;
    margin-top: 24px;
}

.rn-interview__header {
    display: flex;
    gap: 24px;
    padding: 32px 32px 0;
    align-items: center;
}

.rn-interview__image {
    flex-shrink: 0;
    width: 140px;
    height: 140px;
}

.rn-interview__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.rn-interview__header-text {
    flex: 1;
}

.rn-interview__content {
    padding: 24px 32px 32px;
}

.rn-interview__title {
    font-size: 20px;
    font-weight: 700;
    color: #1A1A2E;
    margin: 0 0 12px;
    line-height: 1.5;
}

.rn-interview__role {
    display: inline-block;
    background: #fff;
    border: 1px solid #E5E7EB;
    color: #666;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 20px;
    margin: 0;
}

.rn-interview__intro {
    font-size: 14px;
    color: #444;
    line-height: 1.8;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px dashed #D1D5DB;
}

.rn-interview__qa {
    margin-bottom: 24px;
}

.rn-interview__qa:last-child {
    margin-bottom: 0;
}

.rn-interview__q {
    font-size: 15px;
    font-weight: 700;
    color: #1A1A2E;
    background: #fff;
    padding: 14px 20px;
    border-radius: 8px;
    margin-bottom: 16px;
    position: relative;
    border-left: 4px solid #0EA5E9;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.02);
}

.rn-interview__a {
    padding-left: 12px;
    font-size: 14px;
    color: #444;
    line-height: 1.9;
}

.rn-interview__speaker {
    font-weight: 700;
    color: #1A1A2E;
    display: block;
    margin-bottom: 8px;
}

.rn-interview__a p {
    margin: 0 0 12px;
}

.rn-interview__a p:last-child {
    margin-bottom: 0;
}

/* --- Interview Collapse (gradient fade + expand/close) --- */
.rn-interview-collapse {
    position: relative;
    margin-bottom: 32px;
}

.rn-interview-collapse__body {
    max-height: 420px;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.rn-interview-collapse.is-expanded .rn-interview-collapse__body {
    max-height: 4000px;
}

.rn-interview-collapse__gradient {
    position: absolute;
    bottom: 48px;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(to bottom,
            rgba(255, 255, 255, 0) 0%,
            rgba(255, 255, 255, 0.7) 40%,
            rgba(255, 255, 255, 0.95) 80%,
            rgba(255, 255, 255, 1) 100%);
    pointer-events: none;
    transition: opacity 0.3s ease;
}

.rn-interview-collapse.is-expanded .rn-interview-collapse__gradient {
    opacity: 0;
    pointer-events: none;
}

.rn-interview-collapse__toggle {
    display: block;
    width: 100%;
    padding: 14px 24px;
    background: transparent;
    border: 2px solid #0EA5E9;
    color: #0EA5E9;
    font-size: 15px;
    font-weight: 700;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.25s ease;
    text-align: center;
    position: relative;
    z-index: 2;
}

.rn-interview-collapse__toggle:hover {
    background: #0EA5E9;
    color: #fff;
}

.rn-interview-collapse__toggle-close {
    display: none;
}

.rn-interview-collapse.is-expanded .rn-interview-collapse__toggle-open {
    display: none;
}

.rn-interview-collapse.is-expanded .rn-interview-collapse__toggle-close {
    display: inline;
}

/* --- Category Label --- */
.rn-section__category {
    text-align: center;
    font-size: 15px;
    font-weight: 700;
    color: #0EA5E9;
    margin: 0 0 32px;
    padding-bottom: 8px;
    display: inline-block;
    position: relative;
    left: 50%;
    transform: translateX(-50%);
    border-bottom: 2px solid #0EA5E9;
}

/* --- Tabs --- */
.rn-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 40px;
}

.rn-tabs__btn {
    background: none;
    border: none;
    padding: 12px 32px;
    font-size: 16px;
    font-weight: 400;
    color: #888;
    cursor: pointer;
    border-bottom: 2px solid transparent;
    transition: color 0.3s, border-color 0.3s;
}

.rn-tabs__btn:hover {
    color: #1A1A2E;
}

.rn-tabs__btn.is-active {
    color: #0EA5E9;
    font-weight: 700;
    border-bottom: 2px solid #0EA5E9;
}

.rn-tabs__panel {
    display: none;
}

.rn-tabs__panel.is-active {
    display: block;
}

/* --- Short Hero (entry_new) --- */
.rn-hero--short {
    height: clamp(680px, 42vw, 1000px);
}

/* --- Form Section Background --- */
.rn-section--form {
    background: #F5F7FA;
}

/* --- Step Indicator --- */
.rn-form__steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 48px;
    margin-bottom: 40px;
}

.rn-form__step {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: #9CA3AF;
    font-weight: 400;
}

.rn-form__step span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #E5E7EB;
    color: #9CA3AF;
    font-size: 14px;
    font-weight: 700;
    flex-shrink: 0;
}

.rn-form__step.is-current {
    color: #0EA5E9;
    font-weight: 700;
}

.rn-form__step.is-current span {
    background: #0EA5E9;
    color: #fff;
}

/* --- Form Card --- */
.rn-form__card {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    padding: 48px 40px;
    max-width: 680px;
    margin: 0 auto;
}

/* --- Form Fieldset Groups --- */
.rn-form__group {
    border: none;
    padding: 0;
    margin: 0 0 32px;
}

.rn-form__group-title {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 16px;
    padding: 0 0 0 12px;
    border-left: 3px solid #0EA5E9;
    color: #1A1A2E;
}

/* --- Reassurance Text --- */
.rn-form__reassurance {
    text-align: center;
    font-size: 13px;
    color: #9CA3AF;
    margin: 8px 0 0;
    padding: 0;
}

/* --- Form (entry_new) --- */
.rn-form dl {
    border-bottom: 1px solid #E5E7EB;
    padding: 0;
    margin: 0;
}

.rn-form dl:last-of-type {
    border-bottom: none;
}

.rn-form dt {
    padding: 18px 20px 8px;
    font-size: 15px;
    font-weight: 600;
    color: #1A1A2E;
}

.rn-form dd {
    padding: 0 20px 18px;
    margin: 0;
}

.rn-form dd input[type="text"],
.rn-form dd input[type="email"],
.rn-form dd input[type="tel"],
.rn-form dd textarea,
.rn-form dd select {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    font-size: 15px;
    background: #fff;
    color: #1A1A2E;
    box-sizing: border-box;
    transition: border-color 0.3s, box-shadow 0.3s;
    -webkit-appearance: none;
}

.rn-form dd input[type="text"]:focus,
.rn-form dd input[type="email"]:focus,
.rn-form dd input[type="tel"]:focus,
.rn-form dd textarea:focus,
.rn-form dd select:focus {
    outline: none;
    border-color: #0EA5E9;
    box-shadow: 0 0 0 3px rgba(14, 165, 233, 0.15);
}

.rn-form dd textarea {
    min-height: 120px;
    resize: vertical;
}

.rn-form dd select {
    cursor: pointer;
}

.rn-form dd .y1,
.rn-form dd .m1,
.rn-form dd .d1 {
    display: inline-block;
}

.rn-form dd #postal {
    width: 200px;
}

.rn-form dd #phone {
    width: 240px;
}

.rn-form dd .y1 {
    width: 110px;
}

.rn-form dd .m1,
.rn-form dd .d1 {
    width: 80px;
}

.rn-form dd ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.rn-form dd ul li label {
    font-size: 15px;
    color: #444;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
}

.rn-form .scroll {
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #E5E7EB;
    border-radius: 6px;
    padding: 16px;
    margin-top: 12px;
    font-size: 13px;
    color: #666;
    line-height: 1.8;
    background: #FAFBFC;
}

.rn-form .scroll b {
    display: block;
    margin-bottom: 8px;
    color: #1A1A2E;
}

.rn-form .scroll a {
    color: #0EA5E9;
}

.rn-form #form_submit {
    text-align: center;
    padding: 32px 20px;
    margin: 0;
}

.rn-form #form_submit_button {
    display: inline-block;
    background: #0EA5E9;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    padding: 16px 64px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
}

.rn-form #form_submit_button:hover {
    background: #0284C7;
    transform: translateY(-2px);
}

.rn-form span.required {
    color: #EF4444;
    font-size: 13px;
    margin-right: 4px;
}

.rn-form span.optional {
    color: #9CA3AF;
    font-size: 13px;
    margin-right: 4px;
}

.rn-form span.error_blank,
.rn-form span.error_format,
.rn-form span.error_match {
    display: block;
    color: #EF4444;
    font-size: 13px;
    margin-top: 4px;
}

.rn-form .rn-form__intro {
    text-align: center;
    padding: 0 20px 24px;
    font-size: 15px;
    color: #666;
}

.rn-form .rn-form__postal-link {
    color: #0EA5E9;
    font-size: 14px;
    margin-left: 8px;
}

/* ============================================================
   Responsive  <= 568px
   ============================================================ */
@media screen and (max-width: 568px) {
    .rn-hero {
        height: 480px;
    }

    .rn-hero__en {
        font-size: 30px;
    }

    .rn-hero__ja {
        font-size: 14px;
    }

    .rn-section {
        padding: 48px 0;
    }

    .rn-section__title {
        font-size: 22px;
    }

    .rn-about__lead {
        font-size: 18px;
    }

    .rn-about__text {
        font-size: 14px;
        text-align: left;
    }

    .rn-biz {
        flex-direction: column;
        align-items: center;
    }

    .rn-biz__card {
        max-width: 100%;
        height: 200px;
    }

    .rn-numbers {
        gap: 24px;
    }

    .rn-numbers__item {
        min-width: 120px;
    }

    .rn-numbers__value {
        font-size: 36px;
    }

    .rn-job__header {
        padding: 16px;
        flex-wrap: wrap;
    }

    .rn-job__title {
        font-size: 16px;
        width: 100%;
        order: 2;
        margin-top: 4px;
    }

    .rn-job__badges {
        order: 1;
    }

    .rn-job__toggle {
        order: 1;
        margin-left: auto;
    }

    .rn-job__detail-inner {
        padding: 20px 16px;
    }

    .rn-detail-table th,
    .rn-detail-table td {
        display: block;
        width: 100%;
        padding: 10px 12px;
    }

    .rn-detail-table th {
        background: #F5F7FA;
        border-bottom: none;
        padding-bottom: 4px;
    }

    .rn-detail-table td {
        padding-top: 4px;
    }

    .rn-job__actions {
        flex-direction: column;
        gap: 12px;
    }

    .rn-flow {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .rn-flow__step {
        max-width: 100%;
        width: 100%;
    }

    .rn-flow__arrow {
        transform: rotate(90deg);
    }

    .rn-cta__title {
        font-size: 20px;
    }

    .rn-cta__btn {
        padding: 14px 36px;
        font-size: 15px;
    }

    .rn-hero--short {
        height: 480px;
    }

    .rn-tabs__btn {
        padding: 10px 20px;
        font-size: 15px;
    }

    .rn-form__steps {
        gap: 24px;
    }

    .rn-form__step {
        font-size: 13px;
        gap: 6px;
    }

    .rn-form__step span {
        width: 28px;
        height: 28px;
        font-size: 13px;
    }

    .rn-form__card {
        padding: 24px 16px;
        border-radius: 12px;
    }

    .rn-form dd ul {
        gap: 16px;
    }

    .rn-interview__header {
        flex-direction: column;
        padding: 24px 20px 0;
        gap: 16px;
        text-align: center;
    }

    .rn-interview__image {
        width: 100px;
        height: 100px;
    }

    .rn-interview__content {
        padding: 20px;
    }

    .rn-interview__title {
        font-size: 16px;
    }

    .rn-interview__q {
        font-size: 14px;
        padding: 12px 16px;
    }
}