.careerPage {
  background: var(--white);
}

.pageHero {
  min-height: 380px;
  background: var(--navy);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding-top: 80px;
}

.pageHeroBg {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #0a1628 0%, #112040 40%, #1a3a5c 100%);
}

.pageHeroPattern {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9923a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.pageHeroGlow {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 146, 58, 0.07) 0%, transparent 70%);
}

.heroContainer {
  position: relative;
  z-index: 2;
  width: 100%;
}

.pageHeroInner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
  align-items: center;
}

.pageHeroLeft {
  position: relative;
  max-width: 520px;
}

.pageHeroBreadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.45);
}

.pageHeroBreadcrumb a {
  color: rgba(255, 255, 255, 0.45);
  text-decoration: none;
  transition: color var(--transition);
}

.pageHeroBreadcrumb a:hover {
  color: var(--gold);
}

.separator {
  color: rgba(255, 255, 255, 0.35);
}

.current {
  color: var(--gold);
}

.pageHeroTitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1rem;
}

.pageHeroSub {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.8;
  max-width: 580px;
}

.pageHeroWave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
}

.pageHeroWave svg {
  display: block;
  width: 100%;
}

.filterSection {
  padding: 50px 0 20px;
  background: var(--off-white);
}

.filterBar {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 4px 30px rgba(10, 22, 40, 0.08);
  border: 1px solid rgba(10, 22, 40, 0.06);
}

.filterBarTitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.2rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.filterBarTitle::before {
  content: '';
  width: 4px;
  height: 18px;
  background: var(--gold);
  border-radius: 2px;
}

.filterRow {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr auto;
  gap: 1rem;
  align-items: end;
}

.filterGroup {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.filterLabel {
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--navy);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.filterInput {
  padding: 0.7rem 1rem;
  border: 1.5px solid #d0d8e8;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.87rem;
  color: var(--navy);
  outline: none;
  background: #f8fafc;
  width: 100%;
}

.filterInput:focus {
  border-color: var(--gold);
  background: var(--white);
}

.filterSearchBtn {
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 0.75rem 1.8rem;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  white-space: nowrap;
}

.filterSearchBtn:hover {
  background: var(--navy);
}

.resultsCount {
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-top: 0.5rem;
}

.resultsCount strong {
  color: var(--navy);
}

.jobsSection {
  padding: 30px 0 80px;
  background: var(--off-white);
}

.jobsGrid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.4rem;
}

.jobCard {
  background: var(--white);
  border-radius: 14px;
  padding: 1.8rem;
  box-shadow: 0 2px 16px rgba(10, 22, 40, 0.06);
  border: 1.5px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  display: block;
}

.jobCard:hover {
  border-color: var(--gold);
  box-shadow: 0 8px 32px rgba(201, 146, 58, 0.15);
  transform: translateY(-3px);
}

.jobTitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.7rem;
}

.jobMeta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 0.9rem;
}

.jobMetaItem {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.jobCard .jobMetaItem {
  color: #4f6078;
}

.jobDesc {
  font-size: 0.85rem;
  color: #6a7a90;
  line-height: 1.7;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.jobCardFooter {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(10, 22, 40, 0.07);
}

.jobPosted {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.jobApplyBtn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--gold);
  color: var(--white);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.5rem 1.2rem;
  border-radius: 6px;
}

.noResults {
  text-align: center;
  padding: 3rem;
  background: var(--white);
  border-radius: 14px;
}

.whyJoin {
  padding: 80px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.whyJoinBg {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 50%, var(--navy) 100%);
}

.whyJoinOverlay {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9923a' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.whyJoinInner {
  position: relative;
  z-index: 1;
}

.perksGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.perkCard {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(201, 146, 58, 0.18);
  border-radius: 14px;
  padding: 2rem;
  text-align: center;
}

.perkCard:hover {
  background: rgba(201, 146, 58, 0.08);
  border-color: var(--gold);
  transform: translateY(-5px);
}

.perkIcon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: rgba(201, 146, 58, 0.15);
  border: 1px solid rgba(201, 146, 58, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.1rem;
  color: var(--gold-light);
}

.perkIcon svg {
  width: 26px;
  height: 26px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.perkTitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.6rem;
}

.perkDesc {
  font-size: 0.83rem;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.7;
}

.faqSection {
  padding: 80px 0;
  background: var(--white);
}

.faqGrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 3rem;
}

.faqItem {
  border-bottom: 1px solid rgba(10, 22, 40, 0.1);
  padding: 1.2rem 0;
}

.faqQuestion {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  gap: 1rem;
}

.faqQuestion h4 {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--navy);
  line-height: 1.5;
  flex: 1;
}

.faqIcon {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--gold-pale);
  border: 1px solid rgba(201, 146, 58, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 1.1rem;
}

.faqOpen .faqIcon {
  transform: rotate(45deg);
  background: var(--gold);
  color: var(--white);
}

.faqAnswer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faqAnswer p {
  font-size: 0.85rem;
  color: #6a7a90;
  line-height: 1.8;
  padding-top: 0.8rem;
}

.faqOpen .faqAnswer {
  max-height: 240px;
}

.detailSection {
  padding: 60px 0 80px;
  background: var(--off-white);
}

.detailCard {
  background: var(--white);
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 30px rgba(10, 22, 40, 0.08);
}

.detailMeta {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin: 1rem 0 1.5rem;
}

.detailMetaBadge {
  background: var(--gold-pale);
  color: var(--gold);
  border: 1px solid rgba(201, 146, 58, 0.25);
  border-radius: 999px;
  padding: 0.45rem 0.9rem;
  font-size: 0.8rem;
  font-weight: 600;
}

.detailBody {
  display: grid;
  gap: 1.5rem;
}

.detailBlock h3 {
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  margin-bottom: 0.6rem;
}

.detailBlock p {
  color: #5a6a80;
  line-height: 1.8;
  white-space: pre-line;
}

.detailRichText {
  color: #5a6a80;
  line-height: 1.85;
}

.detailRichText p,
.detailRichText ul,
.detailRichText ol {
  margin: 0 0 1rem;
}

.detailRichText ul,
.detailRichText ol {
  padding-left: 1.35rem;
}

.detailRichText li {
  margin-bottom: 0.55rem;
}

.jobHero {
  padding: 120px 0 60px;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.jobHeroBg {
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, #0a1628 0%, #112040 40%, #1a3a5c 100%);
}

.jobHeroPattern {
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9923a' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.jobHeroGlow {
  position: absolute;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 146, 58, 0.08) 0%, transparent 70%);
}

.jobHeroInner {
  position: relative;
  z-index: 2;
}

.jobBreadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.4);
  flex-wrap: wrap;
}

.jobBreadcrumb a {
  color: rgba(255, 255, 255, 0.4);
  text-decoration: none;
  transition: color var(--transition);
}

.jobBreadcrumb a:hover {
  color: var(--gold);
}

.jobBreadcrumbSep {
  color: rgba(255, 255, 255, 0.25);
}

.jobBreadcrumbCurrent {
  color: var(--gold);
}

.jobHeroBadges {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.2rem;
}

.jobHeroBadge {
  font-size: 0.72rem;
  font-weight: 700;
  padding: 0.3rem 0.9rem;
  border-radius: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.jobHeroBadgeFeatured {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--white);
}

.jobHeroBadgeDepartment {
  background: rgba(201, 146, 58, 0.15);
  color: var(--gold-light);
  border: 1px solid rgba(201, 146, 58, 0.3);
}

.jobHeroBadgeType {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
}

.jobHeroTitle {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 1.5rem;
}

.jobMetaBar {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
}

.jobMetaItem {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.87rem;
  color: rgba(255, 255, 255, 0.6);
}

.jobMetaItem strong {
  color: var(--white);
}

.jobHeroWave {
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
}

.jobHeroWave svg {
  display: block;
  width: 100%;
}

.jobDetailSection {
  padding: 60px 0 80px;
  background: var(--off-white);
}

.jobDetailLayout {
  display: grid;
  grid-template-columns: 1fr 400px;
  gap: 2.5rem;
  align-items: start;
}

.jobSummaryCard {
  background: var(--white);
  border-radius: 16px;
  padding: 1.4rem 1.6rem;
  box-shadow: 0 2px 20px rgba(10, 22, 40, 0.06);
}

.jobSummaryGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.jobSummaryItem {
  display: grid;
  gap: 0.35rem;
}

.jobSummaryLabel {
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold);
  font-weight: 700;
}

.jobContentColumn {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.jobContentCard {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 2px 20px rgba(10, 22, 40, 0.06);
}

.jobContentTitle {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 1.2rem;
  padding-bottom: 0.8rem;
  border-bottom: 2px solid var(--gold-pale);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.jobDescText {
  font-size: 0.9rem;
  color: #4a5568;
  line-height: 1.85;
}

.jobDescText p,
.jobDescText ul,
.jobDescText ol {
  margin-bottom: 1rem;
}

.jobDescText ul,
.jobDescText ol {
  padding-left: 1.3rem;
}

.jobDetailActions {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.jobBtnOutline {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  padding: 0.75rem 1.8rem;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(10, 22, 40, 0.2);
  transition: all var(--transition);
}

.jobBtnOutline:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--white);
}

.careerPage :global(.career-apply-card) {
  background: var(--white);
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 40px rgba(10, 22, 40, 0.1);
  border: 1.5px solid rgba(201, 146, 58, 0.2);
  position: sticky;
  top: 100px;
}

.careerPage :global(.career-apply-header) {
  background: linear-gradient(135deg, var(--navy), var(--navy-light));
  border-radius: 10px;
  padding: 1.4rem;
  margin-bottom: 1.5rem;
  text-align: center;
}

.careerPage :global(.career-apply-header h3) {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--white);
  font-weight: 700;
  margin-bottom: 0.3rem;
}

.careerPage :global(.career-apply-header p) {
  font-size: 0.78rem;
  color: rgba(255, 255, 255, 0.5);
}

.careerPage :global(.career-form-group) {
  margin-bottom: 1.1rem;
}

.careerPage :global(.career-form-label) {
  display: block;
  font-size: 0.77rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.4rem;
  letter-spacing: 0.04em;
}

.careerPage :global(.career-form-input) {
  width: 100%;
  padding: 0.7rem 1rem;
  border: 1.5px solid #d0d8e8;
  border-radius: 8px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.87rem;
  color: var(--navy);
  outline: none;
  background: #f8fafc;
}

.careerPage :global(.career-form-input:focus) {
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201, 146, 58, 0.1);
}

.careerPage :global(.career-form-textarea) {
  resize: vertical;
  min-height: 88px;
}

.careerPage :global(.career-file-upload) {
  border: 2px dashed #d0d8e8;
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  cursor: pointer;
  transition: all var(--transition);
  background: #f8fafc;
  position: relative;
  display: block;
}

.careerPage :global(.career-file-upload:hover) {
  border-color: var(--gold);
  background: var(--gold-pale);
}

.careerPage :global(.career-file-upload input[type='file']) {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
}

.careerPage :global(.career-file-icon) {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: var(--gold);
}

.careerPage :global(.career-file-text) {
  font-size: 0.82rem;
  color: var(--text-muted);
  line-height: 1.5;
}

.careerPage :global(.career-file-name) {
  margin-top: 0.6rem;
  font-size: 0.78rem;
  color: var(--navy);
  font-weight: 600;
  background: var(--gold-pale);
  padding: 0.4rem 0.8rem;
  border-radius: 6px;
}

.careerPage :global(.career-submit-btn) {
  width: 100%;
  background: var(--gold);
  color: var(--white);
  border: none;
  padding: 0.9rem;
  border-radius: 8px;
  font-family: 'Playfair Display', serif;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all var(--transition);
}

.careerPage :global(.career-submit-btn:hover) {
  background: var(--navy);
}

.careerPage :global(.career-form-note) {
  font-size: 0.72rem;
  color: var(--text-muted);
  text-align: center;
  margin-top: 0.8rem;
  line-height: 1.5;
}

.careerPage :global(.career-toast) {
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border-radius: 10px;
  font-size: 0.84rem;
  font-weight: 600;
}

.careerPage :global(.career-toast.success) {
  background: rgba(39, 174, 96, 0.12);
  color: #1f7a45;
  border: 1px solid rgba(39, 174, 96, 0.25);
}

.careerPage :global(.career-toast.error) {
  background: rgba(192, 57, 43, 0.1);
  color: #a52714;
  border: 1px solid rgba(192, 57, 43, 0.2);
}

.careerPage :global(.career-success-state) {
  text-align: center;
  padding: 1rem 0;
}

.careerPage :global(.career-success-icon) {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: linear-gradient(135deg, #48bb78, #38a169);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.2rem;
  font-size: 1.8rem;
  color: white;
}

.careerPage :global(.career-success-state h3) {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.careerPage :global(.career-success-state p) {
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.careerPage :global(.career-btn-outline) {
  display: inline-block;
  background: transparent;
  color: var(--navy);
  padding: 0.75rem 1.8rem;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(10, 22, 40, 0.2);
}

.relatedSection {
  padding: 60px 0;
  background: var(--white);
}

.relatedGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.relatedCard {
  background: var(--off-white);
  border-radius: 12px;
  padding: 1.5rem;
  border: 1.5px solid transparent;
  transition: all var(--transition);
  text-decoration: none;
  display: block;
}

.relatedCard:hover {
  border-color: var(--gold);
  background: var(--white);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(201, 146, 58, 0.12);
}

.relatedDept {
  font-size: 0.7rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.07em;
  margin-bottom: 0.4rem;
}

.relatedTitle {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 0.6rem;
  line-height: 1.3;
}

.relatedMeta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.relatedMetaItem {
  font-size: 0.75rem;
  color: var(--text-muted);
}

.relatedMetaItemGold {
  font-size: 0.75rem;
  color: var(--gold);
  font-weight: 600;
}

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

  .filterRow > *:last-child {
    grid-column: span 2;
  }

  .jobsGrid,
  .perksGrid,
  .faqGrid,
  .relatedGrid {
    grid-template-columns: 1fr;
  }

  .jobDetailLayout {
    grid-template-columns: 1fr;
  }

  .jobSummaryGrid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .careerPage :global(.career-apply-card) {
    position: static;
  }
}

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

  .filterRow > *:last-child {
    grid-column: span 1;
  }

  .jobCardFooter {
    flex-direction: column;
    align-items: flex-start;
  }

  .jobMetaBar {
    gap: 1rem;
  }

  .jobSummaryGrid {
    grid-template-columns: 1fr;
  }
}
