/* Talento ACOSA premium public experience. Final layer over legacy public.css. */

:root {
  color-scheme: dark;
}

html[data-theme="light"] {
  color-scheme: light;
}

html,
body {
  scroll-behavior: smooth;
}

body.ta-public-shell {
  --ta-orange: #ff6a00;
  --ta-orange-2: #ff7a1a;
  --ta-green: #00c26e;
  --ta-red: #ff5a5f;
  --ta-blue: #2563eb;
  --ta-bg: #050816;
  --ta-bg-2: #070b14;
  --ta-bg-3: #0b1020;
  --ta-surface: rgba(15, 23, 42, .72);
  --ta-surface-2: rgba(17, 24, 39, .78);
  --ta-card: rgba(15, 23, 42, .74);
  --ta-card-solid: #0f172a;
  --ta-text: #ffffff;
  --ta-heading: #ffffff;
  --ta-muted: #94a3b8;
  --ta-muted-2: #d1d5db;
  --ta-line: rgba(255, 255, 255, .10);
  --ta-line-2: rgba(255, 255, 255, .16);
  --ta-glow: rgba(255, 106, 0, .20);
  --ta-shadow: 0 24px 70px rgba(0, 0, 0, .34);
  --ta-shadow-soft: 0 16px 44px rgba(0, 0, 0, .24);
  --ta-radius: 8px;
  --ta-radius-lg: 8px;
  --ta-transition: 240ms cubic-bezier(.2, .8, .2, 1);
  min-height: 100vh;
  background:
    radial-gradient(circle at var(--ta-cursor-x, 72%) var(--ta-cursor-y, 8%), rgba(255, 106, 0, .075), transparent 18rem),
    radial-gradient(circle at 86% 10%, rgba(37, 99, 235, .14), transparent 24rem),
    radial-gradient(circle at 10% 28%, rgba(255, 106, 0, .08), transparent 18rem),
    linear-gradient(180deg, var(--ta-bg) 0%, var(--ta-bg-2) 48%, var(--ta-bg-3) 100%) !important;
  color: var(--ta-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
  transition: background-color 420ms ease, color 420ms ease;
}

html[data-theme="light"] body.ta-public-shell {
  --ta-bg: #ffffff;
  --ta-bg-2: #fafafa;
  --ta-bg-3: #f5f7fb;
  --ta-surface: rgba(255, 255, 255, .82);
  --ta-surface-2: rgba(250, 250, 250, .92);
  --ta-card: rgba(255, 255, 255, .92);
  --ta-card-solid: #ffffff;
  --ta-text: #111827;
  --ta-heading: #111827;
  --ta-muted: #6b7280;
  --ta-muted-2: #374151;
  --ta-line: rgba(17, 24, 39, .10);
  --ta-line-2: rgba(17, 24, 39, .16);
  --ta-glow: rgba(255, 106, 0, .12);
  --ta-shadow: 0 24px 70px rgba(17, 24, 39, .12);
  --ta-shadow-soft: 0 14px 34px rgba(17, 24, 39, .08);
  background:
    radial-gradient(circle at var(--ta-cursor-x, 78%) var(--ta-cursor-y, 10%), rgba(255, 106, 0, .07), transparent 18rem),
    radial-gradient(circle at 88% 8%, rgba(37, 99, 235, .08), transparent 24rem),
    linear-gradient(180deg, #ffffff 0%, #fafafa 45%, #f5f7fb 100%) !important;
}

.ta-public-shell *,
.ta-public-shell *::before,
.ta-public-shell *::after {
  letter-spacing: 0 !important;
}

.ta-public-shell .ta-container {
  width: min(100% - 2rem, 1180px);
  max-width: none;
}

.ta-public-shell h1,
.ta-public-shell h2,
.ta-public-shell h3,
.ta-public-shell h4,
.ta-public-shell h5,
.ta-public-shell h6 {
  color: var(--ta-heading) !important;
  font-weight: 850;
}

.ta-public-shell p,
.ta-public-shell li,
.ta-public-shell .text-muted,
.ta-public-shell .text-white-50 {
  color: var(--ta-muted) !important;
}

.ta-public-shell .lead {
  color: var(--ta-muted-2) !important;
}

.ta-public-shell .ta-page-loader {
  position: fixed;
  inset: 0;
  z-index: 3000;
  display: grid;
  place-items: center;
  background: var(--ta-bg);
  transition: opacity 300ms ease, visibility 300ms ease;
}

.ta-public-shell.ta-public-loaded .ta-page-loader {
  opacity: 0;
  visibility: hidden;
}

.ta-public-shell.ta-theme-switching::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 2500;
  pointer-events: none;
  background: radial-gradient(circle at calc(100% - 5rem) 4rem, var(--ta-glow), transparent 24rem);
  animation: taThemePulse 520ms ease both;
}

@keyframes taThemePulse {
  from {
    opacity: .55;
    transform: scale(.96);
  }

  to {
    opacity: 0;
    transform: scale(1.08);
  }
}

/* Navbar */
.ta-public-shell .ta-navbar {
  min-height: 72px;
  border-bottom: 1px solid var(--ta-line) !important;
  background: rgba(5, 8, 22, .76) !important;
  box-shadow: none !important;
  backdrop-filter: blur(18px) saturate(150%);
  -webkit-backdrop-filter: blur(18px) saturate(150%);
  transition: min-height var(--ta-transition), background-color var(--ta-transition), box-shadow var(--ta-transition), border-color var(--ta-transition);
}

html[data-theme="light"] .ta-public-shell .ta-navbar {
  background: rgba(255, 255, 255, .78) !important;
}

.ta-public-shell.ta-public-nav-scrolled .ta-navbar {
  min-height: 62px;
  background: rgba(5, 8, 22, .88) !important;
  box-shadow: 0 12px 36px rgba(0, 0, 0, .18) !important;
}

html[data-theme="light"] .ta-public-shell.ta-public-nav-scrolled .ta-navbar {
  background: rgba(255, 255, 255, .92) !important;
  box-shadow: 0 12px 34px rgba(17, 24, 39, .08) !important;
}

.ta-public-shell .ta-navbar::before {
  display: none !important;
}

.ta-public-shell .navbar-brand,
.ta-public-shell .ta-navbar .navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: .7rem;
  color: var(--ta-heading) !important;
  font-size: 1rem !important;
  font-weight: 900 !important;
}

.ta-public-shell .navbar-brand::before {
  content: "TA";
  display: grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border: 1px solid rgba(255, 106, 0, .45);
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(255, 106, 0, .20), rgba(255, 122, 26, .08));
  color: var(--ta-orange);
  box-shadow: 0 0 24px rgba(255, 106, 0, .18);
  font-size: .72rem;
  font-weight: 950;
}

.ta-public-shell .navbar-brand::after {
  display: none !important;
}

.ta-public-shell .ta-navbar .nav-link,
.ta-public-shell .ta-navbar .dropdown-toggle {
  min-height: 2.35rem;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: var(--ta-muted-2) !important;
  font-size: .86rem;
  font-weight: 760;
  padding: .55rem .74rem !important;
  transition: color var(--ta-transition), background-color var(--ta-transition), transform var(--ta-transition);
}

.ta-public-shell .ta-navbar .nav-link:hover,
.ta-public-shell .ta-navbar .nav-link:focus,
.ta-public-shell .ta-navbar .nav-link.active,
.ta-public-shell .ta-navbar .nav-link.show {
  color: var(--ta-heading) !important;
  background: rgba(255, 106, 0, .10) !important;
}

.ta-public-shell .navbar-toggler {
  width: 2.5rem;
  height: 2.5rem;
  display: none;
  place-items: center;
  border: 1px solid var(--ta-line-2) !important;
  border-radius: 8px;
  background: var(--ta-surface) !important;
}

.ta-public-shell .navbar-toggler-icon {
  width: 1.1rem;
  height: .8rem;
  background-image: none !important;
  position: relative;
  border-top: 2px solid var(--ta-heading);
  border-bottom: 2px solid var(--ta-heading);
}

.ta-public-shell .navbar-toggler-icon::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  border-top: 2px solid var(--ta-heading);
  transform: translateY(-50%);
}

.ta-public-shell .ta-rh-btn,
.ta-public-shell .ta-country-btn {
  border: 1px solid var(--ta-line-2) !important;
  background: var(--ta-surface) !important;
}

.ta-public-shell .ta-country-dot {
  width: .5rem;
  height: .5rem;
  border-radius: 999px;
  background: var(--ta-green);
  box-shadow: 0 0 0 .25rem rgba(0, 194, 110, .12);
}

.ta-public-shell .ta-theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4.15rem;
  height: 2.35rem;
  padding: 0;
  border: 1px solid var(--ta-line-2);
  border-radius: 999px;
  background: var(--ta-surface);
  color: var(--ta-heading);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
  transition: transform var(--ta-transition), border-color var(--ta-transition), box-shadow var(--ta-transition), background-color var(--ta-transition);
}

.ta-public-shell .ta-theme-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(255, 106, 0, .38);
  box-shadow: 0 10px 24px var(--ta-glow);
}

.ta-public-shell .ta-theme-toggle-track {
  position: relative;
  width: 3.45rem;
  height: 1.7rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 .38rem;
}

.ta-public-shell .ta-theme-icon {
  position: relative;
  z-index: 1;
  width: .9rem;
  height: .9rem;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  opacity: .68;
}

.ta-public-shell .ta-theme-thumb {
  position: absolute;
  left: .05rem;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ta-orange), var(--ta-orange-2));
  box-shadow: 0 8px 18px rgba(255, 106, 0, .32);
  transition: transform 300ms cubic-bezier(.2, .8, .2, 1);
}

html[data-theme="dark"] .ta-public-shell .ta-theme-thumb {
  transform: translateX(1.7rem);
}

html[data-theme="light"] .ta-public-shell .ta-theme-thumb {
  transform: translateX(0);
}

.ta-public-shell .dropdown-menu,
.ta-public-shell .ta-dropdown-menu {
  border: 1px solid var(--ta-line) !important;
  border-radius: 8px !important;
  background: var(--ta-card-solid) !important;
  box-shadow: var(--ta-shadow-soft) !important;
  padding: .45rem;
}

.ta-public-shell .dropdown-item {
  border-radius: 6px;
  color: var(--ta-muted-2) !important;
  font-weight: 760;
}

.ta-public-shell .dropdown-item:hover,
.ta-public-shell .dropdown-item:focus {
  background: rgba(255, 106, 0, .10) !important;
  color: var(--ta-heading) !important;
}

.ta-public-shell .ta-country-option {
  display: flex;
  align-items: center;
  gap: .55rem;
}

.ta-public-shell .ta-country-option.is-active {
  background: rgba(255, 106, 0, .12) !important;
  color: var(--ta-heading) !important;
}

.ta-public-shell .ta-country-flag {
  display: inline-grid;
  place-items: center;
  width: 1.8rem;
  height: 1.8rem;
  border: 1px solid rgba(255, 106, 0, .24);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .16), transparent),
    rgba(255, 106, 0, .10);
  color: var(--ta-orange);
}

.ta-public-shell .ta-lucide,
.ta-public-shell [data-ta-icon] svg,
.ta-public-shell .ta-bi,
.ta-public-shell .ta-bi-svg {
  width: 1rem;
  height: 1rem;
  display: inline-grid;
  place-items: center;
  color: currentColor;
  font-size: 1rem;
  line-height: 1;
}

.ta-public-shell .ta-auto-icon {
  display: inline-grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  margin-bottom: .75rem;
  border: 1px solid rgba(255, 106, 0, .22);
  border-radius: 8px;
  background: rgba(255, 106, 0, .09);
  color: var(--ta-orange);
}

.ta-public-shell a:focus-visible,
.ta-public-shell button:focus-visible,
.ta-public-shell input:focus-visible,
.ta-public-shell select:focus-visible,
.ta-public-shell textarea:focus-visible,
.ta-public-shell [tabindex]:focus-visible {
  outline: 2px solid var(--ta-orange) !important;
  outline-offset: 3px;
}

/* Sections and shared components */
.ta-public-shell .ta-public-section,
.ta-public-shell .portal-section {
  position: relative;
  padding: clamp(4rem, 7vw, 6.5rem) 0 !important;
  background: transparent !important;
}

.ta-public-shell .is-white,
.ta-public-shell .portal-section-white {
  background: linear-gradient(180deg, rgba(255, 255, 255, .015), transparent) !important;
}

html[data-theme="light"] .ta-public-shell .is-white,
html[data-theme="light"] .ta-public-shell .portal-section-white {
  background: #ffffff !important;
}

.ta-public-shell .is-soft,
.ta-public-shell .ta-auth-page,
.ta-public-shell .ta-profile-page,
.ta-public-shell .ta-jobs-hero {
  background:
    radial-gradient(circle at 82% 0%, rgba(255, 106, 0, .08), transparent 24rem),
    rgba(255, 255, 255, .025) !important;
}

html[data-theme="light"] .ta-public-shell .is-soft,
html[data-theme="light"] .ta-public-shell .ta-auth-page,
html[data-theme="light"] .ta-public-shell .ta-profile-page,
html[data-theme="light"] .ta-public-shell .ta-jobs-hero {
  background:
    radial-gradient(circle at 82% 0%, rgba(255, 106, 0, .08), transparent 24rem),
    #f5f7fb !important;
}

.ta-public-shell .ta-public-eyebrow,
.ta-public-shell .section-label,
.ta-public-shell .country-kicker {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  width: fit-content;
  margin-bottom: 1rem;
  border: 1px solid rgba(255, 106, 0, .22);
  border-radius: 999px;
  background: rgba(255, 106, 0, .08);
  color: var(--ta-orange) !important;
  padding: .45rem .72rem;
  font-size: .72rem;
  font-weight: 850;
  text-transform: uppercase;
}

.ta-public-shell .ta-public-eyebrow::before {
  content: "";
  width: .42rem;
  height: .42rem;
  border-radius: 999px;
  background: var(--ta-orange);
  box-shadow: 0 0 18px rgba(255, 106, 0, .65);
}

.ta-public-shell .ta-section-heading {
  max-width: 760px;
  margin-bottom: clamp(1.7rem, 4vw, 2.6rem);
}

.ta-public-shell .ta-section-heading h2 {
  font-size: clamp(2rem, 4.2vw, 3.35rem);
  line-height: 1.05;
}

.ta-public-shell .ta-section-heading p {
  max-width: 660px;
  font-size: 1.02rem;
  line-height: 1.75;
}

.ta-public-shell .btn {
  min-height: 2.8rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  border-radius: 999px !important;
  font-weight: 820 !important;
  transition: transform var(--ta-transition), box-shadow var(--ta-transition), border-color var(--ta-transition), background-color var(--ta-transition), color var(--ta-transition);
}

.ta-public-shell .btn:hover,
.ta-public-shell .btn:focus {
  transform: translateY(-1px);
}

.ta-public-shell .btn-primary,
.ta-public-shell .candidate-register-primary,
.ta-public-shell .candidate-password-primary,
.ta-public-shell .btn-acosa-primary,
.ta-public-shell .ta-primary-action,
.ta-public-shell button[style*="background:#FF5100"],
.ta-public-shell button[style*="background:#FE5000"] {
  border: 0 !important;
  background: linear-gradient(135deg, var(--ta-orange), var(--ta-orange-2)) !important;
  color: #ffffff !important;
  box-shadow: 0 16px 34px rgba(255, 106, 0, .24) !important;
}

.ta-public-shell .btn-primary:hover,
.ta-public-shell .candidate-register-primary:hover,
.ta-public-shell .candidate-password-primary:hover,
.ta-public-shell .btn-acosa-primary:hover,
.ta-public-shell .ta-primary-action:hover {
  box-shadow: 0 20px 44px rgba(255, 106, 0, .32) !important;
}

.ta-public-shell .btn-outline-secondary,
.ta-public-shell .btn-outline-dark,
.ta-public-shell .btn-acosa-light,
.ta-public-shell .btn-acosa-dark {
  border: 1px solid var(--ta-line-2) !important;
  background: var(--ta-surface) !important;
  color: var(--ta-heading) !important;
  box-shadow: none !important;
}

.ta-public-shell .btn-outline-secondary:hover,
.ta-public-shell .btn-outline-dark:hover,
.ta-public-shell .btn-acosa-light:hover,
.ta-public-shell .btn-acosa-dark:hover {
  border-color: rgba(255, 106, 0, .32) !important;
  background: rgba(255, 106, 0, .10) !important;
}

.ta-public-shell .form-control,
.ta-public-shell .form-select {
  min-height: 3rem;
  border: 1px solid var(--ta-line-2) !important;
  border-radius: 8px !important;
  background: var(--ta-surface) !important;
  color: var(--ta-heading) !important;
  box-shadow: none !important;
}

.ta-public-shell .form-control::placeholder {
  color: var(--ta-muted) !important;
}

.ta-public-shell .form-label {
  color: var(--ta-muted-2) !important;
  font-weight: 780;
}

.ta-public-shell .form-control:focus,
.ta-public-shell .form-select:focus {
  border-color: rgba(255, 106, 0, .62) !important;
  box-shadow: 0 0 0 4px rgba(255, 106, 0, .13) !important;
}

/* Home hero */
.ta-public-shell .ta-home-hero,
.ta-public-shell .ta-public-hero,
.ta-public-shell .country-hero,
.ta-public-shell .ta-country-premium-hero,
.ta-public-shell .ta-jobs-premium-hero,
.ta-public-shell .ta-job-detail-hero,
.ta-public-shell .ta-news-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(32rem, 70vh, 44rem) !important;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--ta-line);
  background:
    radial-gradient(circle at 78% 16%, rgba(255, 106, 0, .16), transparent 22rem),
    radial-gradient(circle at 24% 72%, rgba(37, 99, 235, .12), transparent 24rem),
    linear-gradient(135deg, rgba(5, 8, 22, .98), rgba(11, 16, 32, .96) 56%, rgba(7, 11, 20, .98)) !important;
  color: #ffffff !important;
}

html[data-theme="light"] .ta-public-shell .ta-home-hero,
html[data-theme="light"] .ta-public-shell .ta-public-hero,
html[data-theme="light"] .ta-public-shell .country-hero,
html[data-theme="light"] .ta-public-shell .ta-country-premium-hero,
html[data-theme="light"] .ta-public-shell .ta-jobs-premium-hero,
html[data-theme="light"] .ta-public-shell .ta-job-detail-hero,
html[data-theme="light"] .ta-public-shell .ta-news-hero {
  background:
    radial-gradient(circle at 78% 14%, rgba(255, 106, 0, .13), transparent 22rem),
    radial-gradient(circle at 18% 74%, rgba(37, 99, 235, .08), transparent 24rem),
    linear-gradient(135deg, #ffffff, #f8fafc 54%, #eef2f7) !important;
  color: var(--ta-text) !important;
}

.ta-public-shell .ta-home-hero::before,
.ta-public-shell .ta-public-hero::before,
.ta-public-shell .country-hero::before,
.ta-public-shell .ta-jobs-premium-hero::before,
.ta-public-shell .ta-job-detail-hero::before,
.ta-public-shell .ta-news-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, .045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .035) 1px, transparent 1px);
  background-size: 76px 76px;
  mask-image: linear-gradient(90deg, #000 0%, transparent 78%);
  opacity: .55;
  pointer-events: none;
}

html[data-theme="light"] .ta-public-shell .ta-home-hero::before,
html[data-theme="light"] .ta-public-shell .ta-public-hero::before,
html[data-theme="light"] .ta-public-shell .country-hero::before,
html[data-theme="light"] .ta-public-shell .ta-jobs-premium-hero::before,
html[data-theme="light"] .ta-public-shell .ta-job-detail-hero::before,
html[data-theme="light"] .ta-public-shell .ta-news-hero::before {
  background:
    linear-gradient(rgba(17, 24, 39, .055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(17, 24, 39, .045) 1px, transparent 1px);
}

.ta-public-shell .ta-hero-orbit {
  position: absolute;
  right: 5vw;
  top: 18%;
  width: min(34vw, 420px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 106, 0, .18);
  border-radius: 999px;
  opacity: .7;
  animation: taFloat 8s ease-in-out infinite;
}

.ta-public-shell .ta-hero-orbit::before,
.ta-public-shell .ta-hero-orbit::after {
  content: "";
  position: absolute;
  border-radius: inherit;
  inset: 14%;
  border: 1px solid rgba(255, 255, 255, .08);
}

.ta-public-shell .ta-hero-orbit::after {
  inset: 34%;
  background: rgba(255, 106, 0, .10);
  box-shadow: 0 0 70px rgba(255, 106, 0, .18);
}

@keyframes taFloat {

  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -14px, 0);
  }
}

.ta-public-shell .ta-home-hero h1,
.ta-public-shell .ta-public-hero h1,
.ta-public-shell .ta-country-premium-home .country-hero h1,
.ta-public-shell .country-hero h1,
.ta-public-shell .ta-jobs-premium-hero h1,
.ta-public-shell .ta-job-detail-hero h1,
.ta-public-shell .ta-news-hero .ta-page-title {
  max-width: 720px;
  color: var(--ta-heading) !important;
  font-size: clamp(2.55rem, 5.9vw, 5.2rem) !important;
  font-weight: 900 !important;
  line-height: 1.02 !important;
}

.ta-public-shell .ta-home-hero h1 span {
  color: var(--ta-orange);
  text-shadow: 0 0 36px rgba(255, 106, 0, .24);
}

.ta-public-shell .ta-home-hero .lead,
.ta-public-shell .ta-public-hero .lead,
.ta-public-shell .country-hero p,
.ta-public-shell .ta-jobs-premium-hero p,
.ta-public-shell .ta-job-detail-hero p {
  max-width: 680px;
  font-size: clamp(1rem, 1.7vw, 1.2rem);
  line-height: 1.75;
}

.ta-public-shell .ta-home-hero .lead {
  max-width: 620px;
  margin-top: 1.15rem;
}

html[data-theme="light"] .ta-public-shell .ta-home-hero p,
html[data-theme="light"] .ta-public-shell .ta-home-hero .lead,
html[data-theme="light"] .ta-public-shell .ta-public-hero p,
html[data-theme="light"] .ta-public-shell .ta-public-hero .lead,
html[data-theme="light"] .ta-public-shell .country-hero p,
html[data-theme="light"] .ta-public-shell .ta-jobs-premium-hero p,
html[data-theme="light"] .ta-public-shell .ta-job-detail-hero p,
html[data-theme="light"] .ta-public-shell .ta-news-hero p {
  color: var(--ta-muted-2) !important;
}

.ta-public-shell .ta-hero-search {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: .7rem;
  align-items: center;
  max-width: 680px;
  margin: 1.45rem 0 1rem;
  padding: .55rem;
  border: 1px solid var(--ta-line-2);
  border-radius: 999px;
  background: var(--ta-surface);
  box-shadow: var(--ta-shadow-soft);
  backdrop-filter: blur(18px);
}

.ta-public-shell .ta-search-icon {
  display: grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  color: var(--ta-orange);
}

.ta-public-shell .ta-search-icon svg,
.ta-public-shell .ta-card-actions svg {
  width: 1.05rem;
  height: 1.05rem;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.ta-public-shell .ta-hero-search input {
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--ta-heading);
}

.ta-public-shell .ta-hero-pills,
.ta-public-shell .ta-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

.ta-public-shell .ta-hero-pills {
  margin-bottom: 1.4rem;
}

.ta-public-shell .ta-hero-pills a {
  border: 1px solid var(--ta-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .045);
  color: var(--ta-muted-2);
  padding: .48rem .74rem;
  text-decoration: none;
  font-size: .84rem;
  font-weight: 760;
}

html[data-theme="light"] .ta-public-shell .ta-hero-pills a {
  background: rgba(255, 255, 255, .8);
}

.ta-public-shell .ta-hero-pills a:hover {
  border-color: rgba(255, 106, 0, .36);
  color: var(--ta-heading);
  transform: translateY(-1px);
}

.ta-public-shell .ta-command-panel,
.ta-public-shell .ta-public-hero-panel,
.ta-public-shell .hero-panel,
.ta-public-shell .ta-hero-mini-panel,
.ta-public-shell .ta-auth-side-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ta-line-2) !important;
  border-radius: 8px !important;
  background: linear-gradient(180deg, var(--ta-surface), rgba(255, 255, 255, .04)) !important;
  box-shadow: var(--ta-shadow) !important;
  backdrop-filter: blur(20px);
}

.ta-public-shell .ta-hero-mini-panel span,
.ta-public-shell .ta-hero-mini-panel small,
.ta-public-shell .hero-panel-label {
  color: var(--ta-muted) !important;
}

.ta-public-shell .ta-hero-mini-panel strong,
.ta-public-shell .hero-panel-value {
  color: var(--ta-heading) !important;
}

.ta-public-shell .ta-command-panel {
  padding: clamp(1rem, 3vw, 1.35rem);
}

.ta-public-shell .ta-panel-topline,
.ta-public-shell .ta-job-card-head,
.ta-public-shell .ta-job-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.ta-public-shell .ta-panel-topline {
  margin-bottom: .9rem;
  color: var(--ta-muted);
  font-size: .78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.ta-public-shell .ta-panel-topline strong {
  color: var(--ta-green);
}

.ta-public-shell .ta-command-card {
  min-height: 168px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: .35rem;
  border: 1px solid var(--ta-line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 90% 8%, rgba(255, 106, 0, .22), transparent 12rem),
    rgba(255, 255, 255, .045);
  padding: 1.1rem;
}

.ta-public-shell .ta-command-card small,
.ta-public-shell .ta-command-card span {
  color: var(--ta-muted);
  font-weight: 760;
}

.ta-public-shell .ta-command-card strong {
  color: var(--ta-heading);
  font-size: 1.35rem;
  line-height: 1.15;
}

.ta-public-shell .ta-mini-grid,
.ta-public-shell .ta-kpi-grid,
.ta-public-shell .ta-culture-grid {
  display: grid;
  gap: .85rem;
}

.ta-public-shell .ta-mini-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: .85rem;
}

.ta-public-shell .ta-mini-grid div,
.ta-public-shell .ta-kpi-card,
.ta-public-shell .ta-culture-grid div {
  border: 1px solid var(--ta-line);
  border-radius: 8px;
  background: var(--ta-card);
  padding: 1rem;
}

.ta-public-shell .ta-mini-grid strong,
.ta-public-shell .ta-kpi-card strong,
.ta-public-shell .ta-culture-grid strong {
  display: block;
  color: var(--ta-heading);
  font-size: clamp(1.55rem, 3vw, 2.3rem);
  line-height: 1;
}

.ta-public-shell .ta-mini-grid span,
.ta-public-shell .ta-kpi-card span,
.ta-public-shell .ta-culture-grid span {
  display: block;
  margin-top: .45rem;
  color: var(--ta-muted);
  font-size: .8rem;
  font-weight: 760;
}

.ta-public-shell .ta-talent-flow {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: .45rem;
  margin-top: .85rem;
}

.ta-public-shell .ta-talent-flow span {
  height: .42rem;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 106, 0, .22), rgba(255, 106, 0, .76));
  animation: taPulse 1.7s ease-in-out infinite;
}

.ta-public-shell .ta-talent-flow span:nth-child(2) {
  animation-delay: .12s;
}

.ta-public-shell .ta-talent-flow span:nth-child(3) {
  animation-delay: .24s;
}

.ta-public-shell .ta-talent-flow span:nth-child(4) {
  animation-delay: .36s;
}

@keyframes taPulse {

  0%,
  100% {
    opacity: .42;
    transform: scaleX(.72);
    transform-origin: left;
  }

  50% {
    opacity: 1;
    transform: scaleX(1);
  }
}

.ta-public-shell .ta-kpi-band {
  padding: 1.1rem 0 !important;
  border-bottom: 1px solid var(--ta-line);
  background: var(--ta-surface) !important;
  backdrop-filter: blur(14px);
}

.ta-public-shell .ta-kpi-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

/* Cards */
.ta-public-shell .ta-job-card,
.ta-public-shell .ta-news-card,
.ta-public-shell .ta-premium-card,
.ta-public-shell .benefit-card,
.ta-public-shell .step-card,
.ta-public-shell .ta-detail-card,
.ta-public-shell .ta-news-article-card,
.ta-public-shell .ta-auth-card,
.ta-public-shell .candidate-register-card,
.ta-public-shell .candidate-password-card,
.ta-public-shell .ta-empty-state,
.ta-public-shell .empty-state,
.ta-public-shell .ta-search-panel,
.ta-public-shell .card,
.ta-public-shell .section-card,
.ta-public-shell .bg-white.rounded-4.shadow-sm {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ta-line) !important;
  border-radius: 8px !important;
  background: var(--ta-card) !important;
  color: var(--ta-text) !important;
  box-shadow: var(--ta-shadow-soft) !important;
  backdrop-filter: blur(16px);
  transition: transform var(--ta-transition), box-shadow var(--ta-transition), border-color var(--ta-transition), background-color var(--ta-transition);
}

.ta-public-shell .ta-job-card:hover,
.ta-public-shell .ta-news-card:hover,
.ta-public-shell .ta-premium-card:hover,
.ta-public-shell .benefit-card:hover,
.ta-public-shell .step-card:hover,
.ta-public-shell .ta-detail-card:hover,
.ta-public-shell .ta-region-card:hover,
.ta-public-shell .ta-editorial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(255, 106, 0, .34) !important;
  box-shadow: var(--ta-shadow) !important;
}

.ta-public-shell .ta-job-card:hover .ta-lucide,
.ta-public-shell .ta-job-card:hover .ta-bi,
.ta-public-shell .ta-job-card:hover .ta-bi-svg,
.ta-public-shell .ta-news-card:hover .ta-lucide,
.ta-public-shell .ta-news-card:hover .ta-bi,
.ta-public-shell .ta-news-card:hover .ta-bi-svg,
.ta-public-shell .ta-region-card:hover .ta-lucide,
.ta-public-shell .ta-region-card:hover .ta-bi,
.ta-public-shell .ta-region-card:hover .ta-bi-svg,
.ta-public-shell .ta-auth-proof:hover .ta-lucide,
.ta-public-shell .ta-auth-proof:hover .ta-bi,
.ta-public-shell .ta-auth-proof:hover .ta-bi-svg,
.ta-public-shell .btn:hover .ta-lucide,
.ta-public-shell .btn:hover .ta-bi,
.ta-public-shell .btn:hover .ta-bi-svg,
.ta-public-shell .ta-country-option:hover .ta-lucide,
.ta-public-shell .ta-country-option:hover .ta-bi,
.ta-public-shell .ta-country-option:hover .ta-bi-svg {
  transform: translateY(-1px) scale(1.06);
}

.ta-public-shell .ta-lucide,
.ta-public-shell .ta-bi,
.ta-public-shell .ta-bi-svg {
  transition: transform var(--ta-transition), color var(--ta-transition);
}

.ta-public-shell .ta-card-actions button:hover .ta-lucide,
.ta-public-shell .ta-card-actions button:hover .ta-bi,
.ta-public-shell .ta-card-actions button:hover .ta-bi-svg {
  transform: rotate(-6deg) scale(1.08);
}

.ta-public-shell .ta-premium-list-card::before,
.ta-public-shell .ta-detail-card::before,
.ta-public-shell .ta-auth-card::before,
.ta-public-shell .candidate-register-card::before,
.ta-public-shell .candidate-password-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: linear-gradient(90deg, var(--ta-orange), rgba(37, 99, 235, .55));
}

.ta-public-shell .ta-job-card {
  min-height: 100%;
}

.ta-public-shell .ta-job-card-head {
  padding: 1rem 1rem 0;
}

.ta-public-shell .ta-news-card-img {
  width: 100%;
  height: 100% !important;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(.2, .8, .2, 1), filter var(--ta-transition);
}

.ta-public-shell .ta-news-card:hover .ta-news-card-img {
  transform: scale(1.045);
  filter: saturate(1.05);
}

.ta-public-shell .ta-job-body {
  display: flex;
  flex-direction: column;
  gap: .85rem;
  padding: 1.15rem !important;
}

.ta-public-shell .ta-job-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 90% 8%, rgba(255, 106, 0, .10), transparent 9rem),
    linear-gradient(180deg, rgba(255, 255, 255, .035), transparent 46%);
  opacity: .8;
}

.ta-public-shell .ta-job-card>* {
  position: relative;
  z-index: 1;
}

.ta-public-shell .ta-job-company {
  color: var(--ta-orange);
  font-size: .78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.ta-public-shell .ta-job-title,
.ta-public-shell .ta-news-card-title {
  margin: 0;
  color: var(--ta-heading) !important;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  line-height: 1.18;
}

.ta-public-shell .ta-job-excerpt {
  min-height: 3.2rem;
  margin: 0;
  color: var(--ta-muted) !important;
  line-height: 1.62;
}

.ta-public-shell .ta-job-meta-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: .45rem;
}

.ta-public-shell .ta-job-meta-grid span,
.ta-public-shell .ta-job-badge,
.ta-public-shell .ta-news-country-badge,
.ta-public-shell .ta-news-internal-badge,
.ta-public-shell .badge,
.ta-public-shell .ta-filter-btn {
  display: inline-flex;
  align-items: center;
  min-height: 1.9rem;
  border: 1px solid var(--ta-line) !important;
  border-radius: 999px !important;
  background: rgba(255, 255, 255, .045) !important;
  color: var(--ta-muted-2) !important;
  padding: .38rem .65rem !important;
  font-size: .74rem;
  font-weight: 780 !important;
  box-shadow: none !important;
}

html[data-theme="light"] .ta-public-shell .ta-job-meta-grid span,
html[data-theme="light"] .ta-public-shell .ta-job-badge,
html[data-theme="light"] .ta-public-shell .badge,
html[data-theme="light"] .ta-public-shell .ta-filter-btn {
  background: #ffffff !important;
}

.ta-public-shell .ta-card-actions {
  display: inline-flex;
  gap: .45rem;
}

.ta-public-shell .ta-card-actions button {
  display: grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  border: 1px solid var(--ta-line);
  border-radius: 999px;
  background: rgba(255, 255, 255, .045);
  color: var(--ta-muted-2);
}

.ta-public-shell .ta-card-actions button:hover {
  border-color: rgba(255, 106, 0, .34);
  color: var(--ta-orange);
  transform: translateY(-1px);
}

.ta-public-shell .ta-salary {
  color: var(--ta-green);
  font-weight: 850;
}

.ta-public-shell .ta-days {
  color: var(--ta-muted);
  font-size: .78rem;
  font-weight: 780;
}

.ta-public-shell .ta-region-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.ta-public-shell .ta-region-card,
.ta-public-shell .ta-editorial-card {
  min-height: 15rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--ta-line);
  border-radius: 8px;
  background: var(--ta-card);
  color: var(--ta-text);
  padding: 1.15rem;
  text-decoration: none;
  box-shadow: var(--ta-shadow-soft);
  transition: transform var(--ta-transition), border-color var(--ta-transition), box-shadow var(--ta-transition);
}

.ta-public-shell .ta-region-card span,
.ta-public-shell .ta-editorial-card span {
  width: 2.65rem;
  height: 2.65rem;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 106, 0, .10);
  color: var(--ta-orange);
  font-weight: 900;
}

.ta-public-shell .ta-region-card strong,
.ta-public-shell .ta-editorial-card h3 {
  color: var(--ta-heading);
  font-size: 1.2rem;
  line-height: 1.16;
}

.ta-public-shell .ta-region-card p,
.ta-public-shell .ta-editorial-card p {
  color: var(--ta-muted) !important;
  line-height: 1.6;
}

.ta-public-shell .ta-region-card small {
  color: var(--ta-orange);
  font-weight: 820;
}

.ta-public-shell .ta-editorial-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: start;
}

.ta-public-shell .ta-editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.ta-public-shell .ta-editorial-card:first-child {
  grid-row: span 2;
  min-height: 100%;
}

.ta-public-shell .ta-culture-shell {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  border: 1px solid var(--ta-line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 106, 0, .13), transparent 18rem),
    var(--ta-card);
  box-shadow: var(--ta-shadow-soft);
  padding: clamp(1.25rem, 4vw, 2.4rem);
}

.ta-public-shell .ta-culture-shell h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.06;
}

.ta-public-shell .ta-culture-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* Country pages */
.ta-public-shell .ta-country-premium-home .country-hero {
  min-height: clamp(24rem, 52vh, 34rem) !important;
}

.ta-public-shell .ta-country-premium-home .country-hero-inner {
  min-height: 0 !important;
  padding-top: clamp(3rem, 6vw, 4.5rem) !important;
  padding-bottom: clamp(3rem, 6vw, 4.5rem) !important;
}

.ta-public-shell .ta-country-premium-home .portal-section {
  padding: clamp(3rem, 6vw, 4.75rem) 0 !important;
}

.ta-public-shell .ta-country-premium-home .hero-panel {
  transform: translateY(0);
}

.ta-public-shell .ta-country-focus-pills {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-top: 1.25rem;
}

.ta-public-shell .ta-country-focus-pills span {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  min-height: 2rem;
  border: 1px solid var(--ta-line);
  border-radius: 999px;
  background: var(--ta-surface);
  color: var(--ta-muted-2);
  padding: .38rem .68rem;
  font-size: .78rem;
  font-weight: 780;
}

.ta-public-shell .benefit-icon,
.ta-public-shell .step-number,
.ta-public-shell .home-apply-icon,
.ta-public-shell .ta-benefit-mark,
.ta-public-shell .ta-trust-icon {
  border-radius: 8px !important;
  background: rgba(255, 106, 0, .10) !important;
  color: var(--ta-orange) !important;
}

/* Jobs, detail, news, auth pages */
.ta-public-shell .ta-jobs-premium-hero,
.ta-public-shell .ta-job-detail-hero,
.ta-public-shell .ta-news-hero {
  min-height: clamp(18rem, 38vh, 26rem) !important;
  padding: clamp(3rem, 6vw, 4.25rem) 0 !important;
}

.ta-public-shell .ta-jobs-premium-hero h1,
.ta-public-shell .ta-job-detail-hero h1,
.ta-public-shell .ta-news-hero .ta-page-title,
.ta-public-shell .country-hero h1 {
  font-size: clamp(2.25rem, 5vw, 4.4rem) !important;
  line-height: 1.03 !important;
}

.ta-public-shell .ta-auth-page,
.ta-public-shell .ta-profile-page {
  padding-top: clamp(2.5rem, 5vw, 4rem) !important;
  padding-bottom: clamp(2.5rem, 5vw, 4rem) !important;
}

.ta-public-shell .ta-search-panel {
  padding: 1rem !important;
}

.ta-public-shell .ta-summary-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: .88rem 0;
  border-bottom: 1px solid var(--ta-line) !important;
}

.ta-public-shell .ta-summary-list li:last-child {
  border-bottom: 0 !important;
}

.ta-public-shell .ta-summary-list strong {
  color: var(--ta-muted) !important;
  font-size: .75rem;
  font-weight: 860;
  text-transform: uppercase;
}

.ta-public-shell .ta-summary-list span {
  color: var(--ta-heading) !important;
  text-align: right;
  font-weight: 820;
}

.ta-public-shell .ta-detail-card,
.ta-public-shell .ta-detail-card div,
.ta-public-shell .ta-detail-card p,
.ta-public-shell .ta-detail-card li,
.ta-public-shell .ta-news-view-content {
  color: var(--ta-muted-2) !important;
  line-height: 1.75;
}

.ta-public-shell .ta-news-card-body,
.ta-public-shell .ta-news-card-excerpt,
.ta-public-shell .ta-news-date,
.ta-public-shell .ta-news-view-content p,
.ta-public-shell .ta-news-view-content li,
.ta-public-shell .ta-news-view-content blockquote,
.ta-public-shell .ta-comment-card p {
  color: var(--ta-muted-2) !important;
}

.ta-public-shell .ta-news-card-title a,
.ta-public-shell .ta-news-read-more,
.ta-public-shell .candidate-password-link,
.ta-public-shell .candidate-register-link {
  color: var(--ta-heading) !important;
}

.ta-public-shell .ta-news-card-title a:hover,
.ta-public-shell .ta-news-read-more:hover,
.ta-public-shell .candidate-password-link:hover,
.ta-public-shell .candidate-register-link:hover {
  color: var(--ta-orange) !important;
}

.ta-public-shell .ta-reaction-button,
.ta-public-shell .page-link {
  border: 1px solid var(--ta-line) !important;
  background: var(--ta-card) !important;
  color: var(--ta-muted-2) !important;
}

.ta-public-shell .ta-reaction-button:hover,
.ta-public-shell .ta-reaction-button:focus,
.ta-public-shell .ta-reaction-button.is-active,
.ta-public-shell .page-item.active .page-link {
  border-color: rgba(255, 106, 0, .38) !important;
  background: rgba(255, 106, 0, .10) !important;
  color: var(--ta-heading) !important;
}

.ta-public-shell .ta-reaction-count {
  background: var(--ta-heading) !important;
  color: var(--ta-bg) !important;
}

.ta-public-shell .ta-apply-sticky-card {
  top: 88px !important;
}

.ta-public-shell .ta-auth-page {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
}

.ta-public-shell .ta-auth-side-panel {
  min-height: 560px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(1.35rem, 4vw, 2.25rem);
}

.ta-public-shell .ta-auth-proof {
  display: flex;
  align-items: center;
  gap: .85rem;
  border: 1px solid var(--ta-line);
  border-radius: 8px;
  background: rgba(255, 255, 255, .045);
  padding: .9rem;
}

.ta-public-shell .ta-auth-proof strong {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 8px;
  background: linear-gradient(135deg, var(--ta-orange), var(--ta-orange-2));
  color: #ffffff;
}

.ta-public-shell .ta-auth-proof span {
  color: var(--ta-muted-2);
  font-weight: 780;
}

.ta-public-shell .apply-choice-head,
.ta-public-shell .apply-gate-head,
.ta-public-shell .home-apply-head {
  background:
    radial-gradient(circle at 88% 10%, rgba(255, 106, 0, .16), transparent 12rem),
    linear-gradient(135deg, #050816, #0b1020) !important;
  color: #ffffff !important;
}

.ta-public-shell .apply-choice-head h1,
.ta-public-shell .apply-choice-head h2,
.ta-public-shell .apply-gate-head h1,
.ta-public-shell .apply-gate-head h2,
.ta-public-shell .home-apply-head h1,
.ta-public-shell .home-apply-head h2,
.ta-public-shell .apply-choice-head p,
.ta-public-shell .apply-gate-head p,
.ta-public-shell .home-apply-head p {
  color: #ffffff !important;
}

.ta-public-shell .input-group .btn {
  border-radius: 0 8px 8px 0 !important;
}

.ta-public-shell .input-group .form-control {
  border-radius: 8px 0 0 8px !important;
}

.ta-public-shell .alert {
  border-radius: 8px !important;
  border: 1px solid var(--ta-line);
}

.ta-public-shell .alert-danger {
  background: rgba(255, 90, 95, .10);
  color: var(--ta-red);
}

.ta-public-shell .alert-success {
  background: rgba(0, 194, 110, .10);
  color: var(--ta-green);
}

/* Country gate and footer */
.ta-public-shell .ta-country-gate {
  background: rgba(5, 8, 22, .76) !important;
  backdrop-filter: blur(14px);
}

.ta-public-shell .ta-country-gate-card,
.ta-public-shell .ta-country-gate-option {
  border: 1px solid var(--ta-line) !important;
  border-radius: 8px !important;
  background: var(--ta-card-solid) !important;
  color: var(--ta-text) !important;
  box-shadow: var(--ta-shadow) !important;
}

.ta-public-shell .ta-country-gate-title {
  color: var(--ta-heading) !important;
}

.ta-public-shell .ta-footer {
  margin-top: 0 !important;
  border-top: 1px solid var(--ta-line);
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 106, 0, .10), transparent 20rem),
    linear-gradient(180deg, rgba(11, 16, 32, .98), rgba(5, 8, 22, 1)) !important;
}

html[data-theme="light"] .ta-public-shell .ta-footer {
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 106, 0, .08), transparent 20rem),
    linear-gradient(180deg, #ffffff, #f5f7fb) !important;
}

.ta-public-shell .ta-footer-brand-col,
.ta-public-shell .ta-footer-link-col,
.ta-public-shell .ta-footer-cta-col {
  border: 1px solid var(--ta-line);
  border-radius: 8px;
  background: var(--ta-card);
  box-shadow: none;
}

.ta-public-shell .ta-footer-title,
.ta-public-shell .ta-footer-subtitle {
  color: var(--ta-heading) !important;
}

.ta-public-shell .ta-footer-text,
.ta-public-shell .ta-footer-bottom,
.ta-public-shell .ta-footer-links a {
  color: var(--ta-muted) !important;
}

.ta-public-shell .ta-footer-links a:hover {
  color: var(--ta-orange) !important;
}

/* Reveal animations */
.ta-public-shell .ta-reveal {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 620ms cubic-bezier(.2, .8, .2, 1),
    transform 620ms cubic-bezier(.2, .8, .2, 1),
    box-shadow var(--ta-transition),
    border-color var(--ta-transition);
  transition-delay: var(--ta-reveal-delay, 0ms);
}

.ta-public-shell .ta-reveal.ta-reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.ta-public-shell .ta-animate-up {
  animation: taSlideUp 520ms cubic-bezier(.2, .8, .2, 1) both;
}

.ta-public-shell .ta-delay-1 {
  animation-delay: 90ms;
}

.ta-public-shell .ta-delay-2 {
  animation-delay: 150ms;
}

@keyframes taSlideUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1199.98px) {
  .ta-public-shell .ta-region-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 991.98px) {
  .ta-public-shell .navbar-toggler {
    display: inline-grid;
  }

  .ta-public-shell .navbar-collapse {
    margin-top: .8rem;
    border: 1px solid var(--ta-line);
    border-radius: 8px;
    background: var(--ta-card-solid);
    padding: .75rem;
    box-shadow: var(--ta-shadow-soft);
  }

  .ta-public-shell .ta-navbar .nav-link,
  .ta-public-shell .ta-navbar .dropdown-toggle,
  .ta-public-shell .ta-theme-toggle {
    width: 100%;
    justify-content: space-between;
    color: var(--ta-muted-2) !important;
    opacity: 1;
  }

  .ta-public-shell .ta-home-hero,
  .ta-public-shell .ta-public-hero,
  .ta-public-shell .country-hero,
  .ta-public-shell .ta-country-premium-hero,
  .ta-public-shell .ta-jobs-premium-hero,
  .ta-public-shell .ta-job-detail-hero,
  .ta-public-shell .ta-news-hero {
    min-height: auto !important;
    padding: 5rem 0 !important;
  }

  .ta-public-shell .ta-home-hero h1,
  .ta-public-shell .ta-public-hero h1,
  .ta-public-shell .country-hero h1,
  .ta-public-shell .ta-jobs-premium-hero h1,
  .ta-public-shell .ta-job-detail-hero h1 {
    font-size: clamp(2.55rem, 12vw, 4.5rem) !important;
  }

  .ta-public-shell .ta-kpi-grid,
  .ta-public-shell .ta-culture-shell,
  .ta-public-shell .ta-editorial-layout {
    grid-template-columns: 1fr;
  }

  .ta-public-shell .ta-auth-side-panel {
    min-height: auto;
  }
}

.ta-public-shell .ta-public-card .ta-public-card-body>.ta-public-card-icon[data-ta-icon] {
  display: inline-grid !important;
  place-items: center !important;
  width: 3.25rem !important;
  height: 3.25rem !important;
  min-width: 3.25rem !important;
  min-height: 3.25rem !important;
  padding: 0 !important;
  margin-bottom: 1.1rem !important;
  border-radius: 14px !important;
  border: 1px solid rgba(255, 106, 0, .55) !important;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, .2), transparent 32%),
    linear-gradient(145deg, rgba(91, 39, 11, .95), rgba(25, 22, 24, .96) 54%, rgba(255, 106, 0, .14)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .1),
    0 12px 26px rgba(0, 0, 0, .34),
    0 0 22px rgba(255, 106, 0, .14) !important;
  color: #ff7a1a !important;
  opacity: 1 !important;
}

.ta-public-shell .ta-public-card .ta-public-card-body>.ta-public-card-icon[data-ta-icon] .ta-bi-svg {
  display: block !important;
  width: 1.35rem !important;
  height: 1.35rem !important;
  fill: currentColor !important;
  color: inherit !important;
  opacity: 1 !important;
}

.ta-public-shell .ta-kpi-card>.ta-kpi-icon[data-ta-icon] {
  display: inline-grid !important;
  place-items: center !important;
  width: 3rem !important;
  height: 3rem !important;
  min-width: 3rem !important;
  min-height: 3rem !important;
  padding: 0 !important;
  margin-bottom: .85rem !important;
  border-radius: 14px !important;
  border: 1px solid rgba(255, 106, 0, .55) !important;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, .2), transparent 32%),
    linear-gradient(145deg, rgba(91, 39, 11, .95), rgba(25, 22, 24, .96) 54%, rgba(255, 106, 0, .14)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .1),
    0 12px 26px rgba(0, 0, 0, .34),
    0 0 22px rgba(255, 106, 0, .14) !important;
  color: #ff7a1a !important;
  opacity: 1 !important;
}

.ta-public-shell .ta-kpi-card>.ta-kpi-icon[data-ta-icon] .ta-bi-svg {
  display: block !important;
  width: 1.3rem !important;
  height: 1.3rem !important;
  fill: currentColor !important;
  color: inherit !important;
  opacity: 1 !important;
}

.ta-public-shell .ta-region-card>.ta-region-icon[data-ta-icon] {
  display: inline-grid !important;
  place-items: center !important;
  width: 3.1rem !important;
  height: 3.1rem !important;
  min-width: 3.1rem !important;
  min-height: 3.1rem !important;
  padding: 0 !important;
  margin-bottom: 1rem !important;
  border-radius: 14px !important;
  border: 1px solid rgba(255, 106, 0, .55) !important;
  background:
    radial-gradient(circle at 28% 18%, rgba(255, 255, 255, .2), transparent 32%),
    linear-gradient(145deg, rgba(91, 39, 11, .95), rgba(25, 22, 24, .96) 54%, rgba(255, 106, 0, .14)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .1),
    0 12px 26px rgba(0, 0, 0, .34),
    0 0 22px rgba(255, 106, 0, .14) !important;
  color: #ff7a1a !important;
  opacity: 1 !important;
}

.ta-public-shell .ta-region-card>.ta-region-icon[data-ta-icon] .ta-bi-svg {
  display: block !important;
  width: 1.35rem !important;
  height: 1.35rem !important;
  fill: currentColor !important;
  color: inherit !important;
  opacity: 1 !important;
}

@media (max-width: 767.98px) {

  .ta-public-shell .ta-container,
  .ta-public-shell .container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .ta-public-shell .ta-hero-search {
    grid-template-columns: auto 1fr;
    border-radius: 8px;
  }

  .ta-public-shell .ta-hero-search .btn {
    grid-column: 1 / -1;
    width: 100%;
  }

  .ta-public-shell .ta-kpi-grid,
  .ta-public-shell .ta-mini-grid,
  .ta-public-shell .ta-region-grid,
  .ta-public-shell .ta-editorial-grid,
  .ta-public-shell .ta-culture-grid,
  .ta-public-shell .ta-job-meta-grid {
    grid-template-columns: 1fr;
  }

  .ta-public-shell .ta-editorial-card:first-child {
    grid-row: auto;
  }

  .ta-public-shell .ta-summary-list li {
    display: block;
  }

  .ta-public-shell .ta-summary-list span {
    display: block;
    margin-top: .25rem;
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {

  html,
  body {
    scroll-behavior: auto !important;
  }

  .ta-public-shell *,
  .ta-public-shell *::before,
  .ta-public-shell *::after {
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
  }

  .ta-public-shell .ta-reveal {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* ==================================
   Phase 5: Unified Public Enterprise System
================================== */

body.ta-public-shell {
  --page-bg: #060913;
  --section-bg: rgba(255, 255, 255, .025);
  --card-bg: rgba(15, 23, 42, .78);
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --border: rgba(255, 255, 255, .12);
  --shadow: 0 18px 52px rgba(0, 0, 0, .28);
  --glow: rgba(255, 106, 0, .18);
  --hero-bg:
    radial-gradient(circle at 82% 12%, rgba(255, 106, 0, .14), transparent 22rem),
    radial-gradient(circle at 18% 78%, rgba(37, 99, 235, .12), transparent 24rem),
    linear-gradient(135deg, #070a14 0%, #0d1424 58%, #070b14 100%);
  --muted-bg: rgba(255, 255, 255, .055);
  --icon-bg: rgba(255, 106, 0, .11);
  --icon-border: rgba(255, 106, 0, .24);
  --premium-radius: 8px;
  --premium-space-section: clamp(2.75rem, 5vw, 4.35rem);
  --premium-space-hero: clamp(3rem, 6vw, 4.75rem);

  --ta-bg: var(--page-bg);
  --ta-bg-2: var(--page-bg);
  --ta-bg-3: #0b1020;
  --ta-surface: var(--section-bg);
  --ta-card: var(--card-bg);
  --ta-card-solid: #0f172a;
  --ta-text: var(--text-primary);
  --ta-heading: var(--text-primary);
  --ta-muted: #94a3b8;
  --ta-muted-2: var(--text-secondary);
  --ta-line: var(--border);
  --ta-line-2: rgba(255, 255, 255, .18);
  --ta-glow: var(--glow);
  --ta-shadow: var(--shadow);
  --ta-shadow-soft: 0 12px 34px rgba(0, 0, 0, .22);

  background:
    radial-gradient(circle at var(--ta-cursor-x, 76%) var(--ta-cursor-y, 8%), var(--glow), transparent 18rem),
    linear-gradient(180deg, var(--page-bg), #090d18 50%, var(--page-bg)) !important;
  color: var(--text-primary) !important;
}

html[data-theme="light"] body.ta-public-shell {
  --page-bg: #f7f9fc;
  --section-bg: #ffffff;
  --card-bg: rgba(255, 255, 255, .94);
  --text-primary: #111827;
  --text-secondary: #475467;
  --border: rgba(17, 24, 39, .10);
  --shadow: 0 18px 48px rgba(16, 24, 40, .10);
  --glow: rgba(255, 106, 0, .11);
  --hero-bg:
    radial-gradient(circle at 82% 12%, rgba(255, 106, 0, .12), transparent 22rem),
    radial-gradient(circle at 18% 78%, rgba(37, 99, 235, .08), transparent 24rem),
    linear-gradient(135deg, #ffffff 0%, #f7f9fc 58%, #eef2f7 100%);
  --muted-bg: rgba(17, 24, 39, .045);
  --icon-bg: rgba(255, 106, 0, .10);
  --icon-border: rgba(255, 106, 0, .22);

  --ta-card-solid: #ffffff;
  --ta-muted: #667085;
  --ta-line-2: rgba(17, 24, 39, .16);
  --ta-shadow-soft: 0 10px 28px rgba(16, 24, 40, .07);

  background:
    radial-gradient(circle at var(--ta-cursor-x, 76%) var(--ta-cursor-y, 8%), var(--glow), transparent 18rem),
    linear-gradient(180deg, var(--page-bg), #ffffff 52%, var(--page-bg)) !important;
}

.ta-public-shell h1,
.ta-public-shell h2,
.ta-public-shell h3,
.ta-public-shell h4,
.ta-public-shell h5,
.ta-public-shell h6,
.ta-public-shell .ta-page-title,
.ta-public-shell .ta-job-title,
.ta-public-shell .ta-news-card-title,
.ta-public-shell .ta-news-card-title a {
  color: var(--text-primary) !important;
}

.ta-public-shell p,
.ta-public-shell li,
.ta-public-shell small,
.ta-public-shell .text-muted,
.ta-public-shell .lead,
.ta-public-shell .ta-page-subtitle,
.ta-public-shell .ta-job-excerpt,
.ta-public-shell .ta-news-card-excerpt,
.ta-public-shell .ta-news-date {
  color: var(--text-secondary) !important;
}

.ta-public-shell .premium-icon,
.ta-public-shell .icon-badge,
.ta-public-shell .ta-public-card-icon,
.ta-public-shell .ta-kpi-icon,
.ta-public-shell .benefit-icon,
.ta-public-shell .home-apply-icon,
.ta-public-shell .ta-benefit-mark,
.ta-public-shell .ta-trust-icon,
.ta-public-shell .ta-auto-icon,
.ta-public-shell .ta-empty-icon,
.ta-public-shell .ta-country-flag,
.ta-public-shell .ta-region-card span,
.ta-public-shell .ta-editorial-card span,
.ta-public-shell .ta-auth-proof strong,
.ta-public-shell .ta-reaction-icon,
.ta-public-shell .ta-card-actions button {
  width: 2.55rem !important;
  height: 2.55rem !important;
  min-width: 2.55rem !important;
  min-height: 2.55rem !important;
  display: inline-grid !important;
  place-items: center !important;
  flex: 0 0 2.55rem !important;
  padding: 0 !important;
  border: 1px solid var(--icon-border) !important;
  border-radius: var(--premium-radius) !important;
  background: var(--icon-bg) !important;
  color: var(--ta-orange) !important;
  line-height: 1 !important;
  font-size: .82rem !important;
  font-weight: 900 !important;
}

.ta-public-shell .premium-icon svg,
.ta-public-shell .icon-badge svg,
.ta-public-shell .ta-public-card-icon svg,
.ta-public-shell .ta-kpi-icon svg,
.ta-public-shell .benefit-icon svg,
.ta-public-shell .ta-empty-icon svg,
.ta-public-shell [data-ta-icon] svg,
.ta-public-shell .ta-card-actions button svg,
.ta-public-shell .ta-lucide,
.ta-public-shell .ta-bi,
.ta-public-shell .ta-bi-svg {
  width: 1rem !important;
  height: 1rem !important;
  display: inline-grid !important;
  place-items: center !important;
  margin: 0 !important;
  color: currentColor !important;
  font-size: 1rem !important;
  line-height: 1 !important;
}

.ta-public-shell span[data-ta-icon],
.ta-public-shell .ta-country-focus-pills span[data-ta-icon],
.ta-public-shell .ta-job-badge span[data-ta-icon],
.ta-public-shell .ta-news-read-more span[data-ta-icon] {
  width: 1.15rem !important;
  height: 1.15rem !important;
  min-width: 1.15rem !important;
  min-height: 1.15rem !important;
  display: inline-grid !important;
  place-items: center !important;
  padding: 0 !important;
  line-height: 1 !important;
}

.ta-public-shell .ta-public-section,
.ta-public-shell .portal-section,
.ta-public-shell section.py-5,
.ta-public-shell section.bg-light {
  padding-top: var(--premium-space-section) !important;
  padding-bottom: var(--premium-space-section) !important;
  background: transparent !important;
}

.ta-public-shell .is-white,
.ta-public-shell .is-soft,
.ta-public-shell .portal-section-white,
.ta-public-shell .ta-auth-page,
.ta-public-shell .ta-profile-page,
.ta-public-shell .bg-light,
.ta-public-shell .bg-white,
.ta-public-shell .ta-news-page,
.ta-public-shell .ta-home-premium,
.ta-public-shell .ta-country-home {
  background:
    radial-gradient(circle at 92% 0%, var(--glow), transparent 18rem),
    var(--page-bg) !important;
  color: var(--text-primary) !important;
}

.ta-public-shell .ta-home-hero,
.ta-public-shell .ta-public-hero,
.ta-public-shell .country-hero,
.ta-public-shell .ta-country-premium-hero,
.ta-public-shell .ta-jobs-premium-hero,
.ta-public-shell .ta-job-detail-hero,
.ta-public-shell .ta-news-hero,
.ta-public-shell .ta-page-hero {
  min-height: 0 !important;
  padding-top: var(--premium-space-hero) !important;
  padding-bottom: var(--premium-space-hero) !important;
  display: flex !important;
  align-items: center !important;
  border-bottom: 1px solid var(--border) !important;
  background: var(--hero-bg) !important;
  color: var(--text-primary) !important;
}

.ta-public-shell .ta-home-hero h1,
.ta-public-shell .ta-public-hero h1,
.ta-public-shell .ta-country-premium-home .country-hero h1,
.ta-public-shell .country-hero h1,
.ta-public-shell .ta-jobs-premium-hero h1,
.ta-public-shell .ta-job-detail-hero h1,
.ta-public-shell .ta-news-hero .ta-page-title,
.ta-public-shell .ta-page-hero h1 {
  max-width: 760px !important;
  color: var(--text-primary) !important;
  font-size: clamp(2.05rem, 4.6vw, 3.85rem) !important;
  line-height: 1.04 !important;
}

.ta-public-shell .ta-home-hero p,
.ta-public-shell .ta-public-hero p,
.ta-public-shell .ta-country-premium-home .country-hero p,
.ta-public-shell .country-hero p,
.ta-public-shell .ta-jobs-premium-hero p,
.ta-public-shell .ta-job-detail-hero p,
.ta-public-shell .ta-news-hero .ta-page-subtitle,
.ta-public-shell .ta-page-hero p,
.ta-public-shell .text-white-50 {
  color: var(--text-secondary) !important;
}

.ta-public-shell .ta-country-premium-home .country-hero-inner {
  min-height: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
  gap: clamp(1.4rem, 3vw, 2rem) !important;
}

.ta-public-shell .country-actions,
.ta-public-shell .ta-public-action-row,
.ta-public-shell .ta-hero-actions {
  gap: .75rem !important;
  margin-top: 1.25rem !important;
}

.ta-public-shell .ta-public-grid,
.ta-public-shell .ta-region-grid,
.ta-public-shell .ta-editorial-grid,
.ta-public-shell .ta-culture-grid {
  gap: clamp(.85rem, 2vw, 1.15rem) !important;
}

.ta-public-shell .ta-public-card,
.ta-public-shell .ta-job-card,
.ta-public-shell .ta-news-card,
.ta-public-shell .ta-premium-card,
.ta-public-shell .benefit-card,
.ta-public-shell .step-card,
.ta-public-shell .ta-detail-card,
.ta-public-shell .ta-news-article-card,
.ta-public-shell .ta-auth-card,
.ta-public-shell .candidate-register-card,
.ta-public-shell .candidate-password-card,
.ta-public-shell .ta-empty-state,
.ta-public-shell .empty-state,
.ta-public-shell .ta-search-panel,
.ta-public-shell .ta-command-panel,
.ta-public-shell .ta-kpi-card,
.ta-public-shell .ta-region-card,
.ta-public-shell .ta-editorial-card,
.ta-public-shell .ta-culture-shell,
.ta-public-shell .ta-footer-brand-col,
.ta-public-shell .ta-footer-link-col,
.ta-public-shell .ta-footer-cta-col,
.ta-public-shell .ta-comment-card,
.ta-public-shell .ta-comment-login-card,
.ta-public-shell .ta-comment-form-card,
.ta-public-shell .card,
.ta-public-shell .section-card {
  border: 1px solid var(--border) !important;
  border-radius: var(--premium-radius) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .035), transparent 42%),
    var(--card-bg) !important;
  color: var(--text-primary) !important;
  box-shadow: var(--shadow) !important;
}

html[data-theme="light"] .ta-public-shell .ta-public-card,
html[data-theme="light"] .ta-public-shell .ta-job-card,
html[data-theme="light"] .ta-public-shell .ta-news-card,
html[data-theme="light"] .ta-public-shell .ta-premium-card,
html[data-theme="light"] .ta-public-shell .benefit-card,
html[data-theme="light"] .ta-public-shell .step-card,
html[data-theme="light"] .ta-public-shell .ta-detail-card,
html[data-theme="light"] .ta-public-shell .ta-news-article-card,
html[data-theme="light"] .ta-public-shell .ta-auth-card,
html[data-theme="light"] .ta-public-shell .candidate-register-card,
html[data-theme="light"] .ta-public-shell .candidate-password-card,
html[data-theme="light"] .ta-public-shell .ta-empty-state,
html[data-theme="light"] .ta-public-shell .empty-state,
html[data-theme="light"] .ta-public-shell .ta-search-panel,
html[data-theme="light"] .ta-public-shell .ta-command-panel,
html[data-theme="light"] .ta-public-shell .ta-kpi-card,
html[data-theme="light"] .ta-public-shell .ta-region-card,
html[data-theme="light"] .ta-public-shell .ta-editorial-card,
html[data-theme="light"] .ta-public-shell .ta-culture-shell,
html[data-theme="light"] .ta-public-shell .ta-footer-brand-col,
html[data-theme="light"] .ta-public-shell .ta-footer-link-col,
html[data-theme="light"] .ta-public-shell .ta-footer-cta-col,
html[data-theme="light"] .ta-public-shell .ta-comment-card,
html[data-theme="light"] .ta-public-shell .ta-comment-login-card,
html[data-theme="light"] .ta-public-shell .ta-comment-form-card,
html[data-theme="light"] .ta-public-shell .card,
html[data-theme="light"] .ta-public-shell .section-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 250, 252, .92)) !important;
}

.ta-public-shell .ta-public-card-body,
.ta-public-shell .ta-job-body,
.ta-public-shell .ta-news-card-body {
  padding: clamp(1rem, 2.4vw, 1.35rem) !important;
}

.ta-public-shell .ta-public-card::before,
.ta-public-shell .ta-premium-list-card::before,
.ta-public-shell .ta-detail-card::before,
.ta-public-shell .ta-auth-card::before,
.ta-public-shell .candidate-register-card::before,
.ta-public-shell .candidate-password-card::before,
.ta-public-shell .bg-white.rounded-4.shadow-sm::before {
  height: 2px !important;
  background: linear-gradient(90deg, var(--ta-orange), rgba(37, 99, 235, .72)) !important;
}

.ta-public-shell .hero-panel,
.ta-public-shell .ta-public-hero-panel,
.ta-public-shell .ta-hero-mini-panel {
  border: 1px solid var(--border) !important;
  border-radius: var(--premium-radius) !important;
  background: var(--card-bg) !important;
  color: var(--text-primary) !important;
  box-shadow: var(--shadow) !important;
}

.ta-public-shell .hero-panel-label,
.ta-public-shell .ta-public-hero-stat small,
.ta-public-shell .ta-hero-mini-panel span,
.ta-public-shell .ta-hero-mini-panel small {
  color: var(--text-secondary) !important;
}

.ta-public-shell .hero-panel-value,
.ta-public-shell .ta-public-hero-stat strong,
.ta-public-shell .ta-hero-mini-panel strong,
.ta-public-shell .ta-mini-grid strong,
.ta-public-shell .ta-kpi-card strong,
.ta-public-shell .ta-culture-grid strong {
  color: var(--text-primary) !important;
}

.ta-public-shell .ta-public-eyebrow,
.ta-public-shell .section-label,
.ta-public-shell .country-kicker,
.ta-public-shell .ta-public-card-kicker {
  margin-bottom: .75rem !important;
  border: 1px solid rgba(255, 106, 0, .22) !important;
  border-radius: 999px !important;
  background: rgba(255, 106, 0, .09) !important;
  color: var(--ta-orange) !important;
  padding: .38rem .62rem !important;
  font-size: .68rem !important;
  font-weight: 900 !important;
  text-transform: uppercase !important;
}

.ta-public-shell .ta-job-badge,
.ta-public-shell .ta-news-country-badge,
.ta-public-shell .ta-news-internal-badge,
.ta-public-shell .badge,
.ta-public-shell .ta-filter-btn,
.ta-public-shell .ta-country-focus-pills span,
.ta-public-shell .ta-hero-pills a,
.ta-public-shell .ta-job-meta-grid span {
  min-height: 1.8rem !important;
  display: inline-flex !important;
  align-items: center !important;
  gap: .35rem !important;
  border: 1px solid var(--border) !important;
  border-radius: 999px !important;
  background: var(--muted-bg) !important;
  color: var(--text-secondary) !important;
  padding: .34rem .58rem !important;
  font-size: .72rem !important;
  font-weight: 800 !important;
  box-shadow: none !important;
}

.ta-public-shell .ta-filter-btn.active,
.ta-public-shell .page-item.active .page-link {
  border-color: rgba(255, 106, 0, .38) !important;
  background: rgba(255, 106, 0, .13) !important;
  color: var(--text-primary) !important;
}

.ta-public-shell .btn {
  min-height: 2.65rem !important;
  padding: .62rem 1rem !important;
}

.ta-public-shell .btn-primary,
.ta-public-shell .ta-primary-action,
.ta-public-shell .candidate-register-primary,
.ta-public-shell .candidate-password-primary,
.ta-public-shell .btn-acosa-primary {
  color: #fff !important;
}

.ta-public-shell .btn-outline-light,
.ta-public-shell .btn-outline-secondary,
.ta-public-shell .btn-outline-dark,
.ta-public-shell .btn-acosa-light,
.ta-public-shell .btn-acosa-dark {
  border-color: var(--border) !important;
  background: var(--muted-bg) !important;
  color: var(--text-primary) !important;
}

.ta-public-shell .ta-navbar {
  min-height: 64px !important;
  border-bottom: 1px solid var(--border) !important;
  background: rgba(6, 9, 19, .84) !important;
}

html[data-theme="light"] .ta-public-shell .ta-navbar {
  background: rgba(255, 255, 255, .86) !important;
}

.ta-public-shell.ta-public-nav-scrolled .ta-navbar {
  min-height: 58px !important;
}

.ta-public-shell .ta-footer {
  border-top: 1px solid var(--border) !important;
  background:
    radial-gradient(circle at 15% 0%, var(--glow), transparent 20rem),
    var(--page-bg) !important;
  color: var(--text-primary) !important;
}

.ta-public-shell .ta-footer-grid {
  padding-top: 2.25rem !important;
  padding-bottom: 2.25rem !important;
}

.ta-public-shell .ta-footer-bottom {
  border-top: 1px solid var(--border) !important;
  color: var(--text-secondary) !important;
}

.ta-public-shell .ta-modern-empty,
.ta-public-shell .ta-empty-state,
.ta-public-shell .empty-state {
  padding: clamp(1.35rem, 3vw, 2rem) !important;
  border-style: solid !important;
  text-align: center;
}

.ta-public-shell .ta-auth-side-panel {
  min-height: auto !important;
  border: 1px solid var(--border);
  border-radius: var(--premium-radius);
  background: var(--hero-bg) !important;
}

html[data-theme="light"] .ta-public-shell .ta-auth-side-panel,
html[data-theme="light"] .ta-public-shell .apply-choice-head,
html[data-theme="light"] .ta-public-shell .apply-gate-head,
html[data-theme="light"] .ta-public-shell .home-apply-head {
  background: var(--hero-bg) !important;
  color: var(--text-primary) !important;
}

html[data-theme="light"] .ta-public-shell .ta-auth-side-panel h1,
html[data-theme="light"] .ta-public-shell .ta-auth-side-panel h2,
html[data-theme="light"] .ta-public-shell .ta-auth-side-panel h3,
html[data-theme="light"] .ta-public-shell .ta-auth-side-panel p,
html[data-theme="light"] .ta-public-shell .ta-auth-side-panel .text-white-50 {
  color: var(--text-primary) !important;
}

.ta-public-shell .ta-news-card-img,
.ta-public-shell .ta-news-card-img-placeholder {
  height: 180px !important;
  background: var(--muted-bg) !important;
  color: var(--text-secondary) !important;
}

.ta-public-shell .ta-reaction-button,
.ta-public-shell .page-link,
.ta-public-shell .form-control,
.ta-public-shell .form-select {
  border-color: var(--border) !important;
  background: var(--card-bg) !important;
  color: var(--text-primary) !important;
}

html[data-theme="light"] .ta-public-shell .ta-reaction-button,
html[data-theme="light"] .ta-public-shell .page-link,
html[data-theme="light"] .ta-public-shell .form-control,
html[data-theme="light"] .ta-public-shell .form-select {
  background: #fff !important;
}

@media (max-width: 991.98px) {

  .ta-public-shell .ta-home-hero,
  .ta-public-shell .ta-public-hero,
  .ta-public-shell .country-hero,
  .ta-public-shell .ta-country-premium-hero,
  .ta-public-shell .ta-jobs-premium-hero,
  .ta-public-shell .ta-job-detail-hero,
  .ta-public-shell .ta-news-hero,
  .ta-public-shell .ta-page-hero {
    padding-top: clamp(2.25rem, 8vw, 3.5rem) !important;
    padding-bottom: clamp(2.25rem, 8vw, 3.5rem) !important;
  }

  .ta-public-shell .ta-home-hero h1,
  .ta-public-shell .ta-public-hero h1,
  .ta-public-shell .ta-country-premium-home .country-hero h1,
  .ta-public-shell .country-hero h1,
  .ta-public-shell .ta-jobs-premium-hero h1,
  .ta-public-shell .ta-job-detail-hero h1,
  .ta-public-shell .ta-news-hero .ta-page-title,
  .ta-public-shell .ta-page-hero h1 {
    font-size: clamp(2rem, 9vw, 3rem) !important;
  }
}

@media (max-width: 767.98px) {
  body.ta-public-shell {
    --premium-space-section: clamp(2.1rem, 8vw, 3rem);
    --premium-space-hero: clamp(2.4rem, 9vw, 3.2rem);
  }

  .ta-public-shell .ta-public-grid,
  .ta-public-shell .ta-region-grid,
  .ta-public-shell .ta-editorial-grid,
  .ta-public-shell .ta-culture-grid,
  .ta-public-shell .ta-kpi-grid,
  .ta-public-shell .ta-mini-grid {
    grid-template-columns: 1fr !important;
  }
}

/* ==================================
   Executive Dark Direction
   Talento ACOSA as a premium recruitment platform
================================== */

body.ta-public-shell,
html[data-theme="light"] body.ta-public-shell,
html[data-theme="dark"] body.ta-public-shell {
  --page-bg: #050505;
  --section-bg: #0a0a0f;
  --card-bg: #0e0e14;
  --text-primary: #f5f5f7;
  --text-secondary: #9a9aa5;
  --border: rgba(255, 255, 255, .06);
  --shadow: 0 18px 48px rgba(0, 0, 0, .34);
  --glow: rgba(255, 106, 0, .10);
  --hero-bg:
    radial-gradient(circle at 50% 18%, rgba(255, 106, 0, .10), transparent 20rem),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, .055), transparent 22rem),
    linear-gradient(180deg, #050505 0%, #08080d 52%, #050505 100%);
  --muted-bg: rgba(255, 255, 255, .035);
  --icon-bg: rgba(255, 106, 0, .075);
  --icon-border: rgba(255, 106, 0, .16);
  --ta-orange: #ff6a00;
  --ta-orange-2: #ff8c3a;
  --ta-green: #18c37e;
  --ta-red: #ff5a5a;
  --ta-bg: var(--page-bg);
  --ta-bg-2: var(--section-bg);
  --ta-bg-3: var(--page-bg);
  --ta-card: var(--card-bg);
  --ta-card-solid: var(--card-bg);
  --ta-text: var(--text-primary);
  --ta-heading: var(--text-primary);
  --ta-muted: var(--text-secondary);
  --ta-muted-2: #c9c9d2;
  --ta-line: var(--border);
  --ta-line-2: rgba(255, 255, 255, .09);
  --ta-shadow: var(--shadow);
  --ta-shadow-soft: 0 12px 34px rgba(0, 0, 0, .28);
  --premium-space-section: clamp(3.5rem, 6.2vw, 5.75rem);
  --premium-space-hero: clamp(5rem, 9vw, 7.5rem);
  background:
    radial-gradient(circle at var(--ta-cursor-x, 50%) var(--ta-cursor-y, 10%), rgba(255, 106, 0, .045), transparent 16rem),
    linear-gradient(180deg, #050505, #08080d 48%, #050505) !important;
  color: var(--text-primary) !important;
  font-family: Inter, "SF Pro Display", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
}

.ta-public-shell .ta-page-loader {
  background: #050505 !important;
}

.ta-public-shell .ta-navbar,
html[data-theme="light"] .ta-public-shell .ta-navbar {
  min-height: 68px !important;
  border-bottom: 1px solid rgba(255, 255, 255, .07) !important;
  background: rgba(5, 5, 5, .78) !important;
  box-shadow: none !important;
  backdrop-filter: blur(18px) saturate(140%);
}

.ta-public-shell.ta-public-nav-scrolled .ta-navbar,
html[data-theme="light"] .ta-public-shell.ta-public-nav-scrolled .ta-navbar {
  min-height: 62px !important;
  background: rgba(5, 5, 5, .9) !important;
  box-shadow: 0 12px 34px rgba(0, 0, 0, .28) !important;
}

.ta-public-shell .navbar-brand {
  color: #f5f5f7 !important;
  font-size: .95rem !important;
  font-weight: 850 !important;
}

.ta-public-shell .navbar-brand::before {
  width: 1.85rem;
  height: 1.85rem;
  border-color: rgba(255, 106, 0, .32);
  background: #0e0e14;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .035);
}

.ta-public-shell .ta-nav-menu {
  flex-wrap: nowrap !important;
  gap: .12rem !important;
  padding: .28rem;
  border: 1px solid rgba(255, 255, 255, .055);
  border-radius: 999px;
  background: rgba(255, 255, 255, .025);
}

.ta-public-shell .ta-nav-menu>.nav-item {
  flex: 0 0 auto;
}

.ta-public-shell .ta-navbar .nav-link,
.ta-public-shell .ta-navbar .dropdown-toggle {
  min-height: 2rem !important;
  padding: .42rem .64rem !important;
  color: rgba(245, 245, 247, .68) !important;
  font-size: .8rem !important;
  font-weight: 650 !important;
  letter-spacing: 0 !important;
}

.ta-public-shell .ta-navbar .nav-link:hover,
.ta-public-shell .ta-navbar .nav-link:focus,
.ta-public-shell .ta-navbar .nav-link.active,
.ta-public-shell .ta-navbar .nav-link.show {
  color: #f5f5f7 !important;
  background: rgba(255, 255, 255, .055) !important;
}

.ta-public-shell .ta-nav-actions {
  margin-left: clamp(.65rem, 1.4vw, 1.25rem) !important;
}

.ta-public-shell .ta-icon-nav {
  width: 2.25rem !important;
  height: 2.25rem !important;
  padding: 0 !important;
  justify-content: center !important;
  border: 1px solid rgba(255, 255, 255, .07);
  background: rgba(255, 255, 255, .025);
}

.ta-public-shell .ta-header-cta {
  min-height: 2.35rem !important;
  padding: .56rem .82rem !important;
  border: 1px solid rgba(255, 106, 0, .32) !important;
  background: linear-gradient(180deg, #ff7a1a, #ff6a00) !important;
  color: #fff !important;
  font-size: .78rem;
  box-shadow: 0 12px 26px rgba(255, 106, 0, .18) !important;
}

.ta-public-shell .ta-rh-btn,
.ta-public-shell .ta-login-link {
  border: 0 !important;
  background: transparent !important;
  color: rgba(245, 245, 247, .76) !important;
  box-shadow: none !important;
}

.ta-public-shell .ta-theme-toggle,
.ta-public-shell .ta-country-btn {
  display: none !important;
}

.ta-public-shell .ta-home-hero,
.ta-public-shell .ta-public-hero,
.ta-public-shell .country-hero,
.ta-public-shell .ta-country-premium-hero,
.ta-public-shell .ta-jobs-premium-hero,
.ta-public-shell .ta-job-detail-hero,
.ta-public-shell .ta-news-hero,
.ta-public-shell .ta-page-hero {
  background: var(--hero-bg) !important;
  padding-top: var(--premium-space-hero) !important;
  padding-bottom: var(--premium-space-hero) !important;
  text-align: center;
}

.ta-public-shell .ta-home-hero::before,
.ta-public-shell .ta-public-hero::before,
.ta-public-shell .country-hero::before,
.ta-public-shell .ta-jobs-premium-hero::before,
.ta-public-shell .ta-job-detail-hero::before,
.ta-public-shell .ta-news-hero::before {
  opacity: .16 !important;
  background-size: 120px 120px !important;
}

.ta-public-shell .ta-home-hero h1,
.ta-public-shell .ta-public-hero h1,
.ta-public-shell .ta-country-premium-home .country-hero h1,
.ta-public-shell .country-hero h1,
.ta-public-shell .ta-jobs-premium-hero h1,
.ta-public-shell .ta-job-detail-hero h1,
.ta-public-shell .ta-news-hero .ta-page-title,
.ta-public-shell .ta-page-hero h1 {
  max-width: 920px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  color: #f5f5f7 !important;
  font-size: clamp(3.15rem, 7vw, 6.6rem) !important;
  font-weight: 900 !important;
  line-height: .96 !important;
  letter-spacing: -.04em !important;
}

.ta-public-shell .ta-home-hero h1 span {
  color: #ff6a00 !important;
  text-shadow: none !important;
}

.ta-public-shell .ta-home-hero p,
.ta-public-shell .ta-public-hero p,
.ta-public-shell .country-hero p,
.ta-public-shell .ta-jobs-premium-hero p,
.ta-public-shell .ta-job-detail-hero p,
.ta-public-shell .ta-news-hero .ta-page-subtitle,
.ta-public-shell .ta-page-hero p {
  max-width: 710px !important;
  margin-left: auto !important;
  margin-right: auto !important;
  color: #9a9aa5 !important;
  font-size: clamp(1rem, 1.5vw, 1.14rem) !important;
  line-height: 1.75 !important;
}

.ta-public-shell .ta-public-eyebrow,
.ta-public-shell .section-label,
.ta-public-shell .country-kicker {
  border-color: rgba(255, 255, 255, .08) !important;
  background: rgba(255, 255, 255, .035) !important;
  color: #d7d7de !important;
  font-size: .67rem !important;
  font-weight: 700 !important;
  letter-spacing: .08em !important;
}

.ta-public-shell .ta-public-eyebrow::before {
  width: .34rem;
  height: .34rem;
  background: #ff6a00;
  box-shadow: 0 0 14px rgba(255, 106, 0, .36);
}

.ta-public-shell .ta-hero-search,
.ta-public-shell .ta-search-panel {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
  border: 1px solid rgba(255, 255, 255, .075) !important;
  background: rgba(14, 14, 20, .86) !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .28) !important;
  backdrop-filter: none !important;
}

.ta-public-shell .ta-hero-search input,
.ta-public-shell .ta-hero-search .form-control,
.ta-public-shell .form-control,
.ta-public-shell .form-select {
  border-color: rgba(255, 255, 255, .08) !important;
  background: #0a0a0f !important;
  color: #f5f5f7 !important;
}

.ta-public-shell .form-control:focus,
.ta-public-shell .form-select:focus {
  border-color: rgba(255, 106, 0, .42) !important;
  box-shadow: 0 0 0 3px rgba(255, 106, 0, .10) !important;
}

.ta-public-shell .ta-kpi-band {
  border-top: 1px solid rgba(255, 255, 255, .055);
  border-bottom: 1px solid rgba(255, 255, 255, .055);
  background: #0a0a0f !important;
}

.ta-public-shell .ta-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0 !important;
}

.ta-public-shell .ta-kpi-card {
  border: 0 !important;
  border-right: 1px solid rgba(255, 255, 255, .06) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  text-align: center;
}

.ta-public-shell .ta-kpi-card:last-child {
  border-right: 0 !important;
}

.ta-public-shell .ta-kpi-card strong {
  font-size: clamp(2rem, 4vw, 3.4rem);
  letter-spacing: -.04em;
}

.ta-public-shell .ta-public-section,
.ta-public-shell .portal-section,
.ta-public-shell .is-white,
.ta-public-shell .is-soft,
.ta-public-shell .bg-light,
.ta-public-shell .bg-white,
.ta-public-shell .ta-auth-page,
.ta-public-shell .ta-profile-page {
  background: #050505 !important;
}

.ta-public-shell .ta-public-card,
.ta-public-shell .ta-job-card,
.ta-public-shell .ta-news-card,
.ta-public-shell .ta-premium-card,
.ta-public-shell .benefit-card,
.ta-public-shell .step-card,
.ta-public-shell .ta-detail-card,
.ta-public-shell .ta-news-article-card,
.ta-public-shell .ta-auth-card,
.ta-public-shell .candidate-register-card,
.ta-public-shell .candidate-password-card,
.ta-public-shell .ta-empty-state,
.ta-public-shell .empty-state,
.ta-public-shell .ta-command-panel,
.ta-public-shell .ta-region-card,
.ta-public-shell .ta-editorial-card,
.ta-public-shell .ta-culture-shell,
.ta-public-shell .ta-footer-brand-col,
.ta-public-shell .ta-footer-link-col,
.ta-public-shell .ta-footer-cta-col,
.ta-public-shell .ta-comment-card,
.ta-public-shell .ta-comment-login-card,
.ta-public-shell .ta-comment-form-card,
.ta-public-shell .card,
.ta-public-shell .section-card {
  border: 1px solid rgba(255, 255, 255, .06) !important;
  background: #0e0e14 !important;
  box-shadow: 0 16px 44px rgba(0, 0, 0, .28) !important;
}

.ta-public-shell .ta-job-card:hover,
.ta-public-shell .ta-news-card:hover,
.ta-public-shell .ta-premium-card:hover,
.ta-public-shell .ta-public-card:hover,
.ta-public-shell .ta-region-card:hover,
.ta-public-shell .ta-editorial-card:hover {
  transform: translateY(-3px);
  border-color: rgba(255, 106, 0, .24) !important;
  box-shadow: 0 22px 58px rgba(0, 0, 0, .36), 0 0 0 1px rgba(255, 106, 0, .06) !important;
}

.ta-public-shell .ta-public-card-body,
.ta-public-shell .ta-job-body,
.ta-public-shell .ta-news-card-body {
  padding: clamp(1.25rem, 2.7vw, 1.75rem) !important;
}

.ta-public-shell .ta-job-title,
.ta-public-shell .ta-news-card-title,
.ta-public-shell .ta-news-card-title a {
  color: #f5f5f7 !important;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  letter-spacing: -.02em !important;
}

.ta-public-shell .ta-job-excerpt,
.ta-public-shell .ta-news-card-excerpt,
.ta-public-shell .ta-detail-card div,
.ta-public-shell .ta-detail-card p,
.ta-public-shell .ta-summary-list strong,
.ta-public-shell .ta-summary-list span {
  color: #9a9aa5 !important;
}

.ta-public-shell .ta-job-badge,
.ta-public-shell .ta-news-country-badge,
.ta-public-shell .ta-news-internal-badge,
.ta-public-shell .badge,
.ta-public-shell .ta-filter-btn,
.ta-public-shell .ta-country-focus-pills span,
.ta-public-shell .ta-hero-pills a,
.ta-public-shell .ta-job-meta-grid span {
  border-color: rgba(255, 255, 255, .065) !important;
  background: rgba(255, 255, 255, .035) !important;
  color: #b8b8c2 !important;
}

.ta-public-shell .ta-salary,
.ta-public-shell .ta-job-company,
.ta-public-shell .ta-news-read-more {
  color: #ff8c3a !important;
}

.ta-public-shell .btn-primary,
.ta-public-shell .ta-primary-action,
.ta-public-shell .candidate-register-primary,
.ta-public-shell .candidate-password-primary,
.ta-public-shell .btn-acosa-primary {
  border: 1px solid rgba(255, 106, 0, .24) !important;
  background: linear-gradient(180deg, #ff7a1a, #ff6a00) !important;
  color: #fff !important;
  box-shadow: 0 14px 34px rgba(255, 106, 0, .18) !important;
}

.ta-public-shell .btn-outline-light,
.ta-public-shell .btn-outline-secondary,
.ta-public-shell .btn-outline-dark,
.ta-public-shell .btn-acosa-light,
.ta-public-shell .btn-acosa-dark {
  border-color: rgba(255, 255, 255, .09) !important;
  background: transparent !important;
  color: #f5f5f7 !important;
}

.ta-public-shell .premium-icon,
.ta-public-shell .icon-badge,
.ta-public-shell .ta-public-card-icon,
.ta-public-shell .ta-kpi-icon,
.ta-public-shell .benefit-icon,
.ta-public-shell .home-apply-icon,
.ta-public-shell .ta-benefit-mark,
.ta-public-shell .ta-trust-icon,
.ta-public-shell .ta-auto-icon,
.ta-public-shell .ta-empty-icon,
.ta-public-shell .ta-country-flag,
.ta-public-shell .ta-region-card span,
.ta-public-shell .ta-editorial-card span,
.ta-public-shell .ta-auth-proof strong,
.ta-public-shell .ta-reaction-icon,
.ta-public-shell .ta-card-actions button {
  border-color: rgba(255, 255, 255, .07) !important;
  background: rgba(255, 255, 255, .035) !important;
  color: #ff8c3a !important;
}

.ta-public-shell .ta-job-detail-hero {
  text-align: left;
}

.ta-public-shell .ta-job-detail-hero h1,
.ta-public-shell .ta-job-detail-hero p {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.ta-public-shell .ta-apply-sticky-card {
  top: 86px !important;
}

.ta-public-shell .apply-choice-modal .modal-content,
.ta-public-shell .apply-gate-card {
  border: 1px solid rgba(255, 255, 255, .08) !important;
  border-radius: 8px !important;
  background: #0e0e14 !important;
  box-shadow: 0 28px 80px rgba(0, 0, 0, .46) !important;
}

.ta-public-shell .apply-choice-head,
.ta-public-shell .apply-gate-head,
.ta-public-shell .home-apply-head {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 106, 0, .12), transparent 16rem),
    #0a0a0f !important;
  color: #f5f5f7 !important;
}

.ta-public-shell .apply-choice-option,
.ta-public-shell .home-apply-option {
  border-color: rgba(255, 255, 255, .07) !important;
  background: #0a0a0f !important;
  color: #f5f5f7 !important;
}

.ta-public-shell .ta-auth-side-panel {
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 106, 0, .11), transparent 18rem),
    #0a0a0f !important;
}

.ta-public-shell .ta-auth-card,
.ta-public-shell .candidate-register-card,
.ta-public-shell .candidate-password-card {
  max-width: 640px;
}

.ta-public-shell .ta-footer {
  border-top: 1px solid rgba(255, 255, 255, .06) !important;
  background: #050505 !important;
}

.ta-public-shell .ta-footer-brand-col,
.ta-public-shell .ta-footer-link-col,
.ta-public-shell .ta-footer-cta-col {
  background: transparent !important;
  box-shadow: none !important;
}

.ta-public-shell .ta-footer-title,
.ta-public-shell .ta-footer-subtitle {
  color: #f5f5f7 !important;
}

.ta-public-shell .ta-footer-text,
.ta-public-shell .ta-footer-bottom,
.ta-public-shell .ta-footer-links a {
  color: #8d8d98 !important;
}

@media (max-width: 991.98px) {
  .ta-public-shell .ta-nav-menu {
    border-radius: 8px;
    background: transparent;
    border: 0;
    padding: 0;
    flex-wrap: wrap !important;
  }

  .ta-public-shell .ta-home-hero h1,
  .ta-public-shell .ta-public-hero h1,
  .ta-public-shell .country-hero h1,
  .ta-public-shell .ta-jobs-premium-hero h1,
  .ta-public-shell .ta-job-detail-hero h1,
  .ta-public-shell .ta-news-hero .ta-page-title,
  .ta-public-shell .ta-page-hero h1 {
    font-size: clamp(2.45rem, 12vw, 4rem) !important;
  }

  .ta-public-shell .ta-kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767.98px) {

  body.ta-public-shell,
  html[data-theme="light"] body.ta-public-shell,
  html[data-theme="dark"] body.ta-public-shell {
    --premium-space-hero: clamp(4rem, 18vw, 5.2rem);
  }

  .ta-public-shell .ta-kpi-grid {
    grid-template-columns: 1fr;
  }

  .ta-public-shell .ta-kpi-card {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, .06) !important;
  }
}

/* ==================================
   Final public polish: contact link, light mode, compact titles
================================== */

html[data-theme="light"] body.ta-public-shell {
  --page-bg: #f7f8fb;
  --section-bg: #ffffff;
  --card-bg: #ffffff;
  --text-primary: #111318;
  --text-secondary: #5f6470;
  --border: rgba(17, 19, 24, .10);
  --shadow: 0 18px 44px rgba(17, 24, 39, .08);
  --glow: rgba(255, 106, 0, .10);
  --hero-bg:
    radial-gradient(circle at 50% 12%, rgba(255, 106, 0, .12), transparent 18rem),
    linear-gradient(180deg, #ffffff 0%, #f7f8fb 100%);
  --muted-bg: rgba(17, 19, 24, .045);
  --icon-bg: rgba(255, 106, 0, .08);
  --icon-border: rgba(255, 106, 0, .20);
  --ta-bg: var(--page-bg);
  --ta-bg-2: var(--section-bg);
  --ta-bg-3: #f1f3f7;
  --ta-card: var(--card-bg);
  --ta-card-solid: var(--card-bg);
  --ta-text: var(--text-primary);
  --ta-heading: var(--text-primary);
  --ta-muted: var(--text-secondary);
  --ta-muted-2: #3f4652;
  --ta-line: var(--border);
  --ta-line-2: rgba(17, 19, 24, .13);
  --ta-shadow: var(--shadow);
  --ta-shadow-soft: 0 12px 30px rgba(17, 24, 39, .07);
  background:
    radial-gradient(circle at var(--ta-cursor-x, 50%) var(--ta-cursor-y, 10%), rgba(255, 106, 0, .055), transparent 15rem),
    linear-gradient(180deg, #ffffff, #f7f8fb 42%, #ffffff) !important;
  color: var(--text-primary) !important;
}

body.ta-public-shell,
html[data-theme="light"] body.ta-public-shell,
html[data-theme="dark"] body.ta-public-shell {
  --premium-space-hero: clamp(3.5rem, 7vw, 5.6rem);
}

.ta-public-shell .ta-home-hero h1,
.ta-public-shell .ta-public-hero h1,
.ta-public-shell .country-hero h1,
.ta-public-shell .ta-jobs-premium-hero h1,
.ta-public-shell .ta-job-detail-hero h1,
.ta-public-shell .ta-news-hero .ta-page-title,
.ta-public-shell .ta-page-hero h1 {
  max-width: 840px !important;
  color: var(--text-primary) !important;
  font-size: clamp(2.15rem, 4.7vw, 4.15rem) !important;
  line-height: 1.02 !important;
  letter-spacing: -.025em !important;
}

.ta-public-shell .ta-home-hero h1 {
  font-size: clamp(2.35rem, 5.2vw, 4.75rem) !important;
}

.ta-public-shell .ta-home-hero p,
.ta-public-shell .ta-public-hero p,
.ta-public-shell .country-hero p,
.ta-public-shell .ta-jobs-premium-hero p,
.ta-public-shell .ta-job-detail-hero p,
.ta-public-shell .ta-news-hero .ta-page-subtitle,
.ta-public-shell .ta-page-hero p {
  color: var(--text-secondary) !important;
  font-size: clamp(.96rem, 1.25vw, 1.08rem) !important;
  line-height: 1.65 !important;
}

html[data-theme="light"] .ta-public-shell .ta-page-loader {
  background: #ffffff !important;
}

html[data-theme="light"] .ta-public-shell .ta-navbar {
  border-bottom-color: rgba(17, 19, 24, .08) !important;
  background: rgba(255, 255, 255, .82) !important;
  box-shadow: none !important;
}

html[data-theme="light"] .ta-public-shell.ta-public-nav-scrolled .ta-navbar {
  background: rgba(255, 255, 255, .94) !important;
  box-shadow: 0 12px 34px rgba(17, 24, 39, .08) !important;
}

html[data-theme="light"] .ta-public-shell .navbar-brand {
  color: var(--text-primary) !important;
}

html[data-theme="light"] .ta-public-shell .navbar-brand::before {
  border-color: rgba(255, 106, 0, .26);
  background: #ffffff;
  box-shadow: inset 0 0 0 1px rgba(17, 19, 24, .06);
}

html[data-theme="light"] .ta-public-shell .ta-nav-menu {
  border-color: rgba(17, 19, 24, .08);
  background: rgba(17, 19, 24, .035);
}

html[data-theme="light"] .ta-public-shell .ta-navbar .nav-link,
html[data-theme="light"] .ta-public-shell .ta-navbar .dropdown-toggle {
  color: rgba(17, 19, 24, .68) !important;
}

html[data-theme="light"] .ta-public-shell .ta-navbar .nav-link:hover,
html[data-theme="light"] .ta-public-shell .ta-navbar .nav-link:focus,
html[data-theme="light"] .ta-public-shell .ta-navbar .nav-link.active,
html[data-theme="light"] .ta-public-shell .ta-navbar .nav-link.show {
  color: var(--text-primary) !important;
  background: rgba(17, 19, 24, .06) !important;
}

html[data-theme="light"] .ta-public-shell .ta-rh-btn,
html[data-theme="light"] .ta-public-shell .ta-login-link {
  color: rgba(17, 19, 24, .72) !important;
}

html[data-theme="light"] .ta-public-shell .ta-home-hero,
html[data-theme="light"] .ta-public-shell .ta-public-hero,
html[data-theme="light"] .ta-public-shell .country-hero,
html[data-theme="light"] .ta-public-shell .ta-country-premium-hero,
html[data-theme="light"] .ta-public-shell .ta-jobs-premium-hero,
html[data-theme="light"] .ta-public-shell .ta-job-detail-hero,
html[data-theme="light"] .ta-public-shell .ta-news-hero,
html[data-theme="light"] .ta-public-shell .ta-page-hero {
  background: var(--hero-bg) !important;
}

html[data-theme="light"] .ta-public-shell .ta-home-hero h1,
html[data-theme="light"] .ta-public-shell .ta-public-hero h1,
html[data-theme="light"] .ta-public-shell .country-hero h1,
html[data-theme="light"] .ta-public-shell .ta-jobs-premium-hero h1,
html[data-theme="light"] .ta-public-shell .ta-job-detail-hero h1,
html[data-theme="light"] .ta-public-shell .ta-news-hero .ta-page-title,
html[data-theme="light"] .ta-public-shell .ta-page-hero h1,
html[data-theme="light"] .ta-public-shell .ta-section-heading h2,
html[data-theme="light"] .ta-public-shell h2,
html[data-theme="light"] .ta-public-shell h3,
html[data-theme="light"] .ta-public-shell h4,
html[data-theme="light"] .ta-public-shell .ta-job-title,
html[data-theme="light"] .ta-public-shell .ta-news-card-title,
html[data-theme="light"] .ta-public-shell .ta-news-card-title a {
  color: var(--text-primary) !important;
}

html[data-theme="light"] .ta-public-shell .ta-home-hero p,
html[data-theme="light"] .ta-public-shell .ta-public-hero p,
html[data-theme="light"] .ta-public-shell .country-hero p,
html[data-theme="light"] .ta-public-shell .ta-jobs-premium-hero p,
html[data-theme="light"] .ta-public-shell .ta-job-detail-hero p,
html[data-theme="light"] .ta-public-shell .ta-news-hero .ta-page-subtitle,
html[data-theme="light"] .ta-public-shell .ta-page-hero p,
html[data-theme="light"] .ta-public-shell .text-muted,
html[data-theme="light"] .ta-public-shell .ta-job-excerpt,
html[data-theme="light"] .ta-public-shell .ta-news-card-excerpt,
html[data-theme="light"] .ta-public-shell .ta-footer-text,
html[data-theme="light"] .ta-public-shell .ta-footer-bottom,
html[data-theme="light"] .ta-public-shell .ta-footer-links a {
  color: var(--text-secondary) !important;
}

html[data-theme="light"] .ta-public-shell .ta-public-section,
html[data-theme="light"] .ta-public-shell .portal-section,
html[data-theme="light"] .ta-public-shell .is-white,
html[data-theme="light"] .ta-public-shell .is-soft,
html[data-theme="light"] .ta-public-shell .bg-light,
html[data-theme="light"] .ta-public-shell .bg-white,
html[data-theme="light"] .ta-public-shell .ta-auth-page,
html[data-theme="light"] .ta-public-shell .ta-profile-page {
  background: var(--page-bg) !important;
}

html[data-theme="light"] .ta-public-shell .ta-kpi-band {
  border-color: rgba(17, 19, 24, .08) !important;
  background: #ffffff !important;
}

html[data-theme="light"] .ta-public-shell .ta-kpi-card {
  border-right-color: rgba(17, 19, 24, .08) !important;
}

html[data-theme="light"] .ta-public-shell .ta-public-card,
html[data-theme="light"] .ta-public-shell .ta-job-card,
html[data-theme="light"] .ta-public-shell .ta-news-card,
html[data-theme="light"] .ta-public-shell .ta-premium-card,
html[data-theme="light"] .ta-public-shell .benefit-card,
html[data-theme="light"] .ta-public-shell .step-card,
html[data-theme="light"] .ta-public-shell .ta-detail-card,
html[data-theme="light"] .ta-public-shell .ta-news-article-card,
html[data-theme="light"] .ta-public-shell .ta-auth-card,
html[data-theme="light"] .ta-public-shell .candidate-register-card,
html[data-theme="light"] .ta-public-shell .candidate-password-card,
html[data-theme="light"] .ta-public-shell .ta-empty-state,
html[data-theme="light"] .ta-public-shell .empty-state,
html[data-theme="light"] .ta-public-shell .ta-command-panel,
html[data-theme="light"] .ta-public-shell .ta-region-card,
html[data-theme="light"] .ta-public-shell .ta-editorial-card,
html[data-theme="light"] .ta-public-shell .ta-culture-shell,
html[data-theme="light"] .ta-public-shell .ta-comment-card,
html[data-theme="light"] .ta-public-shell .ta-comment-login-card,
html[data-theme="light"] .ta-public-shell .ta-comment-form-card,
html[data-theme="light"] .ta-public-shell .card,
html[data-theme="light"] .ta-public-shell .section-card {
  border-color: var(--border) !important;
  background: var(--card-bg) !important;
  box-shadow: var(--shadow) !important;
}

html[data-theme="light"] .ta-public-shell .ta-hero-search,
html[data-theme="light"] .ta-public-shell .ta-search-panel,
html[data-theme="light"] .ta-public-shell .form-control,
html[data-theme="light"] .ta-public-shell .form-select,
html[data-theme="light"] .ta-public-shell .ta-hero-search input,
html[data-theme="light"] .ta-public-shell .ta-hero-search .form-control {
  border-color: var(--border) !important;
  background: #ffffff !important;
  color: var(--text-primary) !important;
}

html[data-theme="light"] .ta-public-shell .ta-job-badge,
html[data-theme="light"] .ta-public-shell .ta-news-country-badge,
html[data-theme="light"] .ta-public-shell .ta-news-internal-badge,
html[data-theme="light"] .ta-public-shell .badge,
html[data-theme="light"] .ta-public-shell .ta-filter-btn,
html[data-theme="light"] .ta-public-shell .ta-country-focus-pills span,
html[data-theme="light"] .ta-public-shell .ta-hero-pills a,
html[data-theme="light"] .ta-public-shell .ta-job-meta-grid span,
html[data-theme="light"] .ta-public-shell .premium-icon,
html[data-theme="light"] .ta-public-shell .icon-badge,
html[data-theme="light"] .ta-public-shell .ta-public-card-icon,
html[data-theme="light"] .ta-public-shell .benefit-icon,
html[data-theme="light"] .ta-public-shell .home-apply-icon,
html[data-theme="light"] .ta-public-shell .ta-benefit-mark,
html[data-theme="light"] .ta-public-shell .ta-trust-icon,
html[data-theme="light"] .ta-public-shell .ta-auto-icon,
html[data-theme="light"] .ta-public-shell .ta-empty-icon,
html[data-theme="light"] .ta-public-shell .ta-country-flag,
html[data-theme="light"] .ta-public-shell .ta-region-card span,
html[data-theme="light"] .ta-public-shell .ta-editorial-card span,
html[data-theme="light"] .ta-public-shell .ta-auth-proof strong,
html[data-theme="light"] .ta-public-shell .ta-reaction-icon,
html[data-theme="light"] .ta-public-shell .ta-card-actions button {
  border-color: rgba(17, 19, 24, .09) !important;
  background: rgba(17, 19, 24, .045) !important;
  color: #c65300 !important;
}

html[data-theme="light"] .ta-public-shell .btn-outline-light,
html[data-theme="light"] .ta-public-shell .btn-outline-secondary,
html[data-theme="light"] .ta-public-shell .btn-outline-dark,
html[data-theme="light"] .ta-public-shell .btn-acosa-light,
html[data-theme="light"] .ta-public-shell .btn-acosa-dark {
  border-color: rgba(17, 19, 24, .14) !important;
  background: transparent !important;
  color: var(--text-primary) !important;
}

html[data-theme="light"] .ta-public-shell .ta-footer {
  border-top-color: rgba(17, 19, 24, .08) !important;
  background: #ffffff !important;
}

html[data-theme="light"] .ta-public-shell .ta-footer-title,
html[data-theme="light"] .ta-public-shell .ta-footer-subtitle {
  color: var(--text-primary) !important;
}

.ta-public-shell .ta-nav-menu>.nav-item:nth-child(9) {
  display: block !important;
}

.ta-public-shell .ta-theme-toggle {
  display: inline-flex !important;
}

.ta-public-shell .ta-home-hero h1,
.ta-public-shell .ta-public-hero h1,
.ta-public-shell .ta-country-premium-home .country-hero h1,
.ta-public-shell .country-hero h1,
.ta-public-shell .ta-jobs-premium-hero h1,
.ta-public-shell .ta-job-detail-hero h1,
.ta-public-shell .ta-news-hero .ta-page-title,
.ta-public-shell .ta-page-hero h1 {
  font-size: clamp(30px, 3vw, 46px) !important;
  line-height: 1.08 !important;
  letter-spacing: -.018em !important;
}

.ta-public-shell .ta-home-hero h1 {
  font-size: clamp(34px, 4vw, 54px) !important;
}

.ta-public-shell .ta-section-heading h2,
.ta-public-shell .ta-public-section h2,
.ta-public-shell .portal-section h2 {
  font-size: clamp(24px, 2.2vw, 34px) !important;
  line-height: 1.15 !important;
  letter-spacing: -.012em !important;
}

@media (max-width: 991.98px) {

  .ta-public-shell .ta-home-hero h1,
  .ta-public-shell .ta-public-hero h1,
  .ta-public-shell .country-hero h1,
  .ta-public-shell .ta-jobs-premium-hero h1,
  .ta-public-shell .ta-job-detail-hero h1,
  .ta-public-shell .ta-news-hero .ta-page-title,
  .ta-public-shell .ta-page-hero h1 {
    font-size: clamp(28px, 7vw, 40px) !important;
  }
}

/* ==================================
   First visit country selector
================================== */

body.ta-public-shell.ta-country-gate-locked {
  min-height: 100vh;
  overflow: hidden;
}

.ta-public-shell.ta-country-gate-locked .ta-navbar,
.ta-public-shell.ta-country-gate-locked .ta-page-loader {
  display: none !important;
}

.ta-public-shell .ta-country-gate {
  position: fixed !important;
  inset: 0 !important;
  z-index: 2000 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  padding: clamp(18px, 4vw, 40px) !important;
  background:
    radial-gradient(circle at 50% 28%, rgba(255, 106, 0, .12), transparent 20rem),
    rgba(0, 0, 0, .74) !important;
  color: #f5f5f7 !important;
  backdrop-filter: blur(10px) saturate(120%) !important;
}

.ta-public-shell .ta-country-gate-card.ta-country-gate-presence {
  width: min(920px, 100%) !important;
  max-height: min(88vh, 760px);
  overflow: auto;
  padding: clamp(24px, 4vw, 38px) !important;
  border: 1px solid rgba(255, 255, 255, .09) !important;
  border-radius: 18px !important;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 106, 0, .10), transparent 18rem),
    linear-gradient(180deg, #0e0e14, #09090d) !important;
  box-shadow: 0 34px 110px rgba(0, 0, 0, .62) !important;
}

.ta-public-shell .ta-country-gate-head {
  max-width: 620px;
  margin: 0 auto clamp(22px, 4vw, 34px);
  text-align: center;
}

.ta-public-shell .ta-country-gate-mark {
  display: none !important;
}

.ta-public-shell .ta-country-gate-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  padding: 7px 13px;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 999px;
  background: rgba(255, 255, 255, .035);
  color: #cfd3dc;
  font-size: 12px;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ta-public-shell .ta-country-gate-kicker::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: #ff6a00;
  box-shadow: 0 0 16px rgba(255, 106, 0, .55);
}

.ta-public-shell .ta-country-gate-title {
  margin: 0 auto 12px !important;
  max-width: 620px;
  color: #f5f5f7 !important;
  font-size: clamp(30px, 4vw, 46px) !important;
  font-weight: 900 !important;
  line-height: 1.06 !important;
  letter-spacing: -.025em !important;
}

.ta-public-shell .ta-country-gate-title span {
  color: #ff6a00;
}

.ta-public-shell .ta-country-gate-copy {
  max-width: 620px;
  margin: 0 auto;
  color: #a8adba !important;
  font-size: clamp(14px, 1.5vw, 16px) !important;
  line-height: 1.7;
}

.ta-public-shell .ta-country-gate-options {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  gap: clamp(12px, 2vw, 18px) !important;
}

.ta-public-shell .ta-country-gate-option {
  position: relative;
  min-height: 170px;
  overflow: hidden;
  display: flex !important;
  align-items: flex-end !important;
  padding: 20px !important;
  border: 1px solid rgba(255, 255, 255, .08) !important;
  border-radius: 14px !important;
  background: #0e0e14 !important;
  color: #fff !important;
  text-decoration: none !important;
  box-shadow: 0 16px 44px rgba(0, 0, 0, .30) !important;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.ta-public-shell .ta-country-gate-option:hover,
.ta-public-shell .ta-country-gate-option:focus {
  transform: translateY(-4px);
  border-color: rgba(255, 106, 0, .75) !important;
  box-shadow: 0 30px 82px rgba(0, 0, 0, .44), 0 0 0 1px rgba(255, 106, 0, .12) !important;
}

.ta-public-shell .ta-country-gate-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, .08), rgba(5, 5, 5, .22) 34%, rgba(5, 5, 5, .84) 100%),
    radial-gradient(circle at 78% 18%, rgba(255, 140, 58, .48), transparent 8rem),
    radial-gradient(circle at 20% 25%, rgba(255, 255, 255, .26), transparent 6rem),
    linear-gradient(135deg, #172236 0%, #101521 38%, #180d10 72%, #060607 100%);
}

.ta-public-shell .ta-country-gate-option:nth-child(2) .ta-country-gate-media {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, .10), rgba(5, 5, 5, .22) 34%, rgba(5, 5, 5, .84) 100%),
    radial-gradient(circle at 78% 18%, rgba(255, 106, 0, .34), transparent 8rem),
    linear-gradient(135deg, #0e1a2f 0%, #090d17 52%, #050505 100%);
}

.ta-public-shell .ta-country-gate-option:nth-child(3) .ta-country-gate-media {
  background:
    linear-gradient(180deg, rgba(5, 5, 5, .10), rgba(5, 5, 5, .24) 34%, rgba(5, 5, 5, .84) 100%),
    radial-gradient(circle at 76% 18%, rgba(255, 106, 0, .28), transparent 8rem),
    linear-gradient(135deg, #1b1424 0%, #090a12 48%, #050505 100%);
}

.ta-public-shell .ta-country-gate-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 62%;
  background:
    linear-gradient(90deg, transparent 4%, rgba(255, 255, 255, .16) 4% 10%, transparent 10% 14%, rgba(255, 255, 255, .10) 14% 22%, transparent 22% 28%, rgba(255, 255, 255, .18) 28% 36%, transparent 36% 42%, rgba(255, 255, 255, .11) 42% 48%, transparent 48% 55%, rgba(255, 255, 255, .14) 55% 62%, transparent 62% 70%, rgba(255, 255, 255, .09) 70% 78%, transparent 78%),
    linear-gradient(180deg, transparent, rgba(0, 0, 0, .55));
  clip-path: polygon(0 74%, 5% 74%, 5% 48%, 12% 48%, 12% 70%, 18% 70%, 18% 36%, 26% 36%, 26% 72%, 33% 72%, 33% 26%, 42% 26%, 42% 76%, 51% 76%, 51% 44%, 58% 44%, 58% 72%, 66% 72%, 66% 35%, 74% 35%, 74% 76%, 82% 76%, 82% 55%, 90% 55%, 90% 74%, 100% 74%, 100% 100%, 0 100%);
  opacity: .55;
}

.ta-public-shell .ta-country-gate-content {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 8px;
}

.ta-public-shell .ta-country-gate-code {
  color: rgba(255, 255, 255, .92);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 900;
  letter-spacing: -.02em;
}

.ta-public-shell .ta-country-gate-option strong {
  color: #ffffff !important;
  font-size: clamp(24px, 2.4vw, 32px) !important;
  line-height: 1;
  letter-spacing: -.025em;
}

.ta-public-shell .ta-country-gate-option small {
  color: rgba(255, 255, 255, .82) !important;
  font-size: 13px !important;
  font-weight: 750;
}

.ta-public-shell .ta-country-gate-accent {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 999px;
  background: rgba(255, 255, 255, .06);
}

.ta-public-shell .ta-country-gate-accent::before {
  content: "->";
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  font-weight: 800;
}

@media (max-width: 991.98px) {
  .ta-public-shell .ta-country-gate {
    align-items: flex-start !important;
    overflow-y: auto;
  }

  .ta-public-shell .ta-country-gate-options {
    grid-template-columns: 1fr !important;
  }

  .ta-public-shell .ta-country-gate-option {
    min-height: 142px;
  }
}

/* Talento ACOSA functional polish */
.ta-public-shell .ta-card-actions {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ta-public-shell .ta-card-actions button {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, .14);
  background: rgba(255, 255, 255, .08);
  color: var(--text-primary);
  transition: transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}

.ta-public-shell .ta-card-actions button:hover,
.ta-public-shell .ta-card-actions button:focus {
  transform: translateY(-1px);
  border-color: rgba(255, 81, 0, .6);
  color: var(--ta-orange);
}

.ta-public-shell .ta-card-actions button.is-saved {
  background: rgba(255, 81, 0, .16);
  border-color: rgba(255, 81, 0, .5);
  color: var(--ta-orange);
}

.ta-public-shell .ta-card-actions button.is-saved svg {
  fill: currentColor;
}

.ta-detail-actions {
  margin: 18px 0;
}

.ta-action-toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 1080;
  max-width: min(340px, calc(100vw - 36px));
  padding: 12px 16px;
  border-radius: 14px;
  border: 1px solid rgba(255, 81, 0, .28);
  background: rgba(10, 14, 22, .94);
  color: #fff;
  box-shadow: 0 18px 46px rgba(0, 0, 0, .28);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity .18s ease, transform .18s ease;
}

.ta-action-toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.ta-public-shell .ta-theme-icon-sun,
.ta-public-shell .ta-theme-icon-moon {
  opacity: .42;
}

html[data-theme="light"] .ta-public-shell .ta-theme-icon-sun,
html[data-theme="dark"] .ta-public-shell .ta-theme-icon-moon {
  opacity: 1;
  color: var(--ta-orange);
}

html[data-theme="dark"] .ta-public-shell .ta-theme-thumb {
  transform: translateX(1.7rem);
}

html[data-theme="light"] .ta-public-shell .ta-theme-thumb {
  transform: translateX(0);
}

html[data-theme="light"] .ta-public-shell .ta-public-cta-band,
html[data-theme="light"] .ta-public-shell .ta-footer-cta-col {
  background: linear-gradient(180deg, #ffffff 0%, #f7f4ef 100%);
  color: #111827;
  border: 1px solid rgba(17, 24, 39, .09);
  box-shadow: 0 18px 50px rgba(17, 24, 39, .08);
}

html[data-theme="light"] .ta-public-shell .ta-public-cta-band h2,
html[data-theme="light"] .ta-public-shell .ta-public-cta-band h3,
html[data-theme="light"] .ta-public-shell .ta-public-cta-band p,
html[data-theme="light"] .ta-public-shell .ta-footer-cta-col h2,
html[data-theme="light"] .ta-public-shell .ta-footer-cta-col h3,
html[data-theme="light"] .ta-public-shell .ta-footer-cta-col p {
  color: #111827;
}

html[data-theme="light"] .ta-public-shell .ta-card-actions button {
  background: #fff;
  color: #111827;
  border-color: rgba(17, 24, 39, .12);
}

html[data-theme="light"] .ta-public-shell .ta-card-actions button.is-saved {
  color: var(--ta-orange);
  background: rgba(255, 81, 0, .1);
  border-color: rgba(255, 81, 0, .35);
}

html[data-theme="light"] .ta-public-shell .ta-action-toast {
  background: #111827;
  color: #fff;
}

.ta-public-shell .ta-internal-account {
  min-height: calc(100vh - 5rem);
  padding: clamp(2rem, 4vw, 3.75rem) 0 5rem;
  background: var(--page-bg);
}

.ta-public-shell .ta-account-container {
  max-width: 1240px;
}

.ta-public-shell .ta-account-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 180px;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: linear-gradient(135deg, #12151d, #07162b);
  border: 1px solid rgba(255, 255, 255, .09);
  border-bottom: 3px solid var(--ta-orange);
  border-radius: 8px;
  box-shadow: 0 20px 48px rgba(0, 0, 0, .18);
}

.ta-public-shell .ta-account-identity {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-width: 0;
}

.ta-public-shell .ta-account-heading {
  min-width: 0;
}

.ta-public-shell .ta-account-eyebrow,
.ta-public-shell .ta-account-kicker {
  display: block;
  margin-bottom: .45rem;
  color: var(--ta-orange);
  font-size: .75rem;
  font-weight: 800;
}

.ta-public-shell .ta-account-heading h1 {
  margin: 0;
  color: #fff !important;
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  line-height: 1.15;
}

.ta-public-shell .ta-account-heading p {
  margin: .4rem 0 .75rem;
  color: rgba(255, 255, 255, .68) !important;
  overflow-wrap: anywhere;
}

.ta-public-shell .ta-account-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}

.ta-public-shell .ta-account-badges>span {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-height: 28px;
  padding: .25rem .65rem;
  color: rgba(255, 255, 255, .82);
  font-size: .75rem;
  font-weight: 700;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 999px;
}

.ta-public-shell .ta-account-status>span {
  width: 7px;
  height: 7px;
  background: #22c985;
  border-radius: 50%;
  box-shadow: 0 0 0 3px rgba(34, 201, 133, .13);
}

.ta-public-shell .ta-account-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: start;
  margin-top: 2rem;
}

.ta-public-shell .ta-account-sidebar {
  position: sticky;
  top: 6.25rem;
  padding-top: .25rem;
}

.ta-public-shell .ta-account-nav {
  display: grid;
  gap: .4rem;
}

.ta-public-shell .ta-account-nav a {
  display: grid;
  grid-template-columns: 24px 1fr;
  align-items: center;
  gap: .7rem;
  min-height: 58px;
  padding: .65rem .6rem;
  color: var(--text-secondary) !important;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  border-radius: 4px;
}

.ta-public-shell .ta-account-nav a:hover {
  color: var(--text-primary) !important;
  background: var(--muted-bg);
  border-bottom-color: var(--ta-orange);
}

.ta-public-shell .ta-account-nav a>span:first-child {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 24px !important;
  height: 24px !important;
  min-width: 24px !important;
  min-height: 24px !important;
  padding: 0 !important;
  color: var(--ta-orange);
  background: transparent;
  border: 0;
}

.ta-public-shell .ta-account-nav a>span:first-child .ta-bi-svg,
.ta-public-shell .ta-account-logout .ta-bi-svg,
.ta-public-shell .ta-account-primary .ta-bi-svg,
.ta-public-shell .ta-account-secondary .ta-bi-svg {
  fill: currentColor !important;
}

.ta-public-shell .ta-account-nav strong,
.ta-public-shell .ta-account-nav small {
  display: block;
}

.ta-public-shell .ta-account-nav strong {
  color: inherit;
  font-size: .9rem;
}

.ta-public-shell .ta-account-nav small {
  margin-top: .1rem;
  color: var(--text-secondary);
  font-size: .72rem;
}

.ta-public-shell .ta-account-details {
  display: grid;
  gap: 1rem;
  margin: 1.75rem .75rem 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.ta-public-shell .ta-account-details span,
.ta-public-shell .ta-account-details strong {
  display: block;
}

.ta-public-shell .ta-account-details span {
  margin-bottom: .25rem;
  color: var(--text-secondary);
  font-size: .72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.ta-public-shell .ta-account-details strong {
  color: var(--text-primary);
  font-size: .88rem;
  overflow-wrap: anywhere;
}

.ta-public-shell .ta-account-logout {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin: 1.75rem .75rem 0;
  color: var(--ta-red) !important;
  font-size: .85rem;
  font-weight: 700;
  text-decoration: none;
}

.ta-public-shell .ta-account-logout>span {
  display: inline-flex;
  width: 18px;
  height: 18px;
}

.ta-public-shell .ta-account-workspace {
  background: var(--card-bg);
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.ta-public-shell .ta-account-section {
  padding: clamp(1.5rem, 3vw, 2.75rem);
  scroll-margin-top: 6.5rem;
}

.ta-public-shell .ta-account-section-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.ta-public-shell .ta-account-section-heading h2 {
  margin: 0;
  color: var(--text-primary) !important;
  font-size: clamp(1.45rem, 2.5vw, 2rem);
}

.ta-public-shell .ta-account-section-heading p {
  margin: .45rem 0 0;
  color: var(--text-secondary) !important;
}

.ta-public-shell .ta-account-kicker-security {
  color: #0f9f6e;
}

.ta-public-shell .ta-account-divider {
  height: 1px;
  margin: 0 clamp(1.5rem, 3vw, 2.75rem);
  background: var(--border);
}

.ta-public-shell .ta-account-workspace .form-label {
  margin-bottom: .5rem;
  color: var(--text-primary);
  font-size: .82rem;
}

.ta-public-shell .ta-account-workspace .form-control,
.ta-public-shell .ta-account-workspace .form-select {
  min-height: 48px;
  padding: .7rem .85rem;
  background: var(--page-bg);
  color: var(--text-primary);
  border: 1px solid var(--border);
  border-radius: 6px !important;
}

.ta-public-shell .ta-account-workspace .form-control:focus,
.ta-public-shell .ta-account-workspace .form-select:focus {
  border-color: var(--ta-orange);
  box-shadow: 0 0 0 3px rgba(255, 106, 0, .12);
}

.ta-public-shell .ta-account-upload {
  display: grid;
  grid-template-columns: minmax(220px, .9fr) minmax(260px, 1.1fr);
  align-items: center;
  gap: 1.25rem;
  margin-top: .25rem;
  padding: 1rem;
  background: var(--muted-bg);
  border: 1px solid var(--border);
  border-radius: 6px;
}

.ta-public-shell .ta-account-upload-copy {
  display: flex;
  align-items: center;
  gap: .85rem;
}

.ta-public-shell .ta-account-upload-avatar {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  object-fit: cover;
  color: #fff;
  font-size: .9rem;
  font-weight: 850;
  background: #131827;
  border: 2px solid var(--ta-orange);
  border-radius: 50%;
}

.ta-public-shell .ta-account-upload-copy label,
.ta-public-shell .ta-account-upload-copy small {
  display: block;
  margin: 0;
}

.ta-public-shell .ta-account-upload-copy small {
  margin-top: .2rem;
  font-size: .72rem;
  line-height: 1.45;
}

.ta-public-shell .ta-account-upload input[type="file"] {
  width: 100%;
  min-width: 0;
  padding: .3rem !important;
  overflow: hidden;
}

.ta-public-shell .ta-account-upload input[type="file"]::file-selector-button {
  min-height: 38px;
  margin: 0 .75rem 0 0;
  padding: .45rem .8rem;
  color: var(--text-primary);
  font-size: .78rem;
  font-weight: 750;
  background: var(--muted-bg);
  border: 0;
  border-right: 1px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
}

.ta-public-shell .ta-account-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

.ta-public-shell .ta-account-primary,
.ta-public-shell .ta-account-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  min-height: 44px;
  padding: .65rem 1.15rem;
  font-size: .86rem;
  font-weight: 800;
  border-radius: 6px !important;
}

.ta-public-shell .ta-account-primary {
  color: #fff !important;
  background: var(--ta-orange) !important;
  border-color: var(--ta-orange) !important;
}

.ta-public-shell .ta-account-primary:hover {
  color: #fff !important;
  background: var(--ta-orange-2) !important;
  border-color: var(--ta-orange-2) !important;
  transform: translateY(-1px);
}

.ta-public-shell .ta-account-secondary {
  color: var(--text-primary) !important;
  background: var(--muted-bg) !important;
  border-color: var(--border) !important;
}

.ta-public-shell .ta-account-primary>span[data-ta-icon],
.ta-public-shell .ta-account-secondary>span[data-ta-icon] {
  display: inline-flex !important;
  width: 17px !important;
  height: 17px !important;
  min-width: 17px !important;
  min-height: 17px !important;
}

.ta-public-shell .ta-account-workspace .alert {
  border-radius: 6px !important;
}

.ta-public-shell .ta-internal-avatar {
  flex: 0 0 auto;
  width: 96px;
  height: 96px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--ta-orange);
  box-shadow: 0 0 0 6px rgba(255, 106, 0, .12);
}

.ta-public-shell .ta-internal-avatar-fallback {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: #131827;
  color: #fff;
  border: 3px solid var(--ta-orange);
  box-shadow: 0 0 0 6px rgba(255, 106, 0, .12);
  font-size: 2rem;
  font-weight: 900;
}

@media (max-width: 991.98px) {
  .ta-public-shell .ta-account-layout {
    grid-template-columns: 1fr;
  }

  .ta-public-shell .ta-account-sidebar {
    position: static;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 1rem;
    padding: 0;
  }

  .ta-public-shell .ta-account-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ta-public-shell .ta-account-details {
    display: none;
  }

  .ta-public-shell .ta-account-logout {
    align-self: center;
    margin: 0;
  }
}

@media (max-width: 767.98px) {
  .ta-public-shell .ta-internal-account {
    padding-top: 1rem;
  }

  .ta-public-shell .ta-account-header {
    align-items: flex-start;
    flex-direction: column;
    min-height: 0;
  }

  .ta-public-shell .ta-account-header>.ta-account-primary {
    width: 100%;
  }

  .ta-public-shell .ta-account-upload {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px) {
  .ta-public-shell .ta-account-identity {
    align-items: flex-start;
    gap: 1rem;
  }

  .ta-public-shell .ta-internal-avatar,
  .ta-public-shell .ta-internal-avatar-fallback {
    width: 68px;
    height: 68px;
    font-size: 1.5rem;
  }

  .ta-public-shell .ta-account-sidebar {
    grid-template-columns: 1fr;
  }

  .ta-public-shell .ta-account-nav a {
    grid-template-columns: 22px 1fr;
    gap: .55rem;
    padding: .55rem;
  }

  .ta-public-shell .ta-account-nav a>span:first-child {
    width: 22px !important;
    height: 22px !important;
    min-width: 22px !important;
    min-height: 22px !important;
  }

  .ta-public-shell .ta-account-nav {
    grid-template-columns: 1fr;
  }

  .ta-public-shell .ta-account-logout {
    margin-left: .75rem;
  }

  .ta-public-shell .ta-account-section-heading {
    margin-bottom: 1.5rem;
  }

}

html[data-theme="light"] .ta-public-shell .form-label {
  color: #111827;
}

.ta-public-shell .ta-public-card-icon,
.ta-public-shell .ta-kpi-icon,
.ta-public-shell .benefit-icon,
.ta-public-shell .home-apply-icon,
.ta-public-shell .apply-choice-icon,
.ta-public-shell .ta-auto-icon,
.ta-public-shell .ta-editorial-card span[data-ta-icon],
.ta-public-shell .ta-region-icon {
  position: relative !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  width: 3rem !important;
  height: 3rem !important;
  min-width: 3rem !important;
  min-height: 3rem !important;
  flex: 0 0 3rem !important;
  border-radius: 14px !important;
  border: 1px solid rgba(255, 106, 0, .5) !important;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, .18), transparent 36%),
    linear-gradient(145deg, rgba(255, 106, 0, .38), rgba(255, 106, 0, .08) 58%, rgba(6, 182, 212, .08)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 0 0 1px rgba(255, 122, 26, .08),
    0 14px 28px rgba(0, 0, 0, .32),
    0 10px 28px rgba(255, 106, 0, .12) !important;
  color: #ff7a1a !important;
  font-size: 0 !important;
}

.ta-public-shell .home-apply-icon,
.ta-public-shell .apply-choice-icon {
  width: 3.25rem !important;
  height: 3.25rem !important;
  min-width: 3.25rem !important;
  min-height: 3.25rem !important;
  flex-basis: 3.25rem !important;
}

.ta-public-shell .ta-public-card-icon .ta-bi-svg,
.ta-public-shell .ta-kpi-icon .ta-bi-svg,
.ta-public-shell .benefit-icon .ta-bi-svg,
.ta-public-shell .home-apply-icon .ta-bi-svg,
.ta-public-shell .apply-choice-icon .ta-bi-svg,
.ta-public-shell .ta-auto-icon .ta-bi-svg,
.ta-public-shell .ta-editorial-card span[data-ta-icon] .ta-bi-svg,
.ta-public-shell .ta-region-icon .ta-bi-svg {
  width: 1.35rem !important;
  height: 1.35rem !important;
  display: block !important;
  fill: currentColor !important;
  color: inherit !important;
}

.ta-public-shell .home-apply-icon .ta-bi-svg,
.ta-public-shell .apply-choice-icon .ta-bi-svg {
  width: 1.45rem !important;
  height: 1.45rem !important;
}

.ta-public-shell .ta-kpi-card .ta-kpi-icon {
  margin: 0 auto .65rem !important;
}

.ta-public-shell .ta-kpi-card .ta-kpi-icon+strong {
  display: block !important;
}

html[data-theme="light"] .ta-public-shell .ta-public-card-icon,
html[data-theme="light"] .ta-public-shell .ta-kpi-icon,
html[data-theme="light"] .ta-public-shell .benefit-icon,
html[data-theme="light"] .ta-public-shell .home-apply-icon,
html[data-theme="light"] .ta-public-shell .apply-choice-icon,
html[data-theme="light"] .ta-public-shell .ta-auto-icon,
html[data-theme="light"] .ta-public-shell .ta-editorial-card span[data-ta-icon],
html[data-theme="light"] .ta-public-shell .ta-region-icon {
  border-color: rgba(255, 106, 0, .22) !important;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, .8), transparent 34%),
    linear-gradient(145deg, rgba(255, 106, 0, .14), rgba(6, 182, 212, .08)) !important;
  box-shadow: 0 12px 24px rgba(15, 23, 42, .08) !important;
  color: #e65f00 !important;
}

@media (max-width: 991.98px) {
  html[data-theme="light"] .ta-public-shell .ta-navbar {
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid rgba(17, 24, 39, .08);
  }

  html[data-theme="light"] .ta-public-shell .navbar-collapse {
    background: #fff;
    border: 1px solid rgba(17, 24, 39, .08);
    box-shadow: 0 18px 42px rgba(17, 24, 39, .12);
  }

  html[data-theme="light"] .ta-public-shell .ta-nav-menu,
  html[data-theme="light"] .ta-public-shell .ta-navbar .nav-link,
  html[data-theme="light"] .ta-public-shell .ta-navbar .dropdown-toggle {
    color: #111827;
  }

  html[data-theme="light"] .ta-public-shell .navbar-toggler {
    color: #111827;
    border-color: rgba(17, 24, 39, .12);
  }
}

/* Keep the work-areas section balanced on the public home. */
.ta-public-shell .ta-editorial-layout {
  grid-template-columns: minmax(18rem, .78fr) minmax(0, 1.22fr) !important;
  align-items: start !important;
}

.ta-public-shell .ta-editorial-grid {
  grid-template-columns: repeat(2, minmax(13.5rem, 1fr)) !important;
  gap: 1rem !important;
}

.ta-public-shell .ta-editorial-card,
.ta-public-shell .ta-editorial-card:first-child {
  grid-row: auto !important;
  min-height: 12rem !important;
  height: auto !important;
  justify-content: flex-start !important;
  gap: 1rem !important;
  padding: clamp(1.1rem, 2vw, 1.35rem) !important;
}

.ta-public-shell .ta-editorial-card h3 {
  margin: .35rem 0 0 !important;
}

.ta-public-shell .ta-editorial-card p {
  margin: 0 !important;
}

/* Keep every recruitment step aligned as one visual sequence. */
.ta-public-shell .ta-growth-steps > [class*="col-"] {
  display: flex;
}

.ta-public-shell .ta-growth-steps .ta-editorial-card,
.ta-public-shell .ta-growth-steps .ta-editorial-card:first-child {
  width: 100%;
  height: 100% !important;
  min-height: 15.75rem !important;
}

.ta-public-shell .ta-growth-steps .ta-editorial-card h3 {
  min-height: 2.4em;
  display: flex;
  align-items: flex-start;
}

.ta-public-shell .ta-growth-steps .ta-editorial-card p {
  flex: 1;
}

.ta-public-shell .ta-talent-diverse-layout {
  display: block !important;
}

.ta-public-shell .ta-talent-diverse-layout .ta-section-heading {
  max-width: 48rem;
  margin: 0 auto 2rem;
  text-align: center;
}

.ta-public-shell .ta-talent-diverse-layout .ta-editorial-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
  align-items: stretch;
}

.ta-public-shell .ta-talent-diverse-layout .ta-editorial-card,
.ta-public-shell .ta-talent-diverse-layout .ta-editorial-card:first-child {
  width: 100%;
  height: 100% !important;
  min-height: 15rem !important;
}

@media (max-width: 991.98px) {
  .ta-public-shell .ta-editorial-layout {
    grid-template-columns: 1fr !important;
  }

  .ta-public-shell .ta-editorial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .ta-public-shell .ta-talent-diverse-layout .ta-editorial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 767.98px) {
  .ta-public-shell .ta-growth-steps .ta-editorial-card h3 {
    min-height: 0;
  }
}

@media (max-width: 575.98px) {
  .ta-public-shell .ta-editorial-grid {
    grid-template-columns: 1fr !important;
  }

  .ta-public-shell .ta-talent-diverse-layout .ta-editorial-grid {
    grid-template-columns: 1fr !important;
  }
}

/* Light mode icon badges: keep them airy, not dark-glow blocks. */
html[data-theme="light"] .ta-public-shell .ta-public-card .ta-public-card-body>.ta-public-card-icon[data-ta-icon],
html[data-theme="light"] .ta-public-shell .ta-public-card-icon,
html[data-theme="light"] .ta-public-shell .ta-kpi-icon,
html[data-theme="light"] .ta-public-shell .benefit-icon,
html[data-theme="light"] .ta-public-shell .home-apply-icon,
html[data-theme="light"] .ta-public-shell .apply-choice-icon,
html[data-theme="light"] .ta-public-shell .ta-auto-icon,
html[data-theme="light"] .ta-public-shell .ta-editorial-card span[data-ta-icon],
html[data-theme="light"] .ta-public-shell .ta-region-icon {
  border-color: rgba(255, 106, 0, .25) !important;
  background: linear-gradient(145deg, #fff7ed, #fffdf9) !important;
  box-shadow: 0 10px 22px rgba(15, 23, 42, .05) !important;
  color: #ff6a00 !important;
}

html[data-theme="light"] .ta-public-shell .ta-public-card .ta-public-card-body>.ta-public-card-icon[data-ta-icon] .ta-bi-svg,
html[data-theme="light"] .ta-public-shell .ta-public-card-icon .ta-bi-svg,
html[data-theme="light"] .ta-public-shell .ta-kpi-icon .ta-bi-svg,
html[data-theme="light"] .ta-public-shell .benefit-icon .ta-bi-svg,
html[data-theme="light"] .ta-public-shell .home-apply-icon .ta-bi-svg,
html[data-theme="light"] .ta-public-shell .apply-choice-icon .ta-bi-svg,
html[data-theme="light"] .ta-public-shell .ta-auto-icon .ta-bi-svg,
html[data-theme="light"] .ta-public-shell .ta-editorial-card span[data-ta-icon] .ta-bi-svg,
html[data-theme="light"] .ta-public-shell .ta-region-icon .ta-bi-svg {
  color: #ff6a00 !important;
  fill: currentColor !important;
}

/* ==========================================
   FIX GLOBAL DE ICONOS PARA MODO CLARO
   Colocar al FINAL del archivo CSS
========================================== */

html[data-theme="light"] .ta-public-shell .ta-kpi-card>.ta-kpi-icon[data-ta-icon],
html[data-theme="light"] .ta-public-shell .ta-region-card>.ta-region-icon[data-ta-icon],
html[data-theme="light"] .ta-public-shell .ta-public-card .ta-public-card-icon[data-ta-icon],
html[data-theme="light"] .ta-public-shell .ta-auto-icon,
html[data-theme="light"] .ta-public-shell .benefit-icon,
html[data-theme="light"] .ta-public-shell .home-apply-icon,
html[data-theme="light"] .ta-public-shell .ta-benefit-mark,
html[data-theme="light"] .ta-public-shell .ta-trust-icon {
  background:
    radial-gradient(circle at 28% 18%,
      rgba(255, 255, 255, .95),
      transparent 38%),
    linear-gradient(145deg,
      #ffffff 0%,
      #fff8f2 55%,
      #fff1e6 100%) !important;

  border: 1px solid rgba(255, 106, 0, .35) !important;

  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .95),
    0 8px 20px rgba(17, 24, 39, .08),
    0 0 18px rgba(255, 106, 0, .08) !important;

  color: #ff6a00 !important;
}

/* Asegurar que los SVG mantengan el naranja */
html[data-theme="light"] .ta-public-shell .ta-kpi-icon .ta-bi-svg,
html[data-theme="light"] .ta-public-shell .ta-region-icon .ta-bi-svg,
html[data-theme="light"] .ta-public-shell .ta-public-card-icon .ta-bi-svg {
  color: #ff6a00 !important;
  fill: currentColor !important;
}

/* Job cards: clean inline SVG badges and action buttons. */
.ta-public-shell .ta-job-card .ta-job-card-head {
  align-items: flex-start !important;
  gap: .75rem !important;
}

.ta-public-shell .ta-job-card .ta-job-card-head>.ta-job-badge {
  gap: .42rem !important;
  min-height: 2rem !important;
  padding: .4rem .72rem .4rem .58rem !important;
}

.ta-public-shell .ta-job-card .ta-job-card-head>.ta-job-badge span[data-ta-icon] {
  width: .95rem !important;
  height: .95rem !important;
  min-width: .95rem !important;
  min-height: .95rem !important;
  flex: 0 0 .95rem !important;
  color: var(--ta-orange) !important;
}

.ta-public-shell .ta-job-card .ta-job-card-head>.ta-job-badge .ta-bi-svg,
.ta-public-shell .ta-job-card .ta-card-actions button .ta-bi-svg {
  display: block !important;
  color: currentColor !important;
  fill: currentColor !important;
  stroke: none !important;
  stroke-width: 0 !important;
}

.ta-public-shell .ta-job-card .ta-job-card-head>.ta-job-badge .ta-bi-svg {
  width: .88rem !important;
  height: .88rem !important;
}

.ta-public-shell .ta-job-card .ta-card-actions {
  align-items: center !important;
  gap: .5rem !important;
  margin-left: auto;
}

.ta-public-shell .ta-job-card .ta-card-actions button {
  width: 2.4rem !important;
  height: 2.4rem !important;
  min-width: 2.4rem !important;
  min-height: 2.4rem !important;
  flex: 0 0 2.4rem !important;
  border-radius: 999px !important;
  border-color: rgba(255, 106, 0, .24) !important;
  background:
    linear-gradient(180deg, rgba(255, 106, 0, .12), rgba(255, 106, 0, .06)) !important;
  color: #ff8a3d !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 8px 18px rgba(0, 0, 0, .16) !important;
}

.ta-public-shell .ta-job-card .ta-card-actions button .ta-bi-svg {
  width: 1rem !important;
  height: 1rem !important;
}

.ta-public-shell .ta-job-card .ta-card-actions button:hover,
.ta-public-shell .ta-job-card .ta-card-actions button:focus {
  border-color: rgba(255, 106, 0, .55) !important;
  background:
    linear-gradient(180deg, rgba(255, 106, 0, .22), rgba(255, 106, 0, .12)) !important;
  color: #ff9a55 !important;
  transform: translateY(-1px) !important;
}

.ta-public-shell .ta-job-card .ta-card-actions button:hover .ta-bi-svg,
.ta-public-shell .ta-job-card .ta-card-actions button:focus .ta-bi-svg {
  transform: translateY(-1px) scale(1.04) !important;
}

.ta-public-shell .ta-job-card .ta-card-actions button.is-saved {
  border-color: transparent !important;
  background: linear-gradient(135deg, var(--ta-orange), #ff8a3d) !important;
  color: #ffffff !important;
}

html[data-theme="light"] .ta-public-shell .ta-job-card .ta-card-actions button {
  border-color: rgba(255, 106, 0, .24) !important;
  background: linear-gradient(180deg, #fff8f1, #ffffff) !important;
  color: #f97316 !important;
  box-shadow: 0 8px 18px rgba(17, 24, 39, .07) !important;
}

html[data-theme="light"] .ta-public-shell .ta-job-card .ta-card-actions button:hover,
html[data-theme="light"] .ta-public-shell .ta-job-card .ta-card-actions button:focus {
  border-color: rgba(255, 106, 0, .42) !important;
  background: linear-gradient(180deg, #fff1e6, #ffffff) !important;
}

html[data-theme="light"] .ta-public-shell .ta-job-card .ta-card-actions button.is-saved {
  background: linear-gradient(135deg, #ff6a00, #ff8a3d) !important;
  color: #ffffff !important;
}

/* Theme toggle: active thumb follows the current theme icon. */
html[data-theme="dark"] .ta-public-shell .ta-theme-toggle .ta-theme-thumb {
  left: 1.75rem !important;
  transform: none !important;
}

html[data-theme="light"] .ta-public-shell .ta-theme-toggle .ta-theme-thumb {
  left: .05rem !important;
  transform: none !important;
}

/* Country/home KPI and culture icons keep their badge container. */
.ta-public-shell .ta-kpi-card>.ta-kpi-icon[data-ta-icon],
.ta-public-shell .ta-kpi-card>.ta-auto-icon[data-ta-icon],
.ta-public-shell .ta-culture-grid>div>.ta-auto-icon[data-ta-icon] {
  width: 3rem !important;
  height: 3rem !important;
  min-width: 3rem !important;
  min-height: 3rem !important;
  display: inline-grid !important;
  place-items: center !important;
  margin: 0 0 .75rem !important;
  padding: 0 !important;
  border-radius: 14px !important;
  border: 1px solid rgba(255, 106, 0, .48) !important;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, .18), transparent 36%),
    linear-gradient(145deg, rgba(255, 106, 0, .38), rgba(255, 106, 0, .08) 58%, rgba(6, 182, 212, .08)) !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 12px 24px rgba(0, 0, 0, .24),
    0 10px 24px rgba(255, 106, 0, .10) !important;
  color: #ff7a1a !important;
  font-size: 0 !important;
}

.ta-public-shell .ta-kpi-card>.ta-kpi-icon[data-ta-icon] .ta-bi-svg,
.ta-public-shell .ta-kpi-card>.ta-auto-icon[data-ta-icon] .ta-bi-svg,
.ta-public-shell .ta-culture-grid>div>.ta-auto-icon[data-ta-icon] .ta-bi-svg {
  width: 1.35rem !important;
  height: 1.35rem !important;
  display: block !important;
  fill: currentColor !important;
  color: currentColor !important;
}

html[data-theme="light"] .ta-public-shell .ta-kpi-card>.ta-kpi-icon[data-ta-icon],
html[data-theme="light"] .ta-public-shell .ta-kpi-card>.ta-auto-icon[data-ta-icon],
html[data-theme="light"] .ta-public-shell .ta-culture-grid>div>.ta-auto-icon[data-ta-icon] {
  border-color: rgba(255, 106, 0, .35) !important;
  background: linear-gradient(145deg, #ffffff 0%, #fff8f2 55%, #fff1e6 100%) !important;
  box-shadow: 0 8px 20px rgba(17, 24, 39, .08), 0 0 18px rgba(255, 106, 0, .08) !important;
  color: #ff6a00 !important;
}

/* Light mode editorial labels need readable contrast. */
html[data-theme="light"] .ta-public-shell .ta-editorial-layout .ta-public-eyebrow {
  border-color: rgba(255, 106, 0, .22) !important;
  background: rgba(255, 106, 0, .08) !important;
  color: #9a3b00 !important;
}

html[data-theme="light"] .ta-public-shell .ta-editorial-card>span {
  width: fit-content !important;
  min-width: 0 !important;
  max-width: 100% !important;
  height: auto !important;
  min-height: 2.35rem !important;
  display: inline-flex !important;
  align-self: flex-start !important;
  align-items: center !important;
  justify-content: center !important;
  padding: .45rem .72rem !important;
  border: 1px solid rgba(255, 106, 0, .20) !important;
  background: linear-gradient(180deg, #fff7ef, #ffffff) !important;
  color: #c65300 !important;
  box-shadow: 0 8px 18px rgba(17, 24, 39, .05) !important;
}

/* Dark mode editorial labels need the same readable treatment. */
html[data-theme="dark"] .ta-public-shell .ta-editorial-layout .ta-public-eyebrow {
  border-color: rgba(255, 106, 0, .32) !important;
  background: rgba(255, 106, 0, .10) !important;
  color: #ffb27a !important;
}

html[data-theme="dark"] .ta-public-shell .ta-editorial-card>span {
  width: fit-content !important;
  min-width: 0 !important;
  max-width: 100% !important;
  height: auto !important;
  min-height: 2.35rem !important;
  display: inline-flex !important;
  align-self: flex-start !important;
  align-items: center !important;
  justify-content: center !important;
  padding: .45rem .72rem !important;
  border: 1px solid rgba(255, 106, 0, .28) !important;
  background: linear-gradient(180deg, rgba(255, 106, 0, .13), rgba(255, 255, 255, .035)) !important;
  color: #ff9a55 !important;
  box-shadow: 0 10px 22px rgba(0, 0, 0, .20) !important;
}

/* Community cards: clean metadata row without oversized auto icons. */
.ta-public-shell .ta-news-card .ta-news-card-meta {
  display: flex !important;
  align-items: center !important;
  gap: .65rem !important;
  margin-bottom: 1rem !important;
}

.ta-public-shell .ta-news-card .ta-news-card-meta .ta-auto-icon {
  display: none !important;
}

.ta-public-shell .ta-news-card .ta-news-country-badge {
  min-height: 2rem !important;
  padding: .42rem .72rem !important;
  border-color: rgba(255, 106, 0, .24) !important;
  background: rgba(255, 106, 0, .10) !important;
  color: #ff9a55 !important;
}

.ta-public-shell .ta-news-card .ta-news-date {
  margin-left: auto !important;
  color: var(--ta-muted-2) !important;
  font-size: .82rem !important;
  font-weight: 780 !important;
  white-space: nowrap !important;
}

html[data-theme="light"] .ta-public-shell .ta-news-card .ta-news-country-badge {
  border-color: rgba(255, 106, 0, .20) !important;
  background: #fff7ef !important;
  color: #c65300 !important;
}

/* Job detail actions: keep save/share SVG buttons polished. */
.ta-public-shell .ta-detail-actions {
  margin: 1.1rem 0 1.25rem !important;
}

.ta-public-shell .ta-detail-actions .ta-card-actions {
  display: inline-flex !important;
  align-items: center !important;
  gap: .55rem !important;
}

.ta-public-shell .ta-detail-actions .ta-card-actions button {
  width: 2.6rem !important;
  height: 2.6rem !important;
  min-width: 2.6rem !important;
  min-height: 2.6rem !important;
  flex: 0 0 2.6rem !important;
  display: inline-grid !important;
  place-items: center !important;
  padding: 0 !important;
  overflow: hidden !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255, 106, 0, .26) !important;
  background: linear-gradient(180deg, rgba(255, 106, 0, .13), rgba(255, 255, 255, .045)) !important;
  color: #ff9a55 !important;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, .08),
    0 10px 22px rgba(0, 0, 0, .18) !important;
}

.ta-public-shell .ta-detail-actions .ta-card-actions button span[data-ta-icon] {
  width: 1.05rem !important;
  height: 1.05rem !important;
  display: inline-grid !important;
  place-items: center !important;
  color: currentColor !important;
}

.ta-public-shell .ta-detail-actions .ta-card-actions button .ta-bi-svg {
  width: 1.05rem !important;
  height: 1.05rem !important;
  display: block !important;
  color: currentColor !important;
  fill: currentColor !important;
  stroke: none !important;
  stroke-width: 0 !important;
}

.ta-public-shell .ta-detail-actions .ta-card-actions button:hover,
.ta-public-shell .ta-detail-actions .ta-card-actions button:focus {
  border-color: rgba(255, 106, 0, .55) !important;
  background: linear-gradient(180deg, rgba(255, 106, 0, .22), rgba(255, 106, 0, .11)) !important;
  color: #ffffff !important;
  transform: translateY(-1px) !important;
}

.ta-public-shell .ta-detail-actions .ta-card-actions button.is-saved {
  border-color: transparent !important;
  background: linear-gradient(135deg, var(--ta-orange), #ff8a3d) !important;
  color: #ffffff !important;
}

html[data-theme="light"] .ta-public-shell .ta-detail-actions .ta-card-actions button {
  border-color: rgba(255, 106, 0, .24) !important;
  background: linear-gradient(180deg, #fff8f1, #ffffff) !important;
  color: #f97316 !important;
  box-shadow: 0 8px 18px rgba(17, 24, 39, .07) !important;
}

html[data-theme="light"] .ta-public-shell .ta-detail-actions .ta-card-actions button:hover,
html[data-theme="light"] .ta-public-shell .ta-detail-actions .ta-card-actions button:focus {
  border-color: rgba(255, 106, 0, .42) !important;
  background: linear-gradient(180deg, #fff1e6, #ffffff) !important;
  color: #c65300 !important;
}

html[data-theme="light"] .ta-public-shell .ta-detail-actions .ta-card-actions button.is-saved {
  background: linear-gradient(135deg, #ff6a00, #ff8a3d) !important;
  color: #ffffff !important;
}

/* Contact cards: keep email and phone readable in dark mode. */
html[data-theme="dark"] .ta-public-shell .ta-public-card .ta-contact-link {
  color: #ffb27a !important;
  font-weight: 850 !important;
}

html[data-theme="dark"] .ta-public-shell .ta-public-card .ta-contact-link:hover,
html[data-theme="dark"] .ta-public-shell .ta-public-card .ta-contact-link:focus {
  color: #ffffff !important;
  text-decoration: underline;
  text-underline-offset: .18rem;
}

html[data-theme="dark"] .ta-public-shell .ta-public-card .ta-contact-link[href^="tel:"] {
  color: #ffd0ad !important;
}

/* Auth side panel icons: avoid black SVGs in dark mode. */
html[data-theme="dark"] .ta-public-shell .ta-auth-proof strong[data-ta-icon] {
  border-color: rgba(255, 106, 0, .30) !important;
  background: linear-gradient(145deg, rgba(255, 106, 0, .18), rgba(255, 255, 255, .05)) !important;
  color: #ff9a55 !important;
}

html[data-theme="dark"] .ta-public-shell .ta-auth-proof strong[data-ta-icon] .ta-bi-svg {
  color: currentColor !important;
  fill: currentColor !important;
  stroke: none !important;
}

/* Country selector icons: keep SVGs visible and polished. */
.ta-public-shell .ta-dropdown-menu {
  min-width: 14.5rem !important;
}

.ta-public-shell .ta-country-option,
.ta-public-shell .ta-country-change {
  min-height: 2.7rem !important;
  display: flex !important;
  align-items: center !important;
  gap: .7rem !important;
  padding: .45rem .7rem !important;
}

.ta-public-shell .ta-country-flag,
.ta-public-shell .ta-country-change-icon {
  width: 2rem !important;
  height: 2rem !important;
  min-width: 2rem !important;
  min-height: 2rem !important;
  flex: 0 0 2rem !important;
  display: inline-grid !important;
  place-items: center !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255, 106, 0, .30) !important;
  background: linear-gradient(145deg, rgba(255, 106, 0, .18), rgba(255, 255, 255, .055)) !important;
  color: #ff9a55 !important;
}

.ta-public-shell .ta-country-flag .ta-bi-svg,
.ta-public-shell .ta-country-change-icon .ta-bi-svg {
  width: .95rem !important;
  height: .95rem !important;
  color: currentColor !important;
  fill: currentColor !important;
  stroke: none !important;
}

.ta-public-shell .ta-country-option.is-active .ta-country-flag,
.ta-public-shell .ta-country-option:hover .ta-country-flag,
.ta-public-shell .ta-country-option:focus .ta-country-flag,
.ta-public-shell .ta-country-change:hover .ta-country-change-icon,
.ta-public-shell .ta-country-change:focus .ta-country-change-icon {
  border-color: rgba(255, 106, 0, .55) !important;
  background: linear-gradient(135deg, var(--ta-orange), #ff8a3d) !important;
  color: #ffffff !important;
}

html[data-theme="light"] .ta-public-shell .ta-country-flag,
html[data-theme="light"] .ta-public-shell .ta-country-change-icon {
  border-color: rgba(255, 106, 0, .24) !important;
  background: linear-gradient(180deg, #fff8f1, #ffffff) !important;
  color: #f97316 !important;
}

html[data-theme="light"] .ta-public-shell .ta-country-option.is-active .ta-country-flag,
html[data-theme="light"] .ta-public-shell .ta-country-option:hover .ta-country-flag,
html[data-theme="light"] .ta-public-shell .ta-country-option:focus .ta-country-flag,
html[data-theme="light"] .ta-public-shell .ta-country-change:hover .ta-country-change-icon,
html[data-theme="light"] .ta-public-shell .ta-country-change:focus .ta-country-change-icon {
  color: #ffffff !important;
}

.ta-public-shell .ta-country-gate-icon {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  width: 2.75rem !important;
  height: 2.75rem !important;
  min-width: 2.75rem !important;
  min-height: 2.75rem !important;
  display: inline-grid !important;
  place-items: center !important;
  border: 1px solid rgba(255, 106, 0, .34) !important;
  border-radius: 999px !important;
  background: linear-gradient(145deg, rgba(255, 106, 0, .26), rgba(255, 255, 255, .08)) !important;
  color: #ffb27a !important;
  box-shadow: 0 14px 30px rgba(0, 0, 0, .28), 0 0 22px rgba(255, 106, 0, .10) !important;
}

.ta-public-shell .ta-country-gate-option .ta-country-gate-content {
  padding-top: 3.1rem !important;
}

.ta-public-shell .ta-country-gate-icon .ta-bi-svg {
  width: 1.2rem !important;
  height: 1.2rem !important;
  color: currentColor !important;
  fill: currentColor !important;
  stroke: none !important;
}

.ta-public-shell .ta-country-gate-accent {
  display: inline-grid !important;
  place-items: center !important;
  color: #ffb27a !important;
}

.ta-public-shell .ta-country-gate-accent::before {
  content: none !important;
}

.ta-public-shell .ta-country-gate-accent .ta-bi-svg {
  width: 1rem !important;
  height: 1rem !important;
  color: currentColor !important;
  fill: currentColor !important;
  stroke: none !important;
}

.ta-public-shell .ta-country-gate-option:hover .ta-country-gate-icon,
.ta-public-shell .ta-country-gate-option:focus .ta-country-gate-icon {
  border-color: rgba(255, 106, 0, .70) !important;
  background: linear-gradient(135deg, var(--ta-orange), #ff8a3d) !important;
  color: #ffffff !important;
}

/* Country gate: complete country names and compact touch-friendly mobile layout. */
.ta-public-shell .ta-country-gate-option .ta-country-gate-content {
  min-width: 0;
}

.ta-public-shell .ta-country-gate-option strong {
  overflow-wrap: anywhere;
}

@media (max-width: 991.98px) {
  body.ta-public-shell.ta-country-gate-locked {
    min-height: 100dvh;
  }

  .ta-public-shell .ta-country-gate {
    align-items: flex-start !important;
    min-height: 100dvh;
    padding: 12px !important;
    overflow-y: auto !important;
    overscroll-behavior: contain;
  }

  .ta-public-shell .ta-country-gate-card.ta-country-gate-presence {
    width: 100% !important;
    min-height: calc(100dvh - 24px);
    max-height: none;
    padding: 24px 18px 18px !important;
    border-radius: 16px !important;
    overflow: visible;
  }

  .ta-public-shell .ta-country-gate-head {
    max-width: 34rem;
    margin-bottom: 20px;
  }

  .ta-public-shell .ta-country-gate-kicker {
    margin-bottom: 11px;
    padding: 6px 11px;
    font-size: 11px;
  }

  .ta-public-shell .ta-country-gate-title {
    max-width: 32rem;
    margin-bottom: 10px !important;
    font-size: clamp(27px, 7.8vw, 38px) !important;
    line-height: 1.08 !important;
  }

  .ta-public-shell .ta-country-gate-copy {
    max-width: 31rem;
    font-size: 14px !important;
    line-height: 1.5;
  }

  .ta-public-shell .ta-country-gate-options {
    grid-template-columns: 1fr !important;
    gap: 10px !important;
  }

  .ta-public-shell .ta-country-gate-option {
    min-height: 92px !important;
    align-items: center !important;
    padding: 15px 58px 15px 70px !important;
    border-radius: 13px !important;
    touch-action: manipulation;
  }

  .ta-public-shell .ta-country-gate-icon {
    top: 50%;
    left: 14px;
    width: 2.6rem !important;
    height: 2.6rem !important;
    min-width: 2.6rem !important;
    min-height: 2.6rem !important;
    transform: translateY(-50%);
  }

  .ta-public-shell .ta-country-gate-option .ta-country-gate-content {
    gap: 4px;
    padding-top: 0 !important;
  }

  .ta-public-shell .ta-country-gate-option strong {
    font-size: clamp(20px, 5.8vw, 25px) !important;
    line-height: 1.08 !important;
  }

  .ta-public-shell .ta-country-gate-option small {
    font-size: 12px !important;
  }

  .ta-public-shell .ta-country-gate-accent {
    top: 50%;
    right: 14px;
    width: 32px;
    height: 32px;
    transform: translateY(-50%);
  }
}

@media (max-width: 420px) {
  .ta-public-shell .ta-country-gate {
    padding: 8px !important;
  }

  .ta-public-shell .ta-country-gate-card.ta-country-gate-presence {
    min-height: calc(100dvh - 16px);
    padding: 20px 12px 14px !important;
    border-radius: 14px !important;
  }

  .ta-public-shell .ta-country-gate-head {
    margin-bottom: 16px;
  }

  .ta-public-shell .ta-country-gate-title {
    font-size: clamp(25px, 8.8vw, 32px) !important;
  }

  .ta-public-shell .ta-country-gate-copy {
    font-size: 13px !important;
  }

  .ta-public-shell .ta-country-gate-option {
    min-height: 84px !important;
    padding: 13px 52px 13px 62px !important;
  }

  .ta-public-shell .ta-country-gate-icon {
    left: 11px;
    width: 2.35rem !important;
    height: 2.35rem !important;
    min-width: 2.35rem !important;
    min-height: 2.35rem !important;
  }

  .ta-public-shell .ta-country-gate-accent {
    right: 11px;
    width: 30px;
    height: 30px;
  }
}

/* Apply choice modal: real SVG arrows and readable light/dark contrast. */
.ta-public-shell .ta-internship-cta.is-home {
  position: relative;
  padding: clamp(2rem, 4vw, 3.25rem) 0;
  border-top: 1px solid rgba(255, 105, 24, .14);
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 105, 24, .11), transparent 24rem),
    radial-gradient(circle at 88% 80%, rgba(0, 178, 227, .08), transparent 22rem),
    #080b10;
}

.ta-public-shell .ta-internship-cta-shell {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: 112px minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(1.25rem, 3vw, 2.4rem);
  padding: clamp(1.5rem, 3vw, 2.35rem);
  border: 1px solid rgba(255, 123, 54, .3);
  border-radius: 26px;
  background:
    linear-gradient(90deg, rgba(255, 89, 0, .08), transparent 30%),
    radial-gradient(circle at 88% 0, rgba(0, 178, 227, .18), transparent 22rem),
    linear-gradient(135deg, #101620, #0c1119);
  color: #fff;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .32);
}

.ta-public-shell .ta-internship-cta-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 28px 28px;
  mask-image: linear-gradient(90deg, #000, transparent 58%);
}

.ta-public-shell .ta-internship-cta-visual {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 104px;
  height: 104px;
}

.ta-public-shell .ta-internship-cta-orbit {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 122, 44, .28);
  border-radius: 50%;
}

.ta-public-shell .ta-internship-cta-orbit::before,
.ta-public-shell .ta-internship-cta-orbit::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ff6818;
  box-shadow: 0 0 0 5px rgba(255, 104, 24, .12);
}

.ta-public-shell .ta-internship-cta-orbit::before {
  top: 7px;
  right: 14px;
}

.ta-public-shell .ta-internship-cta-orbit::after {
  bottom: 9px;
  left: 12px;
  background: #00b2e3;
  box-shadow: 0 0 0 5px rgba(0, 178, 227, .11);
}

.ta-public-shell .ta-internship-cta-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  border: 1px solid rgba(255, 123, 54, .3);
  border-radius: 22px;
  background: linear-gradient(145deg, rgba(255, 106, 0, .22), rgba(255, 106, 0, .08));
  color: #ff7628;
  box-shadow: inset 0 1px rgba(255,255,255,.08), 0 14px 32px rgba(255,83,0,.16);
}

.ta-public-shell .ta-internship-cta-icon svg {
  width: 42px;
  height: 42px;
}

.ta-public-shell .ta-internship-cta-copy span {
  color: #ff9c5c;
  font-size: .75rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ta-public-shell .ta-internship-cta-copy h2 {
  margin: .2rem 0 .25rem;
  color: #fff !important;
  font-size: clamp(1.75rem, 3vw, 2.55rem);
  line-height: 1.05;
}

.ta-public-shell .ta-internship-cta-copy p {
  margin: 0;
  color: #cbd5e1 !important;
  font-size: 1.05rem;
}

.ta-public-shell .ta-internship-cta-meta {
  display: flex;
  align-items: center;
  gap: .55rem;
  flex-wrap: wrap;
  margin-top: .8rem;
}

.ta-public-shell .ta-internship-cta-meta small {
  padding: .35rem .65rem;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 999px;
  background: rgba(255,255,255,.055);
  color: #d8dee8;
  font-size: .75rem;
  font-weight: 700;
}

.ta-public-shell .ta-internship-cta-action {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  white-space: nowrap;
}

.ta-public-shell .ta-internship-cta-action svg {
  width: 20px;
  height: 20px;
  transition: transform .2s ease;
}

.ta-public-shell .ta-internship-cta-action:hover svg {
  transform: translateX(4px);
}

html[data-theme="light"] .ta-public-shell .ta-internship-cta.is-home {
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 105, 24, .12), transparent 24rem),
    radial-gradient(circle at 88% 80%, rgba(0, 178, 227, .1), transparent 22rem),
    linear-gradient(180deg, #fff9f5, #edf2f6);
}

html[data-theme="light"] .ta-public-shell .ta-internship-cta-shell {
  border-color: rgba(15, 23, 42, .1);
  background:
    linear-gradient(90deg, rgba(255, 105, 24, .045), transparent 34%),
    linear-gradient(135deg, #ffffff, #f8fafc);
  color: #111827;
  box-shadow: 0 18px 44px rgba(15, 23, 42, .09);
}

html[data-theme="light"] .ta-public-shell .ta-internship-cta-shell::after {
  background-image:
    linear-gradient(rgba(15, 23, 42, .035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 23, 42, .035) 1px, transparent 1px);
}

html[data-theme="light"] .ta-public-shell .ta-internship-cta-copy h2 {
  color: #101827 !important;
}

html[data-theme="light"] .ta-public-shell .ta-internship-cta-copy p {
  color: #536174 !important;
}

html[data-theme="light"] .ta-public-shell .ta-internship-cta-meta small {
  border-color: rgba(15, 23, 42, .12);
  background: rgba(255, 255, 255, .72);
  color: #526074;
}

@media (max-width: 767.98px) {
  .ta-public-shell .ta-internship-cta-shell {
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 1rem;
    border-radius: 20px;
  }

  .ta-public-shell .ta-internship-cta-action {
    grid-column: 1 / -1;
    width: 100%;
    justify-content: center;
  }

  .ta-public-shell .ta-internship-cta-visual {
    width: 72px;
    height: 72px;
  }

  .ta-public-shell .ta-internship-cta-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
  }

  .ta-public-shell .ta-internship-cta-icon svg {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 479.98px) {
  .ta-public-shell .ta-internship-cta-shell {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .ta-public-shell .ta-internship-cta-visual {
    margin: 0 auto;
  }

  .ta-public-shell .ta-internship-cta-meta {
    justify-content: center;
  }
}

.ta-public-shell .apply-choice-modal .modal-dialog {
  max-width: min(880px, calc(100vw - 2rem)) !important;
}

.ta-public-shell .apply-choice-modal .modal-content,
.ta-public-shell .apply-gate-card {
  overflow: hidden !important;
  border: 1px solid rgba(255, 255, 255, .12) !important;
  border-radius: 8px !important;
  background: #0a0b10 !important;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .55) !important;
}

.ta-public-shell .apply-choice-head,
.ta-public-shell .apply-gate-head {
  padding: clamp(1.55rem, 3vw, 2.25rem) !important;
  background:
    radial-gradient(circle at 18% 0%, rgba(255, 106, 0, .20), transparent 16rem),
    linear-gradient(135deg, #12131a 0%, #090a0f 62%, #111827 100%) !important;
  color: #ffffff !important;
}

.ta-public-shell .apply-choice-head span,
.ta-public-shell .apply-gate-head span {
  color: #ff8a3d !important;
}

.ta-public-shell .apply-choice-head h1,
.ta-public-shell .apply-choice-head h2,
.ta-public-shell .apply-gate-head h1,
.ta-public-shell .apply-gate-head h2 {
  color: #ffffff !important;
}

.ta-public-shell .apply-choice-head p,
.ta-public-shell .apply-gate-head p,
.ta-public-shell .apply-choice-head .text-white-50,
.ta-public-shell .apply-gate-head .text-white-50 {
  color: #c8ceda !important;
}

.ta-public-shell .apply-choice-modal .modal-body,
.ta-public-shell .apply-gate-body {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .035), rgba(255, 255, 255, .015)),
    #0a0b10 !important;
}

.ta-public-shell .apply-choice-option {
  min-height: 6rem !important;
  display: grid !important;
  grid-template-columns: auto minmax(0, 1fr) auto !important;
  align-items: center !important;
  gap: 1rem !important;
  padding: 1.05rem 1.15rem !important;
  border: 1px solid rgba(255, 255, 255, .09) !important;
  border-radius: 8px !important;
  background: linear-gradient(180deg, #111218, #090a0f) !important;
  color: #f8fafc !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .22) !important;
}

.ta-public-shell .apply-choice-option::after {
  content: none !important;
}

.ta-public-shell .apply-choice-option strong {
  color: #ffffff !important;
}

.ta-public-shell .apply-choice-option small,
.ta-public-shell .apply-choice-option .text-muted {
  color: #aeb6c4 !important;
}

.ta-public-shell .apply-choice-arrow {
  width: 2.15rem !important;
  height: 2.15rem !important;
  min-width: 2.15rem !important;
  min-height: 2.15rem !important;
  display: inline-grid !important;
  place-items: center !important;
  border-radius: 999px !important;
  border: 1px solid rgba(255, 106, 0, .24) !important;
  background: rgba(255, 106, 0, .12) !important;
  color: #ff9a55 !important;
}

.ta-public-shell .apply-choice-arrow .ta-bi-svg {
  width: 1rem !important;
  height: 1rem !important;
  color: currentColor !important;
  fill: currentColor !important;
  stroke: none !important;
}

.ta-public-shell .apply-choice-option:hover,
.ta-public-shell .apply-choice-option:focus {
  transform: translateY(-2px) !important;
  border-color: rgba(255, 106, 0, .42) !important;
  background: linear-gradient(180deg, #161820, #0b0c12) !important;
  color: #ffffff !important;
  box-shadow: 0 20px 44px rgba(0, 0, 0, .30), 0 0 0 1px rgba(255, 106, 0, .08) !important;
}

.ta-public-shell .apply-choice-option:hover .apply-choice-arrow,
.ta-public-shell .apply-choice-option:focus .apply-choice-arrow {
  border-color: transparent !important;
  background: linear-gradient(135deg, var(--ta-orange), #ff8a3d) !important;
  color: #ffffff !important;
}

html[data-theme="light"] .ta-public-shell .apply-choice-modal .modal-content,
html[data-theme="light"] .ta-public-shell .apply-gate-card {
  border-color: rgba(17, 24, 39, .12) !important;
  background: #ffffff !important;
  box-shadow: 0 28px 82px rgba(15, 23, 42, .20) !important;
}

html[data-theme="light"] .ta-public-shell .apply-choice-head,
html[data-theme="light"] .ta-public-shell .apply-gate-head {
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 106, 0, .16), transparent 15rem),
    linear-gradient(135deg, #ffffff 0%, #fff7ef 52%, #f8fafc 100%) !important;
  color: #111827 !important;
}

html[data-theme="light"] .ta-public-shell .apply-choice-head h1,
html[data-theme="light"] .ta-public-shell .apply-choice-head h2,
html[data-theme="light"] .ta-public-shell .apply-gate-head h1,
html[data-theme="light"] .ta-public-shell .apply-gate-head h2 {
  color: #111827 !important;
}

html[data-theme="light"] .ta-public-shell .apply-choice-head p,
html[data-theme="light"] .ta-public-shell .apply-gate-head p,
html[data-theme="light"] .ta-public-shell .apply-choice-head .text-white-50,
html[data-theme="light"] .ta-public-shell .apply-gate-head .text-white-50 {
  color: #64748b !important;
}

html[data-theme="light"] .ta-public-shell .apply-choice-modal .modal-body,
html[data-theme="light"] .ta-public-shell .apply-gate-body {
  background: #f8fafc !important;
}

html[data-theme="light"] .ta-public-shell .apply-choice-option {
  border-color: rgba(15, 23, 42, .10) !important;
  background: #ffffff !important;
  color: #111827 !important;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .07) !important;
}

html[data-theme="light"] .ta-public-shell .apply-choice-option strong {
  color: #111827 !important;
}

html[data-theme="light"] .ta-public-shell .apply-choice-option small,
html[data-theme="light"] .ta-public-shell .apply-choice-option .text-muted {
  color: #64748b !important;
}

html[data-theme="light"] .ta-public-shell .apply-choice-arrow {
  border-color: rgba(255, 106, 0, .24) !important;
  background: #fff7ef !important;
  color: #f97316 !important;
}

html[data-theme="light"] .ta-public-shell .apply-choice-option:hover,
html[data-theme="light"] .ta-public-shell .apply-choice-option:focus {
  border-color: rgba(255, 106, 0, .34) !important;
  background: #fffaf5 !important;
  box-shadow: 0 18px 40px rgba(15, 23, 42, .11) !important;
}

@media (min-width: 992px) {
/* ACOSA photographic home hero */
.ta-public-shell .ta-acosa-photo-hero,
html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero {
  position: relative;
  isolation: isolate;
  min-height: clamp(640px, 72vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  text-align: left !important;
  background-image:
    linear-gradient(90deg, rgba(4, 7, 13, .92) 0%, rgba(4, 7, 13, .78) 34%, rgba(4, 7, 13, .42) 66%, rgba(4, 7, 13, .18) 100%),
    linear-gradient(180deg, rgba(4, 7, 13, .08) 0%, rgba(4, 7, 13, .72) 100%),
    url("../img/hero/acosa-hero-desktop.webp") !important;
  background-size: cover !important;
  background-position: center center !important;
  background-repeat: no-repeat !important;
  color: #fff;
  transition: border-color .2s ease, box-shadow .2s ease, color .2s ease;
}

.ta-public-shell .ta-acosa-photo-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: .36 !important;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, .34), transparent 28%, rgba(0, 0, 0, .38)),
    radial-gradient(circle at 16% 38%, rgba(255, 81, 0, .22), transparent 34%),
    radial-gradient(circle at 64% 34%, rgba(0, 92, 185, .2), transparent 38%) !important;
  pointer-events: none;
}

.ta-public-shell .ta-acosa-photo-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  z-index: -1;
  height: 34%;
  background: linear-gradient(180deg, transparent, var(--page-bg));
  pointer-events: none;
}

.ta-public-shell .ta-acosa-photo-hero .ta-hero-orbit {
  display: none;
}

.ta-public-shell .ta-acosa-photo-hero .container,
.ta-public-shell .ta-acosa-photo-hero .ta-container {
  position: relative;
  z-index: 1;
}

.ta-public-shell .ta-acosa-photo-hero .ta-hero-copy {
  max-width: 760px;
  margin: 0;
  padding: clamp(1.2rem, 2vw, 1.8rem) 0;
}

.ta-public-shell .ta-acosa-photo-hero h1,
html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero h1 {
  max-width: 760px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  color: #ffffff !important;
  text-shadow: 0 4px 24px rgba(0, 0, 0, .45);
}

.ta-public-shell .ta-acosa-photo-hero h1 span,
html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero h1 span {
  color: #ff7a1a !important;
  text-shadow: 0 4px 22px rgba(0, 0, 0, .34) !important;
}

.ta-public-shell .ta-acosa-photo-hero p,
.ta-public-shell .ta-acosa-photo-hero .lead,
html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero p,
html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero .lead {
  max-width: 660px !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
  color: rgba(255, 255, 255, .88) !important;
  text-shadow: 0 3px 18px rgba(0, 0, 0, .36);
}

.ta-public-shell .ta-acosa-photo-hero .ta-public-eyebrow,
html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero .ta-public-eyebrow {
  border-color: rgba(255, 255, 255, .22) !important;
  background: rgba(3, 8, 18, .42) !important;
  color: rgba(255, 255, 255, .92) !important;
  box-shadow: 0 12px 28px rgba(0, 0, 0, .16);
}

.ta-public-shell .ta-acosa-photo-hero .ta-hero-search,
html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero .ta-hero-search {
  max-width: 710px;
  margin-left: 0;
  margin-right: 0;
  border-color: rgba(255, 255, 255, .18) !important;
  background: rgba(7, 12, 22, .78) !important;
  box-shadow: 0 20px 54px rgba(0, 0, 0, .28) !important;
  backdrop-filter: blur(10px);
}

.ta-public-shell .ta-acosa-photo-hero .ta-hero-search input,
html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero .ta-hero-search input {
  border-color: rgba(255, 255, 255, .12) !important;
  background: rgba(255, 255, 255, .08) !important;
  color: #fff !important;
}

.ta-public-shell .ta-acosa-photo-hero .ta-hero-pills,
.ta-public-shell .ta-acosa-photo-hero .ta-hero-actions {
  justify-content: flex-start;
}

.ta-public-shell .ta-acosa-photo-hero .ta-hero-pills a,
html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero .ta-hero-pills a {
  border-color: rgba(255, 255, 255, .18) !important;
  background: rgba(3, 8, 18, .42) !important;
  color: rgba(255, 255, 255, .9) !important;
}

.ta-public-shell .ta-acosa-photo-hero .ta-command-panel,
html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero .ta-command-panel {
  border-color: rgba(255, 255, 255, .18) !important;
  background: rgba(6, 12, 24, .58) !important;
  box-shadow: 0 28px 70px rgba(0, 0, 0, .32) !important;
  backdrop-filter: blur(14px);
}

.ta-public-shell .ta-acosa-photo-hero .ta-command-card,
.ta-public-shell .ta-acosa-photo-hero .ta-mini-grid > div,
html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero .ta-command-card,
html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero .ta-mini-grid > div {
  border-color: rgba(255, 255, 255, .13) !important;
  background: rgba(255, 255, 255, .08) !important;
}

.ta-public-shell .ta-acosa-photo-hero .ta-panel-topline,
.ta-public-shell .ta-acosa-photo-hero .ta-command-card small,
.ta-public-shell .ta-acosa-photo-hero .ta-command-card span,
.ta-public-shell .ta-acosa-photo-hero .ta-mini-grid span,
html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero .ta-panel-topline,
html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero .ta-command-card small,
html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero .ta-command-card span,
html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero .ta-mini-grid span {
  color: rgba(255, 255, 255, .74) !important;
}

.ta-public-shell .ta-acosa-photo-hero .ta-command-card strong,
.ta-public-shell .ta-acosa-photo-hero .ta-mini-grid strong,
html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero .ta-command-card strong,
html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero .ta-mini-grid strong {
  color: #fff !important;
}

html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero h1,
html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero p,
html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero .lead {
  text-shadow: 0 3px 22px rgba(0, 0, 0, .44);
}

html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero .ta-hero-search {
  border-color: rgba(15, 23, 42, .12) !important;
  background: rgba(255, 255, 255, .78) !important;
  box-shadow: 0 20px 48px rgba(15, 23, 42, .18) !important;
}

html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero .ta-hero-search input {
  background: rgba(15, 23, 42, .055) !important;
  color: #111827 !important;
}

html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero .ta-hero-search input::placeholder {
  color: rgba(17, 24, 39, .56) !important;
}

html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero .ta-hero-pills a,
html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero .ta-public-eyebrow {
  border-color: rgba(15, 23, 42, .12) !important;
  background: rgba(255, 255, 255, .66) !important;
  color: #1f2937 !important;
}

html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero .btn-outline-secondary {
  border-color: rgba(15, 23, 42, .18) !important;
  background: rgba(255, 255, 255, .72) !important;
  color: #111827 !important;
}

html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero .ta-command-panel {
  border-color: rgba(15, 23, 42, .14) !important;
  background: rgba(255, 255, 255, .7) !important;
  box-shadow: 0 28px 64px rgba(15, 23, 42, .18) !important;
}

html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero .ta-command-card,
html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero .ta-mini-grid > div {
  border-color: rgba(15, 23, 42, .12) !important;
  background: rgba(255, 255, 255, .58) !important;
}

html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero .ta-panel-topline,
html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero .ta-command-card small,
html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero .ta-command-card span,
html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero .ta-mini-grid span {
  color: rgba(31, 41, 55, .68) !important;
}

html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero .ta-command-card strong,
html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero .ta-mini-grid strong {
  color: #111827 !important;
}
}

@media (max-width: 991.98px) {
  .ta-public-shell .ta-acosa-photo-hero,
  html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero {
    position: relative;
    isolation: isolate;
    min-height: clamp(640px, 92vh, 820px) !important;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    padding-top: clamp(5.5rem, 18vw, 7.5rem) !important;
    padding-bottom: clamp(2.75rem, 10vw, 4rem) !important;
    text-align: left !important;
    background-image:
      linear-gradient(180deg, rgba(4, 7, 13, .18) 0%, rgba(4, 7, 13, .52) 35%, rgba(4, 7, 13, .95) 100%),
      linear-gradient(90deg, rgba(4, 7, 13, .88) 0%, rgba(4, 7, 13, .58) 55%, rgba(4, 7, 13, .22) 100%),
      url("../img/hero/acosa-hero-mobile.webp") !important;
    background-size: cover !important;
    background-position: center top !important;
    background-repeat: no-repeat !important;
    color: #fff !important;
  }

  .ta-public-shell .ta-acosa-photo-hero::before {
    display: none !important;
  }

  .ta-public-shell .ta-acosa-photo-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: -1;
    height: 36%;
    background: linear-gradient(180deg, transparent, var(--page-bg));
    pointer-events: none;
  }

  .ta-public-shell .ta-acosa-photo-hero .ta-hero-orbit,
  .ta-public-shell .ta-acosa-photo-hero .ta-command-panel {
    display: none !important;
  }

  .ta-public-shell .ta-acosa-photo-hero .ta-hero-copy {
    max-width: 100%;
    margin: 0;
    padding: 0;
  }

  .ta-public-shell .ta-acosa-photo-hero h1,
  html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero h1 {
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    color: #ffffff !important;
    font-size: clamp(2.45rem, 12vw, 3.7rem) !important;
    line-height: 1.02 !important;
    text-shadow: 0 4px 24px rgba(0, 0, 0, .48) !important;
  }

  .ta-public-shell .ta-acosa-photo-hero h1 span,
  html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero h1 span {
    color: #ff7a1a !important;
  }

  .ta-public-shell .ta-acosa-photo-hero p,
  .ta-public-shell .ta-acosa-photo-hero .lead,
  html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero p,
  html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero .lead {
    max-width: 100% !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    color: rgba(255, 255, 255, .9) !important;
    text-shadow: 0 3px 18px rgba(0, 0, 0, .42) !important;
  }

  .ta-public-shell .ta-acosa-photo-hero .ta-public-eyebrow,
  html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero .ta-public-eyebrow {
    border-color: rgba(255, 255, 255, .24) !important;
    background: rgba(3, 8, 18, .48) !important;
    color: rgba(255, 255, 255, .94) !important;
  }

  .ta-public-shell .ta-acosa-photo-hero .ta-hero-search,
  html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero .ta-hero-search {
    max-width: 100%;
    margin-left: 0;
    margin-right: 0;
    border-color: rgba(255, 255, 255, .18) !important;
    background: rgba(7, 12, 22, .82) !important;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .28) !important;
  }

  .ta-public-shell .ta-acosa-photo-hero .ta-hero-search input,
  html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero .ta-hero-search input {
    background: rgba(255, 255, 255, .08) !important;
    color: #fff !important;
  }

  .ta-public-shell .ta-acosa-photo-hero .ta-hero-pills,
  .ta-public-shell .ta-acosa-photo-hero .ta-hero-actions {
    justify-content: flex-start;
  }

  .ta-public-shell .ta-acosa-photo-hero .ta-hero-pills a,
  html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero .ta-hero-pills a {
    border-color: rgba(255, 255, 255, .2) !important;
    background: rgba(3, 8, 18, .48) !important;
    color: rgba(255, 255, 255, .92) !important;
  }

  .ta-public-shell .ta-acosa-photo-hero .btn-outline-secondary,
  html[data-theme="light"] .ta-public-shell .ta-acosa-photo-hero .btn-outline-secondary {
    border-color: rgba(255, 255, 255, .22) !important;
    background: rgba(255, 255, 255, .78) !important;
    color: #111827 !important;
  }
}

/* Header brand color by theme */
.ta-public-shell .ta-navbar,
.ta-public-shell.ta-public-nav-scrolled .ta-navbar {
  border-bottom-color: rgba(255, 255, 255, .08) !important;
  background: #050505 !important;
}

html[data-theme="light"] .ta-public-shell .ta-navbar,
html[data-theme="light"] .ta-public-shell.ta-public-nav-scrolled .ta-navbar {
  border-bottom-color: rgba(255, 255, 255, .22) !important;
  background: #fe5000 !important;
  box-shadow: 0 12px 34px rgba(254, 80, 0, .22) !important;
}

html[data-theme="light"] .ta-public-shell .navbar-brand,
html[data-theme="light"] .ta-public-shell .ta-navbar .nav-link,
html[data-theme="light"] .ta-public-shell .ta-navbar .dropdown-toggle,
html[data-theme="light"] .ta-public-shell .ta-rh-btn,
html[data-theme="light"] .ta-public-shell .ta-login-link {
  color: rgba(255, 255, 255, .9) !important;
}

html[data-theme="light"] .ta-public-shell .navbar-brand {
  color: #ffffff !important;
}

html[data-theme="light"] .ta-public-shell .navbar-brand::before {
  border-color: rgba(255, 255, 255, .38) !important;
  background: rgba(255, 255, 255, .16) !important;
  color: #ffffff !important;
}

html[data-theme="light"] .ta-public-shell .ta-nav-menu {
  border-color: rgba(255, 255, 255, .22) !important;
  background: rgba(255, 255, 255, .12) !important;
}

html[data-theme="light"] .ta-public-shell .ta-navbar .nav-link:hover,
html[data-theme="light"] .ta-public-shell .ta-navbar .nav-link:focus,
html[data-theme="light"] .ta-public-shell .ta-navbar .nav-link.active,
html[data-theme="light"] .ta-public-shell .ta-navbar .nav-link.show {
  color: #ffffff !important;
  background: rgba(255, 255, 255, .2) !important;
}

html[data-theme="light"] .ta-public-shell .ta-header-cta {
  border-color: rgba(255, 255, 255, .72) !important;
  background: #ffffff !important;
  color: #fe5000 !important;
  box-shadow: 0 12px 26px rgba(128, 34, 0, .16) !important;
}

html[data-theme="light"] .ta-public-shell .ta-theme-toggle,
html[data-theme="light"] .ta-public-shell .ta-icon-nav,
html[data-theme="light"] .ta-public-shell .navbar-toggler {
  border-color: rgba(255, 255, 255, .32) !important;
  background: rgba(255, 255, 255, .16) !important;
  color: #ffffff !important;
}

@media (max-width: 991.98px) {
  html[data-theme="light"] .ta-public-shell .ta-navbar {
    background: #fe5000 !important;
  }

  html[data-theme="light"] .ta-public-shell .navbar-brand {
    color: #ffffff !important;
  }

  html[data-theme="light"] .ta-public-shell .navbar-toggler {
    width: 2.55rem;
    height: 2.55rem;
    border-color: rgba(255, 255, 255, .42) !important;
    background: rgba(255, 255, 255, .18) !important;
    color: #ffffff !important;
  }

  html[data-theme="light"] .ta-public-shell .navbar-toggler-icon,
  html[data-theme="light"] .ta-public-shell .navbar-toggler-icon::before,
  html[data-theme="light"] .ta-public-shell .navbar-toggler-icon::after {
    border-color: #ffffff !important;
    background: transparent !important;
  }

  html[data-theme="light"] .ta-public-shell .navbar-collapse {
    margin-top: .85rem;
    border: 1px solid rgba(254, 80, 0, .16) !important;
    border-radius: 8px;
    background: rgba(255, 255, 255, .98) !important;
    padding: .85rem;
    box-shadow: 0 22px 46px rgba(52, 16, 0, .18) !important;
  }

  html[data-theme="light"] .ta-public-shell .ta-nav-menu {
    width: 100%;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: .28rem !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
  }

  html[data-theme="light"] .ta-public-shell .ta-nav-menu > .nav-item {
    width: 100%;
  }

  html[data-theme="light"] .ta-public-shell .ta-navbar .nav-link,
  html[data-theme="light"] .ta-public-shell .ta-navbar .dropdown-toggle,
  html[data-theme="light"] .ta-public-shell .ta-rh-btn,
  html[data-theme="light"] .ta-public-shell .ta-login-link {
    width: 100%;
    min-height: 2.7rem !important;
    justify-content: space-between;
    border-radius: 8px !important;
    color: #1f2937 !important;
    background: transparent !important;
    padding: .72rem .82rem !important;
  }

  html[data-theme="light"] .ta-public-shell .ta-navbar .nav-link:hover,
  html[data-theme="light"] .ta-public-shell .ta-navbar .nav-link:focus,
  html[data-theme="light"] .ta-public-shell .ta-navbar .nav-link.active,
  html[data-theme="light"] .ta-public-shell .ta-navbar .nav-link.show {
    color: #fe5000 !important;
    background: rgba(254, 80, 0, .09) !important;
  }

  html[data-theme="light"] .ta-public-shell .ta-dropdown-menu,
  html[data-theme="light"] .ta-public-shell .dropdown-menu {
    width: 100%;
    margin-top: .35rem !important;
    border-color: rgba(254, 80, 0, .12) !important;
    background: #fff8f3 !important;
    box-shadow: none !important;
  }

  html[data-theme="light"] .ta-public-shell .dropdown-item {
    color: #1f2937 !important;
  }

  html[data-theme="light"] .ta-public-shell .dropdown-item:hover,
  html[data-theme="light"] .ta-public-shell .dropdown-item:focus,
  html[data-theme="light"] .ta-public-shell .ta-country-option.is-active {
    color: #fe5000 !important;
    background: rgba(254, 80, 0, .1) !important;
  }

  html[data-theme="light"] .ta-public-shell .ta-theme-toggle {
    width: 100% !important;
    display: inline-flex !important;
    justify-content: flex-start !important;
    border: 0 !important;
    background: transparent !important;
    color: #1f2937 !important;
    padding: .42rem .82rem !important;
  }

  html[data-theme="light"] .ta-public-shell .ta-theme-toggle-track {
    border-color: rgba(254, 80, 0, .2) !important;
    background: rgba(254, 80, 0, .08) !important;
  }

  html[data-theme="light"] .ta-public-shell .ta-header-cta {
    width: 100%;
    border-color: rgba(254, 80, 0, .18) !important;
    background: #fe5000 !important;
    color: #ffffff !important;
  }
}

@media (max-width: 991.98px) {
  .ta-public-shell .ta-navbar {
    min-height: 64px !important;
    z-index: 1040;
  }

  .ta-public-shell .ta-navbar .ta-container,
  .ta-public-shell .ta-navbar .container {
    position: relative;
  }

  .ta-public-shell .navbar-collapse {
    position: absolute;
    top: calc(100% + .7rem);
    left: 0;
    right: 0;
    max-height: calc(100vh - 5.25rem);
    overflow-y: auto;
    margin-top: 0 !important;
    border-radius: 14px;
    padding: .55rem !important;
  }

  .ta-public-shell .ta-nav-menu {
    width: 100%;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: .15rem !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
  }

  .ta-public-shell .ta-nav-menu > .nav-item {
    width: 100%;
  }

  .ta-public-shell .ta-navbar .nav-link,
  .ta-public-shell .ta-navbar .dropdown-toggle,
  .ta-public-shell .ta-rh-btn,
  .ta-public-shell .ta-login-link {
    width: 100%;
    min-height: 2.65rem !important;
    justify-content: space-between;
    border-radius: 10px !important;
    padding: .7rem .82rem !important;
    font-size: .9rem !important;
  }

  .ta-public-shell .ta-navbar .nav-link.active {
    font-weight: 850 !important;
  }

  .ta-public-shell .ta-theme-toggle {
    width: 100% !important;
    min-height: 2.65rem !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: space-between !important;
    border-radius: 10px !important;
    padding: .55rem .82rem !important;
  }

  .ta-public-shell .ta-theme-toggle::before {
    content: "Tema";
    font-size: .9rem;
    font-weight: 760;
  }

  .ta-public-shell .ta-theme-toggle-track {
    margin-left: auto;
  }

  .ta-public-shell .ta-header-cta {
    width: 100%;
    min-height: 2.8rem !important;
    margin-top: .35rem;
    border-radius: 999px !important;
  }

  .ta-public-shell .dropdown-menu,
  .ta-public-shell .ta-dropdown-menu {
    width: 100%;
    margin: .25rem 0 .35rem !important;
    padding: .35rem !important;
    border-radius: 10px !important;
    position: static !important;
    transform: none !important;
  }

  .ta-public-shell .dropdown-item {
    min-height: 2.4rem;
    display: flex;
    align-items: center;
    border-radius: 8px !important;
    padding: .62rem .72rem !important;
    font-size: .88rem;
  }

  .ta-public-shell .dropdown-divider {
    margin: .35rem 0;
  }

  html[data-theme="light"] .ta-public-shell .navbar-collapse {
    border: 1px solid rgba(254, 80, 0, .14) !important;
    background:
      linear-gradient(180deg, #ffffff 0%, #fff7f1 100%) !important;
    box-shadow: 0 22px 48px rgba(73, 21, 0, .22) !important;
  }

  html[data-theme="light"] .ta-public-shell .ta-navbar .nav-link,
  html[data-theme="light"] .ta-public-shell .ta-navbar .dropdown-toggle,
  html[data-theme="light"] .ta-public-shell .ta-rh-btn,
  html[data-theme="light"] .ta-public-shell .ta-login-link {
    color: #172033 !important;
    background: transparent !important;
  }

  html[data-theme="light"] .ta-public-shell .ta-navbar .nav-link:hover,
  html[data-theme="light"] .ta-public-shell .ta-navbar .nav-link:focus,
  html[data-theme="light"] .ta-public-shell .ta-navbar .nav-link.active,
  html[data-theme="light"] .ta-public-shell .ta-navbar .nav-link.show {
    color: #fe5000 !important;
    background: rgba(254, 80, 0, .09) !important;
  }

  html[data-theme="light"] .ta-public-shell .ta-theme-toggle {
    border: 0 !important;
    background: transparent !important;
    color: #172033 !important;
  }

  html[data-theme="light"] .ta-public-shell .ta-theme-toggle-track {
    border-color: rgba(254, 80, 0, .2) !important;
    background: rgba(254, 80, 0, .08) !important;
  }

  html[data-theme="light"] .ta-public-shell .ta-dropdown-menu,
  html[data-theme="light"] .ta-public-shell .dropdown-menu {
    border-color: rgba(254, 80, 0, .12) !important;
    background: #fffaf6 !important;
  }

  html[data-theme="light"] .ta-public-shell .dropdown-item {
    color: #172033 !important;
  }

  html[data-theme="light"] .ta-public-shell .dropdown-item:hover,
  html[data-theme="light"] .ta-public-shell .dropdown-item:focus,
  html[data-theme="light"] .ta-public-shell .ta-country-option.is-active {
    color: #fe5000 !important;
    background: rgba(254, 80, 0, .1) !important;
  }

  html[data-theme="dark"] .ta-public-shell .navbar-collapse {
    border-color: rgba(255, 255, 255, .08) !important;
    background: rgba(10, 10, 14, .98) !important;
    box-shadow: 0 22px 48px rgba(0, 0, 0, .38) !important;
  }
}

/* Footer brand color by theme */
html[data-theme="light"] .ta-public-shell .ta-footer {
  border-top-color: rgba(255, 255, 255, .24) !important;
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, .26), transparent 22rem),
    linear-gradient(180deg, #fe5000 0%, #e94700 100%) !important;
  color: #ffffff !important;
}

html[data-theme="light"] .ta-public-shell .ta-footer-brand-col,
html[data-theme="light"] .ta-public-shell .ta-footer-link-col,
html[data-theme="light"] .ta-public-shell .ta-footer-cta-col {
  border-color: rgba(255, 255, 255, .22) !important;
  background: rgba(255, 255, 255, .12) !important;
  box-shadow: none !important;
}

html[data-theme="light"] .ta-public-shell .ta-footer-brand-col:hover,
html[data-theme="light"] .ta-public-shell .ta-footer-link-col:hover,
html[data-theme="light"] .ta-public-shell .ta-footer-cta-col:hover {
  border-color: rgba(255, 255, 255, .5) !important;
  background: rgba(255, 255, 255, .19) !important;
  box-shadow: 0 16px 34px rgba(112, 31, 0, .18) !important;
  transform: translateY(-3px);
}

html[data-theme="light"] .ta-public-shell .ta-footer-title,
html[data-theme="light"] .ta-public-shell .ta-footer-subtitle {
  color: #ffffff !important;
}

html[data-theme="light"] .ta-public-shell .ta-footer-text,
html[data-theme="light"] .ta-public-shell .ta-footer-bottom,
html[data-theme="light"] .ta-public-shell .ta-footer-links a {
  color: rgba(255, 255, 255, .84) !important;
}

html[data-theme="light"] .ta-public-shell .ta-footer-links a:hover,
html[data-theme="light"] .ta-public-shell .ta-footer-links a:focus-visible,
html[data-theme="light"] .ta-public-shell .ta-footer-links .ta-footer-link-button:hover,
html[data-theme="light"] .ta-public-shell .ta-footer-links .ta-footer-link-button:focus-visible {
  color: #ffffff !important;
  text-decoration: none;
  text-shadow: 0 2px 12px rgba(94, 24, 0, .28);
  transform: translateX(4px);
}

html[data-theme="light"] .ta-public-shell .ta-footer-links a::after,
html[data-theme="light"] .ta-public-shell .ta-footer-links .ta-footer-link-button::after {
  height: 2px;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 1px 8px rgba(99, 27, 0, .2);
}

html[data-theme="light"] .ta-public-shell .ta-footer-links .ta-footer-link-button {
  position: relative;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 255, 255, .84) !important;
  font-weight: 720;
  padding: .24rem 0;
  transition: color var(--ta-public-transition), transform var(--ta-public-transition), text-shadow var(--ta-public-transition);
}

html[data-theme="light"] .ta-public-shell .ta-footer-links .ta-footer-link-button::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: .05rem;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ta-public-transition);
}

html[data-theme="light"] .ta-public-shell .ta-footer-links a:hover::after,
html[data-theme="light"] .ta-public-shell .ta-footer-links a:focus-visible::after,
html[data-theme="light"] .ta-public-shell .ta-footer-links .ta-footer-link-button:hover::after,
html[data-theme="light"] .ta-public-shell .ta-footer-links .ta-footer-link-button:focus-visible::after {
  transform: scaleX(1);
}

html[data-theme="light"] .ta-public-shell .ta-footer-bottom {
  border-top-color: rgba(255, 255, 255, .22) !important;
}

html[data-theme="light"] .ta-public-shell .ta-footer-btn {
  border-color: rgba(255, 255, 255, .78) !important;
  background: #ffffff !important;
  color: #fe5000 !important;
  box-shadow: 0 14px 30px rgba(96, 28, 0, .16) !important;
}

/* Footer unificado: jerarquía compacta sin columnas tipo tarjeta */
.ta-public-shell .ta-footer--streamlined .ta-footer-main {
  align-items: flex-start;
  padding-top: 3.25rem !important;
  padding-bottom: 2.4rem !important;
}

.ta-public-shell .ta-footer--streamlined .ta-footer-brand-col,
.ta-public-shell .ta-footer--streamlined .ta-footer-link-col {
  height: auto;
  padding: 0;
  border: 0 !important;
  border-radius: 0;
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

.ta-public-shell .ta-footer--streamlined .ta-footer-brand-col {
  max-width: 22rem;
  border-left: 0 !important;
}

.ta-public-shell .ta-footer--streamlined .ta-footer-kicker {
  display: block;
  margin-bottom: .55rem;
  color: var(--acosa-orange);
  font-size: .72rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ta-public-shell .ta-footer--streamlined .ta-footer-subtitle {
  margin-bottom: .8rem;
  padding-bottom: .55rem;
}

.ta-public-shell .ta-footer--streamlined .ta-footer-links li {
  margin-bottom: .32rem;
}

.ta-public-shell .ta-footer--streamlined .ta-footer-cta-col {
  display: block;
  min-height: 100%;
  padding: 1.25rem 1.35rem;
  border: 1px solid rgba(255, 255, 255, .1) !important;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(254, 80, 0, .13), rgba(0, 178, 227, .06)) !important;
  box-shadow: none !important;
  transform: none !important;
}

.ta-public-shell .ta-footer--streamlined .ta-footer-cta-title {
  margin: 0 0 .55rem;
  color: #f5f5f7;
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  font-weight: 900;
  line-height: 1.2;
}

.ta-public-shell .ta-footer--streamlined .ta-footer-legal {
  display: flex;
  align-items: flex-start;
  gap: 1.4rem;
  padding: 1.15rem 0;
  border-top: 1px solid rgba(255, 255, 255, .1);
  border-bottom: 1px solid rgba(255, 255, 255, .1);
}

.ta-public-shell .ta-footer--streamlined .ta-footer-legal-title {
  flex: 0 0 auto;
  padding-top: .18rem;
  color: #f5f5f7;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .04em;
}

.ta-public-shell .ta-footer--streamlined .ta-footer-legal-links {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
  gap: .45rem 1.15rem;
}

.ta-public-shell .ta-footer--streamlined .ta-footer-legal-links a,
.ta-public-shell .ta-footer--streamlined .ta-footer-legal-links button {
  position: relative;
  padding: .12rem 0;
  border: 0;
  background: transparent;
  color: #8d8d98;
  font: inherit;
  font-size: .82rem;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: color .2s ease, transform .2s ease;
}

.ta-public-shell .ta-footer--streamlined .ta-footer-legal-links a:hover,
.ta-public-shell .ta-footer--streamlined .ta-footer-legal-links a:focus-visible,
.ta-public-shell .ta-footer--streamlined .ta-footer-legal-links button:hover,
.ta-public-shell .ta-footer--streamlined .ta-footer-legal-links button:focus-visible {
  color: var(--acosa-orange);
  transform: translateY(-1px);
}

html[data-theme="light"] .ta-public-shell .ta-footer--streamlined .ta-footer-kicker {
  color: rgba(255, 255, 255, .74);
}

html[data-theme="light"] .ta-public-shell .ta-footer--streamlined .ta-footer-brand-col,
html[data-theme="light"] .ta-public-shell .ta-footer--streamlined .ta-footer-link-col,
html[data-theme="light"] .ta-public-shell .ta-footer--streamlined .ta-footer-brand-col:hover,
html[data-theme="light"] .ta-public-shell .ta-footer--streamlined .ta-footer-link-col:hover {
  background: transparent !important;
  box-shadow: none !important;
  transform: none !important;
}

html[data-theme="light"] .ta-public-shell .ta-footer--streamlined .ta-footer-cta-col {
  border-color: rgba(255, 255, 255, .3) !important;
  background: rgba(255, 255, 255, .13) !important;
}

html[data-theme="light"] .ta-public-shell .ta-footer--streamlined .ta-footer-cta-title,
html[data-theme="light"] .ta-public-shell .ta-footer--streamlined .ta-footer-legal-title {
  color: #ffffff !important;
}

html[data-theme="light"] .ta-public-shell .ta-footer--streamlined .ta-footer-legal {
  border-color: rgba(255, 255, 255, .24);
}

html[data-theme="light"] .ta-public-shell .ta-footer--streamlined .ta-footer-legal-links a,
html[data-theme="light"] .ta-public-shell .ta-footer--streamlined .ta-footer-legal-links button {
  color: rgba(255, 255, 255, .8);
}

html[data-theme="light"] .ta-public-shell .ta-footer--streamlined .ta-footer-legal-links a:hover,
html[data-theme="light"] .ta-public-shell .ta-footer--streamlined .ta-footer-legal-links a:focus-visible,
html[data-theme="light"] .ta-public-shell .ta-footer--streamlined .ta-footer-legal-links button:hover,
html[data-theme="light"] .ta-public-shell .ta-footer--streamlined .ta-footer-legal-links button:focus-visible {
  color: #ffffff;
  text-shadow: 0 2px 12px rgba(94, 24, 0, .28);
}

@media (max-width: 767.98px) {
  .ta-public-shell .ta-footer--streamlined .ta-footer-main {
    padding-top: 2.35rem !important;
    padding-bottom: 1.65rem !important;
  }

  .ta-public-shell .ta-footer--streamlined .ta-footer-brand-col {
    max-width: none;
    padding-bottom: 1.15rem;
    border-bottom: 1px solid rgba(255, 255, 255, .16) !important;
  }

  .ta-public-shell .ta-footer--streamlined .ta-footer-cta-col {
    display: block;
    margin-top: .35rem;
  }

  .ta-public-shell .ta-footer--streamlined .ta-footer-legal {
    display: block;
  }

  .ta-public-shell .ta-footer--streamlined .ta-footer-legal-title {
    display: block;
    margin-bottom: .7rem;
  }

  .ta-public-shell .ta-footer--streamlined .ta-footer-legal-links {
    gap: .55rem 1rem;
  }
}

/* Mobile navigation final polish */
@media (max-width: 991.98px) {
  .ta-public-shell .ta-navbar,
  .ta-public-shell.ta-public-nav-scrolled .ta-navbar,
  html[data-theme="light"] .ta-public-shell .ta-navbar,
  html[data-theme="light"] .ta-public-shell.ta-public-nav-scrolled .ta-navbar {
    min-height: 64px !important;
    height: 64px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    transition: background-color .2s ease, border-color .2s ease, box-shadow .2s ease !important;
  }

  html[data-theme="light"] .ta-public-shell .ta-navbar,
  html[data-theme="light"] .ta-public-shell.ta-public-nav-scrolled .ta-navbar {
    background: #fe5000 !important;
    box-shadow: none !important;
  }

  html[data-theme="dark"] .ta-public-shell .ta-navbar,
  html[data-theme="dark"] .ta-public-shell.ta-public-nav-scrolled .ta-navbar {
    background: #050505 !important;
    box-shadow: none !important;
  }

  .ta-public-shell .ta-navbar .ta-container,
  .ta-public-shell .ta-navbar .container {
    height: 64px;
    display: flex;
    align-items: center;
  }

  .ta-public-shell .navbar-brand {
    gap: .52rem !important;
    max-width: calc(100vw - 8.8rem);
    font-size: .98rem !important;
    line-height: 1;
  }

  .ta-public-shell .navbar-brand::before {
    width: .72rem !important;
    height: .72rem !important;
    min-width: .72rem !important;
    border-radius: 999px !important;
    content: "" !important;
    padding: 0 !important;
  }

  .ta-public-shell .ta-mobile-header-actions {
    display: inline-flex !important;
    align-items: center;
    gap: .5rem;
    margin-left: auto;
  }

  .ta-public-shell .ta-mobile-header-actions .ta-theme-toggle,
  .ta-public-shell .navbar-toggler {
    width: 2.55rem !important;
    min-width: 2.55rem !important;
    height: 2.55rem !important;
    min-height: 2.55rem !important;
    padding: 0 !important;
    border-radius: 10px !important;
    display: inline-grid !important;
    place-items: center !important;
    transform: none !important;
  }

  .ta-public-shell .ta-mobile-header-actions .ta-theme-toggle::before {
    display: none !important;
    content: none !important;
  }

  .ta-public-shell .ta-mobile-header-actions .ta-theme-toggle-track {
    width: 2rem !important;
    height: 1.32rem !important;
    margin: 0 !important;
    padding: 0 .22rem !important;
  }

  .ta-public-shell .ta-mobile-header-actions .ta-theme-icon {
    width: .7rem !important;
    height: .7rem !important;
  }

  .ta-public-shell .ta-mobile-header-actions .ta-theme-thumb {
    width: 1.24rem !important;
    height: 1.24rem !important;
  }

  html[data-theme="dark"] .ta-public-shell .ta-mobile-header-actions .ta-theme-thumb {
    left: .72rem !important;
  }

  html[data-theme="light"] .ta-public-shell .ta-mobile-header-actions .ta-theme-toggle,
  html[data-theme="light"] .ta-public-shell .navbar-toggler {
    border: 1px solid rgba(255, 255, 255, .72) !important;
    background: #ffffff !important;
    color: #fe5000 !important;
    box-shadow: 0 8px 18px rgba(92, 24, 0, .16) !important;
  }

  html[data-theme="light"] .ta-public-shell .navbar-toggler-icon,
  html[data-theme="light"] .ta-public-shell .navbar-toggler-icon::before,
  html[data-theme="light"] .ta-public-shell .navbar-toggler-icon::after {
    border-color: #fe5000 !important;
    background: transparent !important;
  }

  html[data-theme="dark"] .ta-public-shell .ta-mobile-header-actions .ta-theme-toggle,
  html[data-theme="dark"] .ta-public-shell .navbar-toggler {
    border: 1px solid rgba(255, 255, 255, .14) !important;
    background: rgba(255, 255, 255, .06) !important;
    color: #ffffff !important;
    box-shadow: none !important;
  }

  .ta-public-shell .ta-theme-nav-item,
  .ta-public-shell .ta-theme-toggle-desktop {
    display: none !important;
  }

  .ta-public-shell .ta-nav-menu > .ta-theme-nav-item.nav-item {
    display: none !important;
  }

  .ta-public-shell .navbar-collapse {
    position: absolute !important;
    top: calc(100% + .55rem) !important;
    left: .9rem !important;
    right: .9rem !important;
    width: auto !important;
    max-height: calc(100vh - 5.5rem);
    overflow-y: auto;
    margin: 0 !important;
    padding: .45rem !important;
    border-radius: 14px !important;
  }

  html[data-theme="light"] .ta-public-shell .navbar-collapse {
    border: 1px solid rgba(254, 80, 0, .14) !important;
    background: #fffaf6 !important;
    box-shadow: 0 24px 52px rgba(65, 18, 0, .22) !important;
  }

  html[data-theme="dark"] .ta-public-shell .navbar-collapse {
    border: 1px solid rgba(255, 255, 255, .08) !important;
    background: rgba(10, 10, 14, .98) !important;
    box-shadow: 0 24px 52px rgba(0, 0, 0, .38) !important;
  }

  .ta-public-shell .ta-nav-menu {
    width: 100%;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: .08rem !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
  }

  .ta-public-shell .ta-nav-menu > .nav-item {
    width: 100%;
  }

  .ta-public-shell .ta-navbar .nav-link,
  .ta-public-shell .ta-navbar .dropdown-toggle,
  .ta-public-shell .ta-rh-btn,
  .ta-public-shell .ta-login-link {
    width: 100%;
    min-height: 2.7rem !important;
    justify-content: space-between !important;
    border: 0 !important;
    border-radius: 10px !important;
    padding: .72rem .78rem !important;
    box-shadow: none !important;
    font-size: .91rem !important;
    text-align: left !important;
  }

  html[data-theme="light"] .ta-public-shell .ta-navbar .nav-link,
  html[data-theme="light"] .ta-public-shell .ta-navbar .dropdown-toggle,
  html[data-theme="light"] .ta-public-shell .ta-rh-btn,
  html[data-theme="light"] .ta-public-shell .ta-login-link {
    color: #172033 !important;
    background: transparent !important;
  }

  html[data-theme="light"] .ta-public-shell .ta-navbar .nav-link:hover,
  html[data-theme="light"] .ta-public-shell .ta-navbar .nav-link:focus,
  html[data-theme="light"] .ta-public-shell .ta-navbar .nav-link.active,
  html[data-theme="light"] .ta-public-shell .ta-navbar .nav-link.show {
    color: #fe5000 !important;
    background: rgba(254, 80, 0, .09) !important;
  }

  .ta-public-shell .ta-navbar .nav-link.active {
    border-color: transparent !important;
    box-shadow: inset 3px 0 0 #fe5000 !important;
    font-weight: 850 !important;
  }

  .ta-public-shell .dropdown-menu,
  .ta-public-shell .ta-dropdown-menu {
    position: static !important;
    transform: none !important;
    width: 100%;
    margin: .18rem 0 .3rem !important;
    padding: .3rem !important;
    border-radius: 10px !important;
  }

  html[data-theme="light"] .ta-public-shell .dropdown-menu,
  html[data-theme="light"] .ta-public-shell .ta-dropdown-menu {
    border-color: rgba(254, 80, 0, .1) !important;
    background: #ffffff !important;
  }

  .ta-public-shell .dropdown-item {
    min-height: 2.35rem;
    display: flex;
    align-items: center;
    border-radius: 8px !important;
    padding: .6rem .66rem !important;
  }

  html[data-theme="light"] .ta-public-shell .dropdown-item {
    color: #172033 !important;
  }

  .ta-public-shell .ta-header-cta {
    width: 100%;
    min-height: 2.8rem !important;
    margin-top: .32rem;
    border-radius: 999px !important;
  }

  html[data-theme="light"] .ta-public-shell .ta-header-cta {
    border: 0 !important;
    background: #fe5000 !important;
    color: #ffffff !important;
    box-shadow: 0 12px 24px rgba(254, 80, 0, .18) !important;
  }
}

/* Final mobile header lock: keep the top bar still and the theme control icon-only. */
@media (max-width: 991.98px) {
  html,
  body.ta-public-shell {
    overflow-x: hidden !important;
  }

  body.ta-public-shell .ta-navbar,
  body.ta-public-shell.ta-public-nav-scrolled .ta-navbar,
  html[data-theme="light"] body.ta-public-shell .ta-navbar,
  html[data-theme="dark"] body.ta-public-shell .ta-navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 64px !important;
    min-height: 64px !important;
    transform: translate3d(0, 0, 0) !important;
    transition: none !important;
    animation: none !important;
    will-change: auto !important;
    backface-visibility: hidden !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  body.ta-public-shell .ta-mobile-header-actions .ta-theme-toggle-mobile {
    width: 2.75rem !important;
    min-width: 2.75rem !important;
    height: 2.75rem !important;
    min-height: 2.75rem !important;
    display: inline-grid !important;
    place-items: center !important;
    padding: 0 !important;
    border-radius: 12px !important;
  }

  body.ta-public-shell .ta-mobile-header-actions .ta-theme-toggle-mobile .ta-theme-toggle-track {
    width: 100% !important;
    height: 100% !important;
    display: grid !important;
    place-items: center !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: inherit !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body.ta-public-shell .ta-mobile-header-actions .ta-theme-toggle-mobile .ta-theme-thumb {
    display: none !important;
  }

  body.ta-public-shell .ta-mobile-header-actions .ta-theme-toggle-mobile .ta-theme-icon {
    position: static !important;
    width: 1.08rem !important;
    height: 1.08rem !important;
    opacity: 1 !important;
    transform: none !important;
  }

  html[data-theme="light"] body.ta-public-shell .ta-mobile-header-actions .ta-theme-toggle-mobile {
    border: 1px solid rgba(255, 255, 255, .72) !important;
    background: #ffffff !important;
    color: #fe5000 !important;
  }

  html[data-theme="dark"] body.ta-public-shell .ta-mobile-header-actions .ta-theme-toggle-mobile {
    border: 1px solid rgba(255, 255, 255, .16) !important;
    background: rgba(255, 255, 255, .08) !important;
    color: #ffffff !important;
  }

  html[data-theme="light"] body.ta-public-shell .ta-mobile-header-actions .ta-theme-toggle-mobile .ta-theme-icon-sun,
  html[data-theme="dark"] body.ta-public-shell .ta-mobile-header-actions .ta-theme-toggle-mobile .ta-theme-icon-moon {
    display: none !important;
  }

  html[data-theme="light"] body.ta-public-shell .ta-mobile-header-actions .ta-theme-toggle-mobile .ta-theme-icon-moon,
  html[data-theme="dark"] body.ta-public-shell .ta-mobile-header-actions .ta-theme-toggle-mobile .ta-theme-icon-sun {
    display: block !important;
  }
}

/* Public header and internship CTA refinements - 2026-07-29 */
@media (min-width: 992px) {
  .ta-public-shell .ta-navbar .ta-container,
  .ta-public-shell .ta-navbar .container {
    width: min(calc(100% - 2.5rem), 1380px) !important;
  }

  .ta-public-shell .ta-navbar .navbar-collapse {
    min-width: 0;
  }

  .ta-public-shell .ta-navbar .ta-nav-menu {
    max-width: none;
    padding-inline: .38rem;
  }

  .ta-public-shell .ta-navbar .nav-link,
  .ta-public-shell .ta-navbar .dropdown-toggle {
    padding-inline: .68rem !important;
  }
}

.ta-public-shell .ta-internship-cta.is-home {
  z-index: 2;
  margin-top: 0;
  padding-top: clamp(2rem, 4vw, 3rem);
  padding-bottom: clamp(2rem, 4vw, 3rem);
  border-top: 0;
  background: var(--page-bg);
}

html[data-theme="light"] .ta-public-shell .ta-internship-cta.is-home {
  background: var(--page-bg);
}

@media (max-width: 767.98px) {
  .ta-public-shell .ta-internship-cta.is-home {
    margin-top: 0;
    padding-top: 1.5rem;
    padding-bottom: 1.75rem;
  }
}

/* Vacancy detail: compact, action-first mobile flow. */
@media (max-width: 767.98px) {
  body.ta-public-shell .ta-job-detail-hero {
    min-height: 0 !important;
    padding: 1.5rem 0 1.65rem !important;
  }

  body.ta-public-shell .ta-job-detail-hero .container,
  body.ta-public-shell .ta-job-detail-body > .container {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  body.ta-public-shell .ta-job-detail-hero .row,
  body.ta-public-shell .ta-job-detail-body > .container > .row {
    --bs-gutter-y: .85rem;
  }

  body.ta-public-shell .ta-job-detail-hero h1 {
    margin-bottom: .75rem !important;
    font-size: 2rem !important;
    line-height: 1.08 !important;
  }

  body.ta-public-shell .ta-job-detail-hero .lead {
    margin-bottom: 1rem !important;
    font-size: .98rem !important;
  }

  body.ta-public-shell .ta-job-detail-body {
    padding: 1rem 0 1.25rem !important;
  }

  body.ta-public-shell .ta-job-detail-body .ta-job-detail-aside {
    order: -1;
  }

  body.ta-public-shell .ta-job-detail-body .ta-detail-card {
    margin-bottom: .75rem !important;
    padding: 1.15rem !important;
  }

  body.ta-public-shell .ta-job-detail-body .ta-detail-card h2,
  body.ta-public-shell .ta-job-detail-body .ta-detail-card h3 {
    margin-bottom: .65rem !important;
    font-size: 1.2rem !important;
  }

  body.ta-public-shell .ta-job-detail-body .ta-detail-card p,
  body.ta-public-shell .ta-job-detail-body .ta-detail-card div {
    line-height: 1.55;
  }

  body.ta-public-shell .ta-job-detail-body .ta-apply-sticky-card {
    position: static !important;
    top: auto !important;
    margin-top: 0 !important;
  }

  body.ta-public-shell .ta-job-detail-body .ta-primary-action {
    min-height: 2.8rem !important;
  }
}

/* Empty jobs state */
.ta-public-shell .ta-no-jobs-state {
  position: relative;
  overflow: hidden;
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(1.6rem, 4vw, 2.5rem);
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1.25rem;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, .10);
  border-radius: 18px;
  background:
    radial-gradient(circle at 12% 18%, rgba(254, 80, 0, .18), transparent 15rem),
    rgba(14, 18, 28, .78);
  box-shadow: 0 24px 60px rgba(0, 0, 0, .22);
}

.ta-public-shell .ta-no-jobs-state::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, #fe5000, #ff9a3d, #005eb8);
}

.ta-public-shell .ta-no-jobs-icon {
  width: 4rem;
  height: 4rem;
  display: grid;
  place-items: center;
  border-radius: 18px;
  background: linear-gradient(135deg, #fe5000, #ff8a3d);
  color: #ffffff;
  box-shadow: 0 18px 36px rgba(254, 80, 0, .28);
}

.ta-public-shell .ta-no-jobs-icon [data-ta-icon],
.ta-public-shell .ta-no-jobs-icon svg {
  width: 1.55rem !important;
  height: 1.55rem !important;
}

.ta-public-shell .ta-no-jobs-kicker {
  display: inline-flex;
  margin-bottom: .35rem;
  color: #ffb27a;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.ta-public-shell .ta-no-jobs-copy h3 {
  margin: 0 0 .55rem;
  color: #ffffff;
  font-size: clamp(1.35rem, 3vw, 2rem);
  font-weight: 950;
  letter-spacing: 0;
}

.ta-public-shell .ta-no-jobs-copy p {
  max-width: 42rem;
  margin: 0;
  color: rgba(255, 255, 255, .74);
  line-height: 1.65;
}

.ta-public-shell .ta-no-jobs-actions {
  grid-column: 2;
  display: flex;
  flex-wrap: wrap;
  gap: .75rem;
}

html[data-theme="light"] .ta-public-shell .ta-no-jobs-state {
  border-color: rgba(254, 80, 0, .16);
  background:
    radial-gradient(circle at 12% 18%, rgba(254, 80, 0, .14), transparent 15rem),
    #ffffff;
  box-shadow: 0 24px 60px rgba(15, 23, 42, .09);
}

html[data-theme="light"] .ta-public-shell .ta-no-jobs-kicker {
  color: #b44300;
}

html[data-theme="light"] .ta-public-shell .ta-no-jobs-copy h3 {
  color: #121826;
}

html[data-theme="light"] .ta-public-shell .ta-no-jobs-copy p {
  color: #5f6b7a;
}

@media (max-width: 767.98px) {
  .ta-public-shell .ta-no-jobs-state {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }

  .ta-public-shell .ta-no-jobs-actions {
    grid-column: 1;
    justify-content: center;
  }
}

/* Theme toggle contrast polish: desktop pill + mobile icon button. */
html[data-theme] body.ta-public-shell .ta-navbar .ta-theme-toggle {
  border-color: rgba(255, 255, 255, .42) !important;
  background: rgba(4, 7, 13, .28) !important;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .18), 0 10px 22px rgba(0, 0, 0, .18) !important;
}

html[data-theme] body.ta-public-shell .ta-navbar .ta-theme-toggle-track {
  border-color: rgba(255, 255, 255, .42) !important;
  background: rgba(7, 12, 22, .78) !important;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .08) !important;
}

html[data-theme] body.ta-public-shell .ta-navbar .ta-theme-icon {
  color: rgba(255, 255, 255, .84) !important;
  opacity: 1 !important;
}

html[data-theme="light"] body.ta-public-shell .ta-navbar .ta-theme-icon-sun,
html[data-theme="dark"] body.ta-public-shell .ta-navbar .ta-theme-icon-moon {
  color: #ffffff !important;
}

html[data-theme] body.ta-public-shell .ta-navbar .ta-theme-thumb {
  background: #fe5000 !important;
  box-shadow: 0 4px 12px rgba(0, 0, 0, .28), inset 0 1px 0 rgba(255, 255, 255, .28) !important;
}

@media (max-width: 991.98px) {
  html[data-theme] body.ta-public-shell .ta-navbar .ta-mobile-header-actions .ta-theme-toggle.ta-theme-toggle-mobile {
    position: relative !important;
    overflow: hidden !important;
    border: 1px solid rgba(255, 255, 255, .48) !important;
    background: rgba(7, 12, 22, .34) !important;
    color: #ffffff !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, .16), 0 8px 18px rgba(0, 0, 0, .16) !important;
  }

  html[data-theme="dark"] body.ta-public-shell .ta-navbar .ta-mobile-header-actions .ta-theme-toggle.ta-theme-toggle-mobile {
    border-color: rgba(255, 255, 255, .2) !important;
    background: rgba(255, 255, 255, .08) !important;
  }

  html[data-theme] body.ta-public-shell .ta-navbar .ta-mobile-header-actions .ta-theme-toggle.ta-theme-toggle-mobile .ta-theme-toggle-track {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  html[data-theme] body.ta-public-shell .ta-navbar .ta-mobile-header-actions .ta-theme-toggle.ta-theme-toggle-mobile .ta-theme-thumb {
    display: none !important;
  }

  html[data-theme] body.ta-public-shell .ta-navbar .ta-mobile-header-actions .ta-theme-toggle.ta-theme-toggle-mobile .ta-theme-icon {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 17px !important;
    height: 17px !important;
    margin: 0 !important;
    color: #ffffff !important;
    opacity: 1 !important;
    transform: translate(-50%, -50%) !important;
  }

  html[data-theme="light"] body.ta-public-shell .ta-navbar .ta-mobile-header-actions .ta-theme-toggle.ta-theme-toggle-mobile .ta-theme-icon-sun,
  html[data-theme="dark"] body.ta-public-shell .ta-navbar .ta-mobile-header-actions .ta-theme-toggle.ta-theme-toggle-mobile .ta-theme-icon-moon {
    display: none !important;
  }

  html[data-theme="light"] body.ta-public-shell .ta-navbar .ta-mobile-header-actions .ta-theme-toggle.ta-theme-toggle-mobile .ta-theme-icon-moon,
  html[data-theme="dark"] body.ta-public-shell .ta-navbar .ta-mobile-header-actions .ta-theme-toggle.ta-theme-toggle-mobile .ta-theme-icon-sun {
    display: block !important;
  }

  html[data-theme="light"] body.ta-public-shell .ta-navbar .ta-mobile-header-actions .ta-theme-toggle.ta-theme-toggle-mobile .ta-theme-icon-moon {
    transform: translate(-50%, -50%) translateX(1px) !important;
  }
}

/* Hard override for the mobile theme icon alignment. */
@media (max-width: 991.98px) {
  html[data-theme] body.ta-public-shell .ta-navbar .ta-mobile-header-actions .ta-theme-toggle.ta-theme-toggle-mobile {
    position: relative !important;
    overflow: hidden !important;
  }

  html[data-theme] body.ta-public-shell .ta-navbar .ta-mobile-header-actions .ta-theme-toggle.ta-theme-toggle-mobile .ta-theme-toggle-track {
    position: absolute !important;
    inset: 0 !important;
    width: 100% !important;
    height: 100% !important;
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
  }

  html[data-theme] body.ta-public-shell .ta-navbar .ta-mobile-header-actions .ta-theme-toggle.ta-theme-toggle-mobile .ta-theme-icon {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    width: 17px !important;
    height: 17px !important;
    margin: 0 !important;
    transform: translate(-50%, -50%) !important;
  }

  html[data-theme="light"] body.ta-public-shell .ta-navbar .ta-mobile-header-actions .ta-theme-toggle.ta-theme-toggle-mobile .ta-theme-icon-moon {
    transform: translate(-50%, -50%) translateX(1px) !important;
  }
}

/* Center the mobile theme icon inside its square button. */
@media (max-width: 991.98px) {
  body.ta-public-shell .ta-mobile-header-actions .ta-theme-toggle-mobile .ta-theme-toggle-track {
    position: relative !important;
  }

  body.ta-public-shell .ta-mobile-header-actions .ta-theme-toggle-mobile .ta-theme-icon {
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    margin: 0 !important;
    transform: translate(-50%, -50%) !important;
  }

  body.ta-public-shell .ta-mobile-header-actions .ta-theme-toggle-mobile .ta-theme-icon-moon {
    transform: translate(-50%, -50%) translateX(1px) !important;
  }
}

/* Final mobile header lock: keep the top bar still and the theme control icon-only. */
@media (max-width: 991.98px) {
  html,
  body.ta-public-shell {
    overflow-x: hidden !important;
  }

  body.ta-public-shell .ta-navbar,
  body.ta-public-shell.ta-public-nav-scrolled .ta-navbar,
  html[data-theme="light"] body.ta-public-shell .ta-navbar,
  html[data-theme="dark"] body.ta-public-shell .ta-navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 64px !important;
    min-height: 64px !important;
    transform: translate3d(0, 0, 0) !important;
    transition: none !important;
    animation: none !important;
    will-change: auto !important;
    backface-visibility: hidden !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  body.ta-public-shell .ta-mobile-header-actions .ta-theme-toggle-mobile {
    width: 2.75rem !important;
    min-width: 2.75rem !important;
    height: 2.75rem !important;
    min-height: 2.75rem !important;
    display: inline-grid !important;
    place-items: center !important;
    padding: 0 !important;
    border-radius: 12px !important;
  }

  body.ta-public-shell .ta-mobile-header-actions .ta-theme-toggle-mobile .ta-theme-toggle-track {
    width: 100% !important;
    height: 100% !important;
    display: grid !important;
    place-items: center !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: inherit !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body.ta-public-shell .ta-mobile-header-actions .ta-theme-toggle-mobile .ta-theme-thumb {
    display: none !important;
  }

  body.ta-public-shell .ta-mobile-header-actions .ta-theme-toggle-mobile .ta-theme-icon {
    position: static !important;
    width: 1.08rem !important;
    height: 1.08rem !important;
    opacity: 1 !important;
    transform: none !important;
  }

  html[data-theme="light"] body.ta-public-shell .ta-mobile-header-actions .ta-theme-toggle-mobile {
    border: 1px solid rgba(255, 255, 255, .72) !important;
    background: #ffffff !important;
    color: #fe5000 !important;
  }

  html[data-theme="dark"] body.ta-public-shell .ta-mobile-header-actions .ta-theme-toggle-mobile {
    border: 1px solid rgba(255, 255, 255, .16) !important;
    background: rgba(255, 255, 255, .08) !important;
    color: #ffffff !important;
  }

  html[data-theme="light"] body.ta-public-shell .ta-mobile-header-actions .ta-theme-toggle-mobile .ta-theme-icon-sun,
  html[data-theme="dark"] body.ta-public-shell .ta-mobile-header-actions .ta-theme-toggle-mobile .ta-theme-icon-moon {
    display: none !important;
  }

  html[data-theme="light"] body.ta-public-shell .ta-mobile-header-actions .ta-theme-toggle-mobile .ta-theme-icon-moon,
  html[data-theme="dark"] body.ta-public-shell .ta-mobile-header-actions .ta-theme-toggle-mobile .ta-theme-icon-sun {
    display: block !important;
  }
}

/* Mobile theme button: icon-only, no cramped switch. */
@media (max-width: 991.98px) {
  .ta-public-shell .ta-mobile-header-actions .ta-theme-toggle-mobile {
    width: 2.55rem !important;
    min-width: 2.55rem !important;
    height: 2.55rem !important;
    min-height: 2.55rem !important;
    padding: 0 !important;
    border-radius: 10px !important;
    overflow: hidden;
  }

  .ta-public-shell .ta-mobile-header-actions .ta-theme-toggle-mobile .ta-theme-toggle-track {
    width: 100% !important;
    height: 100% !important;
    display: grid !important;
    place-items: center !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
  }

  .ta-public-shell .ta-mobile-header-actions .ta-theme-toggle-mobile .ta-theme-thumb {
    display: none !important;
  }

  .ta-public-shell .ta-mobile-header-actions .ta-theme-toggle-mobile .ta-theme-icon {
    position: static !important;
    width: 1.08rem !important;
    height: 1.08rem !important;
    opacity: 1 !important;
    color: currentColor !important;
  }

  html[data-theme="light"] .ta-public-shell .ta-mobile-header-actions .ta-theme-toggle-mobile .ta-theme-icon-sun {
    display: none !important;
  }

  html[data-theme="light"] .ta-public-shell .ta-mobile-header-actions .ta-theme-toggle-mobile .ta-theme-icon-moon {
    display: block !important;
  }

  html[data-theme="dark"] .ta-public-shell .ta-mobile-header-actions .ta-theme-toggle-mobile .ta-theme-icon-sun {
    display: block !important;
  }

  html[data-theme="dark"] .ta-public-shell .ta-mobile-header-actions .ta-theme-toggle-mobile .ta-theme-icon-moon {
    display: none !important;
  }
}

.ta-public-shell .ta-mobile-header-actions {
  display: none;
}

@media (min-width: 992px) {
  .ta-public-shell .ta-theme-toggle-mobile {
    display: none !important;
  }
}

/* Refined mobile header controls */
@media (max-width: 991.98px) {
  .ta-public-shell .ta-navbar {
    min-height: 66px !important;
    padding-top: .5rem !important;
    padding-bottom: .5rem !important;
  }

  .ta-public-shell .navbar-brand {
    max-width: calc(100vw - 8.2rem);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .ta-public-shell .ta-mobile-header-actions {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    margin-left: auto;
  }

  .ta-public-shell .ta-mobile-header-actions .ta-theme-toggle,
  .ta-public-shell .navbar-toggler {
    width: 2.72rem !important;
    min-width: 2.72rem !important;
    height: 2.72rem !important;
    min-height: 2.72rem !important;
    padding: 0 !important;
    border-radius: 12px !important;
    justify-content: center !important;
  }

  .ta-public-shell .ta-mobile-header-actions .ta-theme-toggle::before {
    display: none !important;
    content: none !important;
  }

  .ta-public-shell .ta-theme-nav-item {
    display: none !important;
  }

  .ta-public-shell .navbar-collapse {
    top: calc(100% + .55rem);
    left: .75rem;
    right: .75rem;
    width: auto;
  }

  .ta-public-shell .ta-mobile-header-actions .ta-theme-toggle-track {
    width: 2.1rem;
    height: 1.38rem;
    margin-left: 0;
    padding: 0 .24rem;
    border-radius: 999px;
  }

  .ta-public-shell .ta-mobile-header-actions .ta-theme-icon {
    width: .74rem;
    height: .74rem;
  }

  .ta-public-shell .ta-mobile-header-actions .ta-theme-thumb {
    width: 1.3rem;
    height: 1.3rem;
  }

  html[data-theme="dark"] .ta-public-shell .ta-mobile-header-actions .ta-theme-thumb {
    left: .76rem !important;
  }

  html[data-theme="light"] .ta-public-shell .ta-mobile-header-actions .ta-theme-toggle,
  html[data-theme="light"] .ta-public-shell .navbar-toggler {
    border-color: rgba(255, 255, 255, .84) !important;
    background: #ffffff !important;
    color: #fe5000 !important;
    box-shadow: 0 10px 24px rgba(99, 27, 0, .2) !important;
  }

  html[data-theme="light"] .ta-public-shell .ta-mobile-header-actions .ta-theme-toggle-track {
    border-color: rgba(254, 80, 0, .18) !important;
    background: rgba(254, 80, 0, .08) !important;
  }

  html[data-theme="light"] .ta-public-shell .ta-mobile-header-actions .ta-theme-icon {
    color: #fe5000 !important;
    opacity: .9;
  }

  html[data-theme="light"] .ta-public-shell .navbar-toggler-icon,
  html[data-theme="light"] .ta-public-shell .navbar-toggler-icon::before,
  html[data-theme="light"] .ta-public-shell .navbar-toggler-icon::after {
    border-color: #fe5000 !important;
    background: transparent !important;
  }

  html[data-theme="dark"] .ta-public-shell .ta-mobile-header-actions .ta-theme-toggle,
  html[data-theme="dark"] .ta-public-shell .navbar-toggler {
    border-color: rgba(255, 255, 255, .18) !important;
    background: rgba(255, 255, 255, .06) !important;
    color: #ffffff !important;
    box-shadow: none !important;
  }

  html[data-theme="dark"] .ta-public-shell .navbar-toggler-icon,
  html[data-theme="dark"] .ta-public-shell .navbar-toggler-icon::before,
  html[data-theme="dark"] .ta-public-shell .navbar-toggler-icon::after {
    border-color: #ffffff !important;
    background: transparent !important;
  }
}

/* Final mobile nav override: wins over older navbar rules. */
@media (max-width: 991.98px) {
  .ta-public-shell .ta-navbar,
  .ta-public-shell.ta-public-nav-scrolled .ta-navbar,
  html[data-theme="light"] .ta-public-shell .ta-navbar,
  html[data-theme="light"] .ta-public-shell.ta-public-nav-scrolled .ta-navbar,
  html[data-theme="dark"] .ta-public-shell .ta-navbar,
  html[data-theme="dark"] .ta-public-shell.ta-public-nav-scrolled .ta-navbar {
    min-height: 64px !important;
    height: 64px !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
    box-shadow: none !important;
    transition: background-color .18s ease, border-color .18s ease !important;
  }

  html[data-theme="light"] .ta-public-shell .ta-navbar,
  html[data-theme="light"] .ta-public-shell.ta-public-nav-scrolled .ta-navbar {
    background: #fe5000 !important;
  }

  html[data-theme="dark"] .ta-public-shell .ta-navbar,
  html[data-theme="dark"] .ta-public-shell.ta-public-nav-scrolled .ta-navbar {
    background: #050505 !important;
  }

  .ta-public-shell .ta-navbar .ta-container,
  .ta-public-shell .ta-navbar .container {
    height: 64px !important;
    display: flex !important;
    align-items: center !important;
  }

  .ta-public-shell .navbar-brand {
    max-width: calc(100vw - 8.8rem) !important;
    gap: .52rem !important;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .ta-public-shell .navbar-brand::before {
    width: .72rem !important;
    height: .72rem !important;
    min-width: .72rem !important;
    border-radius: 999px !important;
    content: "" !important;
  }

  .ta-public-shell .ta-mobile-header-actions {
    display: inline-flex !important;
    align-items: center !important;
    gap: .5rem !important;
    margin-left: auto !important;
  }

  .ta-public-shell .ta-theme-nav-item,
  .ta-public-shell .ta-theme-toggle-desktop {
    display: none !important;
  }

  .ta-public-shell .ta-mobile-header-actions .ta-theme-toggle,
  .ta-public-shell .navbar-toggler {
    width: 2.55rem !important;
    min-width: 2.55rem !important;
    height: 2.55rem !important;
    min-height: 2.55rem !important;
    padding: 0 !important;
    border-radius: 10px !important;
    display: inline-grid !important;
    place-items: center !important;
    transform: none !important;
  }

  .ta-public-shell .ta-mobile-header-actions .ta-theme-toggle::before {
    display: none !important;
    content: none !important;
  }

  html[data-theme="light"] .ta-public-shell .ta-mobile-header-actions .ta-theme-toggle,
  html[data-theme="light"] .ta-public-shell .navbar-toggler {
    border: 1px solid rgba(255, 255, 255, .72) !important;
    background: #ffffff !important;
    color: #fe5000 !important;
    box-shadow: 0 8px 18px rgba(92, 24, 0, .16) !important;
  }

  html[data-theme="dark"] .ta-public-shell .ta-mobile-header-actions .ta-theme-toggle,
  html[data-theme="dark"] .ta-public-shell .navbar-toggler {
    border: 1px solid rgba(255, 255, 255, .14) !important;
    background: rgba(255, 255, 255, .06) !important;
    color: #ffffff !important;
    box-shadow: none !important;
  }

  .ta-public-shell .ta-mobile-header-actions .ta-theme-toggle-track {
    width: 2rem !important;
    height: 1.32rem !important;
    margin: 0 !important;
    padding: 0 .22rem !important;
  }

  .ta-public-shell .ta-mobile-header-actions .ta-theme-icon {
    width: .7rem !important;
    height: .7rem !important;
  }

  .ta-public-shell .ta-mobile-header-actions .ta-theme-thumb {
    width: 1.24rem !important;
    height: 1.24rem !important;
  }

  html[data-theme="dark"] .ta-public-shell .ta-mobile-header-actions .ta-theme-thumb {
    left: .72rem !important;
  }

  html[data-theme="light"] .ta-public-shell .navbar-toggler-icon,
  html[data-theme="light"] .ta-public-shell .navbar-toggler-icon::before,
  html[data-theme="light"] .ta-public-shell .navbar-toggler-icon::after {
    border-color: #fe5000 !important;
    background: transparent !important;
  }

  html[data-theme="dark"] .ta-public-shell .navbar-toggler-icon,
  html[data-theme="dark"] .ta-public-shell .navbar-toggler-icon::before,
  html[data-theme="dark"] .ta-public-shell .navbar-toggler-icon::after {
    border-color: #ffffff !important;
    background: transparent !important;
  }

  .ta-public-shell .navbar-collapse {
    position: absolute !important;
    top: calc(100% + .55rem) !important;
    left: .9rem !important;
    right: .9rem !important;
    width: auto !important;
    max-height: calc(100vh - 5.5rem) !important;
    overflow-y: auto !important;
    margin: 0 !important;
    padding: .45rem !important;
    border-radius: 14px !important;
  }

  html[data-theme="light"] .ta-public-shell .navbar-collapse {
    border: 1px solid rgba(254, 80, 0, .14) !important;
    background: #fffaf6 !important;
    box-shadow: 0 24px 52px rgba(65, 18, 0, .22) !important;
  }

  html[data-theme="dark"] .ta-public-shell .navbar-collapse {
    border: 1px solid rgba(255, 255, 255, .08) !important;
    background: rgba(10, 10, 14, .98) !important;
    box-shadow: 0 24px 52px rgba(0, 0, 0, .38) !important;
  }

  .ta-public-shell .ta-nav-menu {
    width: 100% !important;
    flex-direction: column !important;
    align-items: stretch !important;
    gap: .08rem !important;
    padding: 0 !important;
    border: 0 !important;
    background: transparent !important;
  }

  .ta-public-shell .ta-nav-menu > .nav-item {
    width: 100% !important;
  }

  .ta-public-shell .ta-navbar .nav-link,
  .ta-public-shell .ta-navbar .dropdown-toggle,
  .ta-public-shell .ta-rh-btn,
  .ta-public-shell .ta-login-link {
    width: 100% !important;
    min-height: 2.7rem !important;
    justify-content: space-between !important;
    border: 0 !important;
    border-radius: 10px !important;
    padding: .72rem .78rem !important;
    box-shadow: none !important;
    font-size: .91rem !important;
    text-align: left !important;
  }

  html[data-theme="light"] .ta-public-shell .ta-navbar .nav-link,
  html[data-theme="light"] .ta-public-shell .ta-navbar .dropdown-toggle,
  html[data-theme="light"] .ta-public-shell .ta-rh-btn,
  html[data-theme="light"] .ta-public-shell .ta-login-link {
    color: #172033 !important;
    background: transparent !important;
  }

  html[data-theme="light"] .ta-public-shell .ta-navbar .nav-link:hover,
  html[data-theme="light"] .ta-public-shell .ta-navbar .nav-link:focus,
  html[data-theme="light"] .ta-public-shell .ta-navbar .nav-link.active,
  html[data-theme="light"] .ta-public-shell .ta-navbar .nav-link.show {
    color: #fe5000 !important;
    background: rgba(254, 80, 0, .09) !important;
  }

  .ta-public-shell .ta-navbar .nav-link.active {
    box-shadow: inset 3px 0 0 #fe5000 !important;
    font-weight: 850 !important;
  }

  .ta-public-shell .dropdown-menu,
  .ta-public-shell .ta-dropdown-menu {
    position: static !important;
    transform: none !important;
    width: 100% !important;
    margin: .18rem 0 .3rem !important;
    padding: .3rem !important;
    border-radius: 10px !important;
  }

  html[data-theme="light"] .ta-public-shell .dropdown-menu,
  html[data-theme="light"] .ta-public-shell .ta-dropdown-menu {
    border-color: rgba(254, 80, 0, .1) !important;
    background: #ffffff !important;
  }

  .ta-public-shell .dropdown-item {
    min-height: 2.35rem !important;
    display: flex !important;
    align-items: center !important;
    border-radius: 8px !important;
    padding: .6rem .66rem !important;
  }

  html[data-theme="light"] .ta-public-shell .dropdown-item {
    color: #172033 !important;
  }

  .ta-public-shell .ta-header-cta {
    width: 100% !important;
    min-height: 2.8rem !important;
    margin-top: .32rem !important;
    border-radius: 999px !important;
  }

  html[data-theme="light"] .ta-public-shell .ta-header-cta {
    border: 0 !important;
    background: #fe5000 !important;
    color: #ffffff !important;
    box-shadow: 0 12px 24px rgba(254, 80, 0, .18) !important;
  }
}

/* Final mobile header lock at EOF: keep the top bar still and the theme control icon-only. */
@media (max-width: 991.98px) {
  html,
  body.ta-public-shell {
    overflow-x: hidden !important;
  }

  body.ta-public-shell .ta-navbar,
  body.ta-public-shell.ta-public-nav-scrolled .ta-navbar,
  html[data-theme="light"] body.ta-public-shell .ta-navbar,
  html[data-theme="dark"] body.ta-public-shell .ta-navbar {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 64px !important;
    min-height: 64px !important;
    transform: translate3d(0, 0, 0) !important;
    transition: none !important;
    animation: none !important;
    will-change: auto !important;
    backface-visibility: hidden !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
  }

  body.ta-public-shell .ta-mobile-header-actions .ta-theme-toggle-mobile {
    width: 2.75rem !important;
    min-width: 2.75rem !important;
    height: 2.75rem !important;
    min-height: 2.75rem !important;
    display: inline-grid !important;
    place-items: center !important;
    padding: 0 !important;
    border-radius: 12px !important;
  }

  body.ta-public-shell .ta-mobile-header-actions .ta-theme-toggle-mobile .ta-theme-toggle-track {
    width: 100% !important;
    height: 100% !important;
    display: grid !important;
    place-items: center !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: inherit !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body.ta-public-shell .ta-mobile-header-actions .ta-theme-toggle-mobile .ta-theme-thumb {
    display: none !important;
  }

  body.ta-public-shell .ta-mobile-header-actions .ta-theme-toggle-mobile .ta-theme-icon {
    position: static !important;
    width: 1.08rem !important;
    height: 1.08rem !important;
    opacity: 1 !important;
    transform: none !important;
  }

  html[data-theme="light"] body.ta-public-shell .ta-mobile-header-actions .ta-theme-toggle-mobile {
    border: 1px solid rgba(255, 255, 255, .72) !important;
    background: #ffffff !important;
    color: #fe5000 !important;
  }

  html[data-theme="dark"] body.ta-public-shell .ta-mobile-header-actions .ta-theme-toggle-mobile {
    border: 1px solid rgba(255, 255, 255, .16) !important;
    background: rgba(255, 255, 255, .08) !important;
    color: #ffffff !important;
  }

  html[data-theme="light"] body.ta-public-shell .ta-mobile-header-actions .ta-theme-toggle-mobile .ta-theme-icon-sun,
  html[data-theme="dark"] body.ta-public-shell .ta-mobile-header-actions .ta-theme-toggle-mobile .ta-theme-icon-moon {
    display: none !important;
  }

  html[data-theme="light"] body.ta-public-shell .ta-mobile-header-actions .ta-theme-toggle-mobile .ta-theme-icon-moon,
  html[data-theme="dark"] body.ta-public-shell .ta-mobile-header-actions .ta-theme-toggle-mobile .ta-theme-icon-sun {
    display: block !important;
  }
}
