/* ==========================================================================
   CAREERS & INTERNSHIPS PAGE STYLESHEET
   Pure CSS, highly readable, structured, modern and zero emojis.
   Inherits design tokens from style.css (:root vars)
   ========================================================================== */

/* --- Hero Section --- */
.careers-hero {
  position: relative;
  background-color: #0A0F29;
  background-image: 
    linear-gradient(180deg, rgba(10, 15, 41, 0.75) 0%, rgba(15, 23, 42, 0.9) 60%, #0F172A 100%),
    url('../assets/legal_hero_bg.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  padding: 130px 24px 50px;
  border-bottom: 1px solid var(--border-subtle);
  overflow: hidden;
}

.careers-hero-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.careers-badge-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.careers-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(3, 61, 177, 0.15);
  border: 1px solid rgba(75, 136, 255, 0.35);
  color: #4B88FF;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 20px;
}

.careers-status-tag {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: #10B981;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.careers-status-tag::before {
  content: '';
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #10B981;
  box-shadow: 0 0 8px #10B981;
  display: inline-block;
}

.careers-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(2.1rem, 4.8vw, 3.2rem);
  font-weight: 700;
  line-height: 1.18;
  color: #FFFFFF;
  margin-bottom: 16px;
}

.careers-hero-desc {
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.75);
  max-width: 780px;
  margin-bottom: 28px;
}

/* Quick Perks Strip */
.careers-perks-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1050px;
}

.perk-pill {
  background: rgba(15, 23, 42, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(75, 136, 255, 0.22);
  border-radius: 12px;
  padding: 14px 18px;
}

.perk-pill-title {
  font-family: var(--font-heading);
  font-size: 0.86rem;
  font-weight: 700;
  color: #4B88FF;
  margin-bottom: 4px;
}

.perk-pill-desc {
  font-family: var(--font-body);
  font-size: 0.8rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.65);
}


/* --- Section 2: Why Intern With Us (4 Value Pillars) --- */
.careers-why {
  position: relative;
  background: #FFFFFF;
  padding: 50px 24px 45px;
  z-index: 2;
}

.careers-why-container {
  max-width: 1200px;
  margin: 0 auto;
}

.careers-section-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 10px;
}

.careers-eyebrow-line {
  width: 28px;
  height: 2px;
  background: var(--primary);
  opacity: 0.4;
}

.careers-eyebrow-text {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--primary);
}

.careers-section-heading {
  font-family: var(--font-heading);
  font-size: clamp(1.8rem, 3.5vw, 2.3rem);
  font-weight: 700;
  text-align: center;
  color: var(--text-main);
  margin-bottom: 10px;
}

.careers-section-sub {
  text-align: center;
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 34px;
}

.why-pillars-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.why-pillar-card {
  background: var(--bg-card);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  padding: 26px 22px;
  transition: var(--transition-smooth);
}

.why-pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 35px rgba(3, 61, 177, 0.07);
  border-color: rgba(3, 61, 177, 0.2);
}

.pillar-num {
  font-family: var(--font-heading);
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
  display: block;
  margin-bottom: 10px;
}

.pillar-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 8px;
}

.pillar-desc {
  font-family: var(--font-body);
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--text-muted);
}


/* --- Section 3: Open Positions (The 6 Internships) --- */
.careers-openings {
  position: relative;
  background: var(--bg-main);
  padding: 50px 24px 55px;
  z-index: 2;
}

.careers-openings-container {
  max-width: 1200px;
  margin: 0 auto;
}

/* Category Filter Bar */
.filter-tabs-bar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 36px;
  flex-wrap: wrap;
}

.filter-tab-btn {
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-muted);
  background: #FFFFFF;
  border: 1px solid var(--border-subtle);
  padding: 8px 18px;
  border-radius: 24px;
  cursor: pointer;
  transition: var(--transition-fast);
}

.filter-tab-btn:hover {
  color: var(--primary);
  border-color: rgba(3, 61, 177, 0.3);
}

.filter-tab-btn.active {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 4px 14px rgba(3, 61, 177, 0.25);
}

/* Openings Grid (2-Column Desktop Grid for the 6 Flat Cards) */
.openings-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.opening-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle, #E2E8F0);
  border-radius: 16px;
  padding: 26px 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.opening-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(3, 61, 177, 0.08);
  border-color: rgba(3, 61, 177, 0.3);
}

.opening-header {
  margin-bottom: 16px;
}

.opening-tags-row {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.tag-dept {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--primary, #033DB1);
  background: var(--primary-light, #EFF4FF);
  padding: 3px 10px;
  border-radius: 6px;
}

.tag-meta {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--text-muted, #64748B);
  background: #F1F5F9;
  padding: 3px 10px;
  border-radius: 6px;
}

.opening-title {
  font-family: var(--font-heading, 'Manrope', sans-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--text-main, #07133D);
  line-height: 1.3;
  margin-bottom: 8px;
}

.opening-desc {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.9rem;
  line-height: 1.6;
  color: #475569;
  margin-bottom: 0;
}

.opening-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--border-subtle, #E2E8F0);
  margin-top: 20px;
  gap: 12px;
}

.opening-duration {
  font-family: var(--font-body);
  font-size: 0.82rem;
  color: var(--text-muted, #64748B);
  font-weight: 500;
}

.btn-apply {
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 700;
  color: #FFFFFF;
  background: var(--primary, #033DB1);
  padding: 9px 20px;
  border-radius: 8px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: all 0.2s ease;
  text-decoration: none;
  flex-shrink: 0;
}

.btn-apply:hover {
  background: #022B80;
  transform: translateX(2px);
  box-shadow: 0 4px 14px rgba(3, 61, 177, 0.3);
}


/* --- Section 4: How We Hire (3 Steps) --- */
.careers-process {
  position: relative;
  background: #FFFFFF;
  padding: 60px 24px;
  border-top: 1px solid var(--border-subtle, #E2E8F0);
  z-index: 2;
}

.careers-process-container {
  max-width: 1100px;
  margin: 0 auto;
}

.process-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}

.process-step-card {
  position: relative;
  background: var(--bg-card, #FAFCFF);
  border: 1px solid var(--border-subtle, #E2E8F0);
  border-radius: 14px;
  padding: 26px 22px;
}

.step-num-badge {
  font-family: var(--font-heading);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--primary, #033DB1);
  background: var(--primary-light, #EFF4FF);
  display: inline-block;
  padding: 3px 10px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.step-title {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  font-weight: 700;
  color: #07133D;
  margin-bottom: 6px;
}

.step-desc {
  font-family: var(--font-body);
  font-size: 0.86rem;
  line-height: 1.55;
  color: var(--text-muted, #64748B);
}


/* =========================================================================
   DEDICATED INTERNSHIP DETAIL & APPLICATION PAGE (apply-internship.html)
   ========================================================================= */
.internship-detail-page {
  padding: 120px 24px 80px;
  background: #FAFCFF;
  min-height: 100vh;
}

.internship-detail-container {
  max-width: 1200px;
  margin: 0 auto;
}

.detail-breadcrumbs {
  margin-bottom: 24px;
}

.breadcrumb-back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--primary, #033DB1);
  text-decoration: none;
  transition: transform 0.2s ease;
}

.breadcrumb-back-link:hover {
  transform: translateX(-3px);
  text-decoration: underline;
}

/* 2-Column Grid */
.detail-split-grid {
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 36px;
  align-items: start;
}

/* Left Column: Role Details Panel */
.role-details-panel {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle, #E2E8F0);
  border-radius: 20px;
  padding: 36px 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
}

.role-badge-row {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.role-dept-tag {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--primary, #033DB1);
  background: var(--primary-light, #EFF4FF);
  padding: 4px 10px;
  border-radius: 6px;
}

.role-hiring-tag {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 600;
  color: #10B981;
  background: #ECFDF5;
  padding: 4px 10px;
  border-radius: 6px;
}

.role-detail-title {
  font-family: var(--font-heading, 'Manrope', sans-serif);
  font-size: clamp(1.8rem, 3.5vw, 2.3rem);
  font-weight: 800;
  color: var(--text-main, #07133D);
  line-height: 1.2;
  margin-bottom: 16px;
}

.role-meta-pills-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 30px;
  padding-bottom: 24px;
  border-bottom: 1px solid #F1F5F9;
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  padding: 6px 12px;
  border-radius: 8px;
  font-size: 0.82rem;
}

.meta-pill-label {
  color: #64748B;
  font-weight: 500;
}

.meta-pill-val {
  color: var(--text-main, #07133D);
  font-weight: 600;
}

.role-info-section {
  margin-bottom: 30px;
}

.role-section-title {
  font-family: var(--font-heading, 'Manrope', sans-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--text-main, #07133D);
  margin-bottom: 12px;
}

.role-section-body {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.92rem;
  line-height: 1.65;
  color: #475569;
}

.role-checklist {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.role-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.9rem;
  line-height: 1.55;
  color: #334155;
}

.role-list-check {
  font-weight: 800;
  color: var(--primary, #033DB1);
  font-size: 0.85rem;
  line-height: 1.5;
  flex-shrink: 0;
}

.highlight-list .role-list-check {
  color: #F59E0B;
}

/* Detail Pipeline Grid */
.detail-pipeline-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 12px;
}

.pipeline-card {
  background: #F8FAFC;
  border: 1px solid #E2E8F0;
  border-radius: 10px;
  padding: 14px 12px;
}

.pipeline-step-badge {
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--primary, #033DB1);
  background: var(--primary-light, #EFF4FF);
  padding: 2px 6px;
  border-radius: 4px;
  display: inline-block;
  margin-bottom: 6px;
}

.pipeline-step-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--text-main, #07133D);
  margin-bottom: 4px;
}

.pipeline-step-desc {
  font-size: 0.78rem;
  color: #64748B;
  line-height: 1.45;
}

/* WhatsApp Box inside Role Page */
.detail-whatsapp-box {
  background: #FFFFFF;
  border: 1px solid #E2E8F0;
  border-radius: 16px;
  padding: 24px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 32px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.detail-whatsapp-box:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37, 211, 102, 0.08);
  border-color: rgba(37, 211, 102, 0.35);
}

.whatsapp-box-icon {
  width: 52px;
  height: 52px;
  background: #25D366;
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.35);
}

.whatsapp-box-content {
  flex-grow: 1;
}

.whatsapp-box-title {
  font-family: var(--font-heading, 'Manrope', sans-serif);
  font-size: 1.15rem;
  font-weight: 700;
  color: #07133D;
  margin-bottom: 6px;
  line-height: 1.3;
}

.whatsapp-box-desc {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.92rem;
  color: #64748B;
  line-height: 1.5;
  margin-bottom: 12px;
}

.btn-detail-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.94rem;
  font-weight: 700;
  color: #0D8A58;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-detail-whatsapp:hover {
  color: #086B43;
  transform: translateX(3px);
}

/* Right Column: Application Form Sidebar */
.application-form-sidebar {
  position: sticky;
  top: 90px;
}

.apply-form-card {
  background: #FFFFFF;
  border: 1px solid var(--border-subtle, #E2E8F0);
  border-radius: 20px;
  padding: 32px 28px;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.04);
}

.apply-card-header {
  margin-bottom: 22px;
}

.apply-card-header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
  flex-wrap: wrap;
}

.apply-target-role-pill {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--primary, #033DB1);
  background: var(--primary-light, #EFF4FF);
  border: 1px solid rgba(3, 61, 177, 0.15);
  padding: 3px 10px;
  border-radius: 20px;
}

.apply-card-tag {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--primary, #033DB1);
  background: var(--primary-light, #EFF4FF);
  padding: 3px 8px;
  border-radius: 4px;
  display: inline-block;
}

.apply-card-title {
  font-family: var(--font-heading, 'Manrope', sans-serif);
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--text-main, #07133D);
  margin-bottom: 4px;
}

.apply-card-sub {
  font-size: 0.84rem;
  color: var(--text-muted, #64748B);
  line-height: 1.45;
}

/* Form Controls */
#internshipApplicationForm {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group-full {
  grid-column: span 2;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
  position: relative;
}

.form-label {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-main, #07133D);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form-label span.req {
  color: #EF4444;
  font-weight: 700;
}

.form-label-opt {
  font-size: 0.74rem;
  font-weight: 400;
  color: #94A3B8;
}

.form-input,
.form-select,
.form-textarea {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.9rem;
  color: var(--text-main, #07133D);
  background: #FFFFFF;
  border: 1.5px solid var(--border-subtle, #E2E8F0);
  border-radius: 8px;
  padding: 10px 14px;
  outline: none;
  transition: all 0.2s ease;
  width: 100%;
  box-sizing: border-box;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--primary, #033DB1);
  box-shadow: 0 0 0 3px rgba(3, 61, 177, 0.12);
}

.form-hint-text {
  font-size: 0.74rem;
  color: #64748B;
  margin-top: 2px;
}

/* Error States */
.form-group.has-error .form-input,
.form-group.has-error .form-select,
.form-group.has-error .form-textarea {
  border-color: #EF4444 !important;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.1) !important;
}

.field-error-msg {
  font-size: 0.74rem;
  color: #EF4444;
  font-weight: 500;
  margin-top: 2px;
}

.btn-apply-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: var(--primary, #033DB1);
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  padding: 13px 20px;
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.94rem;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(3, 61, 177, 0.25);
  transition: all 0.2s ease;
}

.btn-apply-submit:hover {
  background: #022B80;
  transform: translateY(-1px);
}

.btn-apply-submit.loading {
  opacity: 0.85;
  pointer-events: none;
}

.form-security-note {
  font-size: 0.78rem;
  color: #64748B;
  text-align: center;
  margin-top: 10px;
  grid-column: span 2;
}

/* Application Success View */
.application-success-view {
  display: none;
  text-align: center;
  padding: 30px 10px;
}

.application-success-view.active {
  display: block;
  animation: fadeInScale 0.3s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.success-icon-badge {
  width: 56px;
  height: 56px;
  background: var(--primary-light, #EFF4FF);
  color: var(--primary, #033DB1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  font-weight: 800;
  margin: 0 auto 16px;
}

.success-headline {
  font-family: var(--font-heading, 'Manrope', sans-serif);
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--text-main, #07133D);
  margin-bottom: 8px;
}

.success-body {
  font-family: var(--font-body, 'Inter', sans-serif);
  font-size: 0.88rem;
  color: var(--text-body, #475569);
  line-height: 1.6;
  margin-bottom: 24px;
}

.success-actions-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn-success-careers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 20px;
  border-radius: 8px;
  background: #F1F5F9;
  color: var(--text-main, #07133D);
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.btn-success-careers:hover {
  background: #E2E8F0;
}

.btn-success-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 11px 20px;
  border-radius: 8px;
  background: #25D366;
  color: #FFFFFF;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  box-shadow: 0 4px 12px rgba(37, 211, 102, 0.25);
}

.btn-success-whatsapp:hover {
  background: #20BA5A;
}

/* =========================================================================
   RESPONSIVE BREAKPOINTS
   ========================================================================= */

@media (max-width: 992px) {
  .openings-grid {
    grid-template-columns: 1fr;
  }

  .process-steps-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin: 32px auto 0;
  }

  .detail-split-grid {
    grid-template-columns: 1fr;
  }

  .application-form-sidebar {
    position: static;
  }

  .detail-pipeline-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .careers-hero {
    padding: 110px 20px 40px;
  }

  .internship-detail-page {
    padding: 100px 16px 60px;
  }

  .role-details-panel,
  .apply-form-card {
    padding: 24px 18px;
  }

  #internshipApplicationForm {
    grid-template-columns: 1fr;
  }

  .form-group-full {
    grid-column: span 1;
  }

  .form-security-note {
    grid-column: span 1;
  }

  .opening-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .btn-apply {
    width: 100%;
    justify-content: center;
  }
}

