/* ==================================
   Talento ACOSA Public Design System
================================== */

body.ta-public-shell {
  --acosa: #fe5000;
  --acosa-orange: #fe5000;
  --acosa-orange-hover: #db4600;
  --acosa-blue: #00b2e3;
  --acosa-black: #000000;
  --acosa-dark: #0f172a;
  --acosa-navy: #10233e;
  --acosa-ink: #101828;
  --acosa-muted: #667085;
  --acosa-soft: #f6f8fb;
  --acosa-gray: #d9d8d6;
  --ta-public-bg: #f6f8fb;
  --ta-public-bg-soft: #eef6f9;
  --ta-public-surface: #ffffff;
  --ta-public-surface-soft: #f8fafc;
  --ta-public-card: #ffffff;
  --ta-public-text: #101828;
  --ta-public-muted: #667085;
  --ta-public-border: #e4e7ec;
  --ta-public-border-strong: #d0d5dd;
  --ta-public-shadow: 0 16px 38px rgba(16, 24, 40, .09);
  --ta-public-shadow-soft: 0 8px 22px rgba(16, 24, 40, .06);
  --ta-public-shadow-lift: 0 16px 34px rgba(16, 24, 40, .10);
  --ta-public-radius: 8px;
  --ta-public-radius-sm: 6px;
  --ta-public-radius-lg: 8px;
  --ta-public-gradient-dark: linear-gradient(135deg, #020617 0%, #10233e 62%, #073b4c 100%);
  --ta-public-gradient-accent: linear-gradient(90deg, #fe5000 0%, #00b2e3 100%);
  --ta-public-navbar-height: 76px;
  --ta-public-space-1: .25rem;
  --ta-public-space-2: .5rem;
  --ta-public-space-3: .75rem;
  --ta-public-space-4: 1rem;
  --ta-public-space-5: 1.25rem;
  --ta-public-space-6: 1.5rem;
  --ta-public-space-8: 2rem;
  --ta-public-space-10: 2.5rem;
  --ta-public-space-12: 3rem;
  --ta-public-transition: 220ms cubic-bezier(.2, .8, .2, 1);

  min-height: 100vh;
  background:
    radial-gradient(circle at top left, rgba(0, 178, 227, .08), transparent 30rem),
    linear-gradient(180deg, #fbfcfe 0%, var(--ta-public-bg) 42%, #ffffff 100%);
  color: var(--ta-public-text);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.ta-public-shell.ta-country-gate-locked {
  overflow: hidden;
}

.ta-public-shell a {
  transition: color var(--ta-public-transition), background-color var(--ta-public-transition), border-color var(--ta-public-transition), box-shadow var(--ta-public-transition), transform var(--ta-public-transition);
}

.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-public-text);
  letter-spacing: 0;
}

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

.ta-public-shell .text-white h1,
.ta-public-shell .text-white h2,
.ta-public-shell .text-white h3,
.ta-public-shell .text-white h4,
.ta-public-shell .text-white h5,
.ta-public-shell .text-white h6,
.ta-public-shell [style*="color:#fff"] h1,
.ta-public-shell [style*="color:#fff"] h2,
.ta-public-shell [style*="color:#fff"] h3 {
  color: #ffffff;
}

.ta-public-shell .text-white-50 {
  color: rgba(255, 255, 255, .72) !important;
}

.ta-public-shell .ta-page-hero h1,
.ta-public-shell .ta-page-hero h2,
.ta-public-shell .hero-gradient h1,
.ta-public-shell .hero-gradient h2,
.ta-public-shell .country-hero h1,
.ta-public-shell .country-hero h2,
.ta-public-shell [style*="background:linear-gradient"] h1,
.ta-public-shell [style*="background:linear-gradient"] h2 {
  color: #ffffff;
}

.ta-public-shell .ta-page-hero p,
.ta-public-shell .hero-gradient p,
.ta-public-shell .country-hero p,
.ta-public-shell [style*="background:linear-gradient"] p {
  color: rgba(255, 255, 255, .76);
}

.ta-public-shell .ta-page-hero .lead,
.ta-public-shell .hero-gradient .lead,
.ta-public-shell .country-hero .lead,
.ta-public-shell [style*="background:linear-gradient"] .lead,
.ta-public-shell [style*="background:linear-gradient"] .text-white-50 {
  color: rgba(255, 255, 255, .76) !important;
}

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

.ta-public-shell .ta-section {
  padding: clamp(3rem, 6vw, 5.5rem) 0;
}

.ta-public-shell .ta-section-sm {
  padding: clamp(2rem, 4vw, 3.5rem) 0;
}

.ta-public-shell .ta-public-section {
  position: relative;
  padding: clamp(3.5rem, 6vw, 5.5rem) 0;
}

.ta-public-shell .ta-public-section.is-soft {
  background:
    radial-gradient(circle at top right, rgba(0, 178, 227, .08), transparent 28rem),
    var(--ta-public-bg);
}

.ta-public-shell .ta-public-section.is-white {
  background: #ffffff;
}

.ta-public-shell .ta-public-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(30rem, 68vh, 40rem);
  display: flex;
  align-items: center;
  background:
    linear-gradient(125deg, rgba(2, 6, 23, .96) 0%, rgba(16, 35, 62, .94) 62%, rgba(5, 43, 56, .92) 100%),
    radial-gradient(circle at 82% 18%, rgba(0, 178, 227, .16), transparent 20rem),
    radial-gradient(circle at 16% 88%, rgba(254, 80, 0, .12), transparent 16rem);
  color: #ffffff;
  border-bottom: 1px solid rgba(254, 80, 0, .42);
}

.ta-public-shell .ta-public-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, .028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .024) 1px, transparent 1px);
  background-size: 5.25rem 5.25rem;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, .52), transparent 78%);
  pointer-events: none;
}

.ta-public-shell .ta-public-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--ta-public-gradient-accent);
}

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

.ta-public-shell .ta-public-hero h1 {
  max-width: 56rem;
  color: #ffffff;
  font-size: clamp(2.45rem, 6.4vw, 5rem);
  font-weight: 920;
  line-height: 1.02;
  letter-spacing: 0;
}

.ta-public-shell .ta-public-hero p,
.ta-public-shell .ta-public-hero .lead {
  max-width: 50rem;
  color: rgba(255, 255, 255, .78) !important;
  font-size: clamp(1.04rem, 2vw, 1.25rem);
  line-height: 1.7;
}

.ta-public-shell .ta-public-hero-panel {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--ta-public-radius);
  background: rgba(255, 255, 255, .075);
  box-shadow: 0 22px 54px rgba(0, 0, 0, .22);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.ta-public-shell .ta-public-hero-stat {
  padding: 1.25rem;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
}

.ta-public-shell .ta-public-hero-stat:last-child {
  border-bottom: 0;
}

.ta-public-shell .ta-public-hero-stat small {
  display: block;
  color: rgba(255, 255, 255, .62);
  font-weight: 850;
}

.ta-public-shell .ta-public-hero-stat strong {
  display: block;
  margin-top: .35rem;
  color: #ffffff;
  font-size: clamp(1.55rem, 3vw, 2.05rem);
  font-weight: 950;
  line-height: 1;
}

.ta-public-shell .ta-public-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  margin-bottom: .9rem;
  color: var(--acosa-orange);
  font-size: .78rem;
  font-weight: 950;
  letter-spacing: .12em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ta-public-shell .ta-public-eyebrow::before {
  content: none;
}

.ta-public-shell .ta-public-grid {
  display: grid;
  grid-template-columns: repeat(var(--ta-public-grid-cols, 3), minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

.ta-public-shell .ta-public-card {
  position: relative;
  height: 100%;
  overflow: hidden;
  border: 1px solid var(--ta-public-border);
  border-radius: var(--ta-public-radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, .99), rgba(248, 250, 252, .98));
  box-shadow: var(--ta-public-shadow-soft);
}

.ta-public-shell .ta-public-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 2px;
  background: var(--ta-public-gradient-accent);
  opacity: .45;
}

.ta-public-shell .ta-public-card-body {
  position: relative;
  z-index: 1;
  padding: clamp(1.25rem, 3vw, 1.8rem);
}

.ta-public-shell .ta-public-card h2,
.ta-public-shell .ta-public-card h3 {
  line-height: 1.2;
}

.ta-public-shell .ta-public-card .ta-public-card {
  border-color: rgba(208, 213, 221, .74);
  background: rgba(248, 250, 252, .72);
  box-shadow: none !important;
}

.ta-public-shell .ta-public-card .ta-public-card::before {
  opacity: 0;
}

.ta-public-shell .ta-public-card .ta-public-card-body {
  padding: 1rem;
}

.ta-public-shell .ta-public-card-icon {
  width: 2.85rem;
  height: 2.85rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .85rem;
  border-radius: var(--ta-public-radius);
  background: rgba(254, 80, 0, .10);
  color: #b93800;
  font-weight: 900;
}

.ta-public-shell .ta-public-card-icon.is-blue {
  background: rgba(0, 178, 227, .12);
  color: #006f8f;
}

.ta-public-shell .ta-public-card-kicker {
  color: var(--ta-public-muted);
  font-size: .78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.ta-public-shell .ta-public-section > .container > .text-center,
.ta-public-shell .ta-public-section > .ta-container > .text-center {
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}

.ta-public-shell .ta-public-cta-band {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--ta-public-radius);
  background:
    radial-gradient(circle at top right, rgba(0, 178, 227, .12), transparent 20rem),
    var(--ta-public-gradient-dark);
  color: #ffffff;
  box-shadow: 0 18px 44px rgba(16, 24, 40, .16);
}

.ta-public-shell .ta-public-cta-band h2,
.ta-public-shell .ta-public-cta-band h3 {
  color: #ffffff;
}

.ta-public-shell .ta-public-cta-band p {
  color: rgba(255, 255, 255, .74);
}

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

.ta-public-shell .ta-animate-up.ta-delay-1 {
  animation-delay: .05s;
}

.ta-public-shell .ta-animate-up.ta-delay-2 {
  animation-delay: .1s;
}

.ta-public-shell .ta-animate-up.ta-delay-3 {
  animation-delay: .15s;
}

.ta-public-shell .ta-animate-up.ta-delay-4 {
  animation-delay: .2s;
}

@keyframes taPublicSlideUp {
  from {
    opacity: 0;
    transform: translateY(.5rem);
  }

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

.ta-public-shell .ta-hover-lift {
  transition: transform var(--ta-public-transition), border-color var(--ta-public-transition), box-shadow var(--ta-public-transition), background-color var(--ta-public-transition);
}

.ta-public-shell .ta-hover-lift:hover,
.ta-public-shell .ta-hover-lift:focus-within {
  transform: translateY(-2px);
  border-color: rgba(0, 178, 227, .30);
  box-shadow: var(--ta-public-shadow-lift) !important;
}

.ta-public-shell .ta-public-action-row {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.ta-public-shell .ta-public-action-row .btn {
  min-height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-inline: 1.35rem;
}

.ta-public-shell .ta-country-home {
  background: var(--ta-public-bg);
}

.ta-public-shell .ta-country-home .ta-public-hero {
  min-height: clamp(35rem, 78vh, 46rem);
}

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

.ta-public-shell .ta-country-mini-job {
  min-height: 7rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--ta-public-radius);
  background: rgba(255, 255, 255, .08);
  color: #ffffff;
}

.ta-public-shell .ta-country-mini-job small {
  color: rgba(255, 255, 255, .64);
  font-weight: 800;
}

.ta-public-shell .ta-country-mini-job strong {
  color: #ffffff;
  font-size: .95rem;
  line-height: 1.25;
}

.ta-public-shell .ta-contact-link {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  color: var(--ta-public-text);
  text-decoration: none;
  font-weight: 800;
}

.ta-public-shell .ta-contact-link:hover,
.ta-public-shell .ta-contact-link:focus {
  color: var(--acosa-orange);
}

.ta-public-shell .ta-page-hero {
  position: relative;
  overflow: hidden;
  padding: clamp(3.25rem, 7vw, 6rem) 0;
  background: var(--ta-public-gradient-dark);
  color: #ffffff;
  border-bottom: 4px solid var(--acosa-orange);
}

.ta-public-shell .ta-page-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: var(--ta-public-gradient-accent);
}

.ta-public-shell .ta-card,
.ta-public-shell .ta-soft-card,
.ta-public-shell .section-card,
.ta-public-shell .job-card,
.ta-public-shell .card,
.ta-public-shell .bg-white.rounded-4.shadow-sm {
  border: 1px solid var(--ta-public-border);
  border-radius: var(--ta-public-radius) !important;
  background: var(--ta-public-card);
  box-shadow: var(--ta-public-shadow-soft) !important;
}

.ta-public-shell .ta-card,
.ta-public-shell .ta-soft-card,
.ta-public-shell .job-card,
.ta-public-shell .ta-news-card,
.ta-public-shell .ta-job-card,
.ta-public-shell .ta-hover-lift {
  transition: transform var(--ta-public-transition), border-color var(--ta-public-transition), box-shadow var(--ta-public-transition), background-color var(--ta-public-transition);
}

.ta-public-shell .ta-card:hover,
.ta-public-shell .ta-soft-card:hover,
.ta-public-shell .job-card:hover,
.ta-public-shell .ta-news-card:hover,
.ta-public-shell .ta-job-card:hover,
.ta-public-shell .ta-hover-lift:hover {
  transform: translateY(-2px);
  border-color: rgba(0, 178, 227, .30);
  box-shadow: var(--ta-public-shadow-lift) !important;
}

.ta-public-shell .ta-soft-card {
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.ta-public-shell .ta-pill,
.ta-public-shell .ta-filter-btn,
.ta-public-shell .ta-job-badge,
.ta-public-shell .ta-news-country-badge,
.ta-public-shell .badge.rounded-pill {
  display: inline-flex;
  align-items: center;
  gap: .35rem;
  border: 1px solid rgba(254, 80, 0, .18);
  border-radius: 999px;
  background: rgba(254, 80, 0, .09);
  color: #b93800;
  font-size: .78rem;
  font-weight: 800;
  line-height: 1.1;
}

.ta-public-shell .rounded-4 {
  border-radius: var(--ta-public-radius) !important;
}

.ta-public-shell .btn {
  border-radius: 999px;
  font-weight: 800;
  letter-spacing: 0;
  transition: background-color var(--ta-public-transition), border-color var(--ta-public-transition), color var(--ta-public-transition), box-shadow var(--ta-public-transition), transform var(--ta-public-transition);
}

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

.ta-public-shell .btn:focus-visible,
.ta-public-shell .form-control:focus,
.ta-public-shell .form-select:focus {
  box-shadow: 0 0 0 .22rem rgba(254, 80, 0, .14);
}

.ta-public-shell .btn-primary,
.ta-public-shell .hero-gradient .btn-primary {
  background: var(--acosa-orange);
  border-color: var(--acosa-orange);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(254, 80, 0, .20);
}

.ta-public-shell .btn-primary:hover,
.ta-public-shell .btn-primary:focus {
  background: var(--acosa-orange-hover);
  border-color: var(--acosa-orange-hover);
  color: #ffffff;
}

.ta-public-shell .btn-outline-dark,
.ta-public-shell .btn-outline-secondary {
  border-color: var(--ta-public-border-strong);
  color: var(--ta-public-text);
  background: rgba(255, 255, 255, .74);
}

.ta-public-shell .btn-outline-dark:hover,
.ta-public-shell .btn-outline-secondary:hover,
.ta-public-shell .btn-outline-dark:focus,
.ta-public-shell .btn-outline-secondary:focus {
  background: #ffffff;
  border-color: rgba(16, 24, 40, .28);
  color: var(--ta-public-text);
  box-shadow: var(--ta-public-shadow-soft);
}

.ta-public-shell .form-control,
.ta-public-shell .form-select {
  min-height: 2.85rem;
  border-color: var(--ta-public-border-strong);
  border-radius: var(--ta-public-radius) !important;
  color: var(--ta-public-text);
  box-shadow: none;
  transition: border-color var(--ta-public-transition), box-shadow var(--ta-public-transition), background-color var(--ta-public-transition);
}

.ta-public-shell .form-control:hover,
.ta-public-shell .form-select:hover {
  border-color: #b8c1cf;
}

.ta-public-shell .form-label {
  color: #344054;
  font-weight: 800;
}

.ta-public-shell .alert {
  border-radius: var(--ta-public-radius);
  border-width: 1px;
}

.ta-public-shell .hero-gradient {
  background: var(--ta-public-gradient-dark);
}

.ta-public-shell .bg-light {
  background:
    radial-gradient(circle at top right, rgba(0, 178, 227, .08), transparent 30rem),
    var(--ta-public-bg) !important;
}

.ta-public-shell .bg-white.border-bottom,
.ta-public-shell section.bg-white.border-bottom {
  border-color: var(--ta-public-border) !important;
  background: rgba(255, 255, 255, .92) !important;
}

.ta-public-shell .ta-navbar {
  position: sticky;
  top: 0;
  z-index: 1030;
  min-height: var(--ta-public-navbar-height);
  background: rgba(0, 0, 0, .96) !important;
  border-bottom: 1px solid rgba(254, 80, 0, .34);
  box-shadow: 0 12px 34px rgba(0, 0, 0, .18);
  backdrop-filter: blur(14px) saturate(135%);
  -webkit-backdrop-filter: blur(14px) saturate(135%);
  transition: min-height var(--ta-public-transition), background-color var(--ta-public-transition), border-color var(--ta-public-transition), box-shadow var(--ta-public-transition), backdrop-filter var(--ta-public-transition), padding var(--ta-public-transition);
  will-change: min-height, background-color, box-shadow;
}

.ta-public-shell.ta-public-nav-scrolled .ta-navbar {
  min-height: 64px;
  background: rgba(0, 0, 0, .82) !important;
  border-bottom-color: rgba(255, 255, 255, .12);
  box-shadow: 0 18px 44px rgba(0, 0, 0, .22);
  backdrop-filter: blur(20px) saturate(155%);
  -webkit-backdrop-filter: blur(20px) saturate(155%);
}

.ta-public-shell .ta-navbar::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--ta-public-gradient-accent);
}

.ta-public-shell .ta-navbar .navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  color: #ffffff !important;
  font-size: 1.05rem;
  font-weight: 900;
  letter-spacing: 0;
  padding: .35rem 0;
  transition: color var(--ta-public-transition), transform var(--ta-public-transition), padding var(--ta-public-transition), font-size var(--ta-public-transition);
}

.ta-public-shell.ta-public-nav-scrolled .ta-navbar .navbar-brand {
  font-size: .98rem;
  transform: translateY(-1px);
}

.ta-public-shell .ta-navbar .navbar-brand::after {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--acosa-orange);
  box-shadow: 0 0 0 5px rgba(254, 80, 0, .10);
  transition: box-shadow var(--ta-public-transition), transform var(--ta-public-transition);
}

.ta-public-shell.ta-public-nav-scrolled .ta-navbar .navbar-brand::after {
  box-shadow: 0 0 0 4px rgba(254, 80, 0, .14), 0 0 18px rgba(254, 80, 0, .30);
}

.ta-public-shell .ta-navbar .nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  min-height: 2.35rem;
  padding: .55rem .72rem;
  border-radius: 999px;
  color: rgba(255, 255, 255, .76) !important;
  font-size: .88rem;
  font-weight: 800;
  white-space: nowrap;
  overflow: hidden;
  transition: color var(--ta-public-transition), background-color var(--ta-public-transition), box-shadow var(--ta-public-transition), transform var(--ta-public-transition), min-height var(--ta-public-transition), padding var(--ta-public-transition);
}

.ta-public-shell.ta-public-nav-scrolled .ta-navbar .nav-link {
  min-height: 2.08rem;
  padding: .42rem .68rem;
  font-size: .86rem;
}

.ta-public-shell .ta-navbar .nav-link:hover,
.ta-public-shell .ta-navbar .nav-link:focus,
.ta-public-shell .ta-navbar .nav-link.show {
  color: #ffffff !important;
  background: rgba(254, 80, 0, .16);
  transform: translateY(-1px);
}

.ta-public-shell .ta-navbar .nav-link.active {
  color: #ffffff !important;
  background: rgba(254, 80, 0, .16);
  box-shadow: inset 0 0 0 1px rgba(254, 80, 0, .20), 0 8px 22px rgba(254, 80, 0, .12);
}

.ta-public-shell .ta-navbar .nav-link.active::after {
  content: "";
  position: absolute;
  left: .86rem;
  right: .86rem;
  bottom: .36rem;
  height: 2px;
  border-radius: 999px;
  background: var(--acosa-orange);
  box-shadow: 0 0 14px rgba(254, 80, 0, .56);
  transform: scaleX(1);
  transform-origin: center;
  transition: transform var(--ta-public-transition), opacity var(--ta-public-transition);
}

.ta-public-shell .ta-navbar .navbar-toggler {
  min-width: 2.65rem;
  min-height: 2.65rem;
  border-radius: var(--ta-public-radius);
  background: rgba(255, 255, 255, .08);
  transition: background-color var(--ta-public-transition), box-shadow var(--ta-public-transition), transform var(--ta-public-transition);
}

.ta-public-shell .ta-navbar .navbar-toggler:hover,
.ta-public-shell .ta-navbar .navbar-toggler:focus {
  background: rgba(255, 255, 255, .14);
  box-shadow: 0 0 0 .18rem rgba(254, 80, 0, .12);
}

.ta-public-shell .ta-dropdown-menu,
.ta-public-shell .ta-navbar .dropdown-menu {
  min-width: 13rem;
  padding: .55rem;
  border: 1px solid var(--ta-public-border);
  border-radius: var(--ta-public-radius);
  background: rgba(255, 255, 255, .98);
  box-shadow: 0 22px 54px rgba(16, 24, 40, .16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: taPublicDropdownIn 220ms cubic-bezier(.2, .8, .2, 1);
}

@keyframes taPublicDropdownIn {
  from {
    opacity: 0;
    transform: translateY(.35rem);
  }

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

.ta-public-shell .ta-navbar .dropdown-item {
  border-radius: var(--ta-public-radius-sm);
  color: #344054;
  font-size: .88rem;
  font-weight: 750;
  padding: .68rem .78rem;
  transition: color var(--ta-public-transition), background-color var(--ta-public-transition), transform var(--ta-public-transition);
}

.ta-public-shell .ta-navbar .dropdown-item:hover,
.ta-public-shell .ta-navbar .dropdown-item:focus {
  background: rgba(254, 80, 0, .09);
  color: #9a3412;
  transform: translateX(2px);
}

.ta-public-shell .ta-navbar .dropdown-divider {
  border-color: var(--ta-public-border);
}

.ta-public-shell .ta-rh-btn {
  min-height: 2.55rem;
  padding: .62rem 1rem !important;
  margin-left: .35rem;
  background: var(--acosa-orange) !important;
  color: #ffffff !important;
  box-shadow: 0 12px 26px rgba(254, 80, 0, .22);
}

.ta-public-shell.ta-public-nav-scrolled .ta-rh-btn {
  min-height: 2.18rem;
  padding: .48rem .9rem !important;
}

.ta-public-shell .ta-rh-btn:hover,
.ta-public-shell .ta-rh-btn:focus,
.ta-public-shell .ta-rh-btn.active {
  background: var(--acosa-orange-hover) !important;
  color: #ffffff !important;
  box-shadow: 0 16px 32px rgba(254, 80, 0, .28);
}

.ta-public-shell .ta-country-btn {
  border: 1px solid rgba(255, 255, 255, .28);
  background: rgba(255, 255, 255, .08);
  color: #ffffff !important;
  font-weight: 850;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .04);
}

.ta-public-shell .ta-country-btn:hover,
.ta-public-shell .ta-country-btn:focus,
.ta-public-shell .ta-country-btn.show {
  border-color: rgba(0, 178, 227, .54);
  background: rgba(0, 178, 227, .18);
  color: #ffffff !important;
  box-shadow: 0 10px 24px rgba(0, 178, 227, .13);
}

.ta-public-shell .ta-country-dot {
  width: .48rem;
  height: .48rem;
  border-radius: 999px;
  background: var(--acosa-blue);
  box-shadow: 0 0 0 4px rgba(0, 178, 227, .12);
}

.ta-public-shell .ta-footer {
  position: relative;
  overflow: hidden;
  margin-top: clamp(2rem, 4vw, 4rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .035), transparent 22%),
    linear-gradient(135deg, #07111f 0%, #10233e 62%, #062c3a 100%);
  color: #ffffff;
  border-top: 4px solid var(--acosa-orange);
}

.ta-public-shell .ta-footer::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 1px;
  background: var(--ta-public-gradient-accent);
  opacity: .88;
}

.ta-public-shell .ta-footer .container {
  position: relative;
  z-index: 1;
}

.ta-public-shell .ta-footer-grid {
  align-items: stretch;
  animation: taPublicFooterIn 240ms cubic-bezier(.2, .8, .2, 1) both;
}

@keyframes taPublicFooterIn {
  from {
    opacity: 0;
    transform: translateY(.25rem);
  }

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

.ta-public-shell .ta-footer-brand-col,
.ta-public-shell .ta-footer-link-col,
.ta-public-shell .ta-footer-cta-col {
  position: relative;
  height: 100%;
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, .09);
  border-radius: var(--ta-public-radius);
  background: rgba(255, 255, 255, .045);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, .06);
  transition: transform var(--ta-public-transition), border-color var(--ta-public-transition), background-color var(--ta-public-transition), box-shadow var(--ta-public-transition);
}

.ta-public-shell .ta-footer-brand-col {
  background: rgba(255, 255, 255, .06);
  border-left: 4px solid var(--acosa-orange);
}

.ta-public-shell .ta-footer-cta-col {
  background:
    linear-gradient(135deg, rgba(254, 80, 0, .12), rgba(0, 178, 227, .08)),
    rgba(255, 255, 255, .05);
}

.ta-public-shell .ta-footer-brand-col:hover,
.ta-public-shell .ta-footer-link-col:hover,
.ta-public-shell .ta-footer-cta-col:hover {
  transform: translateY(-1px);
  border-color: rgba(254, 80, 0, .22);
  background-color: rgba(255, 255, 255, .07);
  box-shadow: 0 14px 30px rgba(0, 0, 0, .14);
}

.ta-public-shell .ta-footer-title {
  color: #ffffff;
  font-size: clamp(1.55rem, 2vw, 1.9rem);
  font-weight: 900;
  margin-bottom: .9rem;
}

.ta-public-shell .ta-footer-title::after {
  content: none;
}

.ta-public-shell .ta-footer-subtitle {
  color: #ffffff;
  font-size: .88rem;
  font-weight: 900;
  letter-spacing: 0;
  margin-bottom: 1rem;
  padding-bottom: .7rem;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
}

.ta-public-shell .ta-footer-text {
  color: rgba(255, 255, 255, .70);
  line-height: 1.7;
  margin-bottom: 0;
}

.ta-public-shell .ta-footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.ta-public-shell .ta-footer-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: rgba(255, 255, 255, .68);
  text-decoration: none;
  font-weight: 720;
  padding: .24rem 0;
  transition: color var(--ta-public-transition), transform var(--ta-public-transition);
}

.ta-public-shell .ta-footer-links a::before {
  content: none;
}

.ta-public-shell .ta-footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: .05rem;
  height: 1px;
  background: var(--acosa-orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--ta-public-transition);
}

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

.ta-public-shell .ta-footer-links a:hover::before,
.ta-public-shell .ta-footer-links a:focus::before {
  content: none;
}

.ta-public-shell .ta-footer-links a:hover::after,
.ta-public-shell .ta-footer-links a:focus::after {
  transform: scaleX(1);
}

.ta-public-shell .ta-footer-btn {
  margin-top: 1rem;
  padding: .82rem 1.2rem;
  border: 0;
  background: var(--acosa-orange);
  color: #ffffff;
  box-shadow: 0 12px 28px rgba(254, 80, 0, .24);
  transition: background-color var(--ta-public-transition), color var(--ta-public-transition), box-shadow var(--ta-public-transition), transform var(--ta-public-transition);
}

.ta-public-shell .ta-footer-btn:hover,
.ta-public-shell .ta-footer-btn:focus {
  background: var(--acosa-orange-hover);
  color: #ffffff;
  transform: translateY(-1px);
  box-shadow: 0 14px 28px rgba(254, 80, 0, .26);
}

.ta-public-shell .ta-footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .85rem;
  padding: 1.25rem 0 1.45rem;
  border-top: 1px solid rgba(255, 255, 255, .10);
  color: rgba(255, 255, 255, .58);
  font-size: .88rem;
}

.ta-public-shell .ta-country-gate {
  position: fixed;
  inset: 0;
  z-index: 1080;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1.5rem;
  background: rgba(2, 6, 23, .72);
  backdrop-filter: blur(10px);
}

.ta-public-shell .ta-country-gate-card {
  width: min(760px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: var(--ta-public-radius);
  background: #ffffff;
  box-shadow: 0 32px 90px rgba(0, 0, 0, .38);
}

.ta-public-shell .ta-country-gate-head {
  padding: 1.85rem 1.85rem .7rem;
  text-align: center;
}

.ta-public-shell .ta-country-gate-mark {
  width: 3rem;
  height: 3rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  border-radius: var(--ta-public-radius);
  background: var(--ta-public-gradient-dark);
  color: #ffffff;
  font-weight: 900;
  border-bottom: 5px solid var(--acosa-orange);
}

.ta-public-shell .ta-country-gate-title {
  margin: 0;
  color: var(--ta-public-text);
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 900;
  line-height: 1.1;
}

.ta-public-shell .ta-country-gate-copy {
  max-width: 32rem;
  margin: .8rem auto 0;
  color: var(--ta-public-muted);
  line-height: 1.65;
}

.ta-public-shell .ta-country-gate-options {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .9rem;
  padding: 1.25rem 1.85rem 1.9rem;
}

.ta-public-shell .ta-country-gate-option {
  min-height: 8.6rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.15rem;
  border: 1px solid var(--ta-public-border);
  border-left: 5px solid var(--acosa-orange);
  border-radius: var(--ta-public-radius);
  background: #ffffff;
  color: var(--ta-public-text);
  text-decoration: none;
  box-shadow: var(--ta-public-shadow-soft);
}

.ta-public-shell .ta-country-gate-option:hover,
.ta-public-shell .ta-country-gate-option:focus {
  color: var(--ta-public-text);
  transform: translateY(-2px);
  border-color: rgba(254, 80, 0, .42);
  box-shadow: var(--ta-public-shadow-lift);
}

.ta-public-shell .ta-country-gate-option strong {
  font-size: 1.2rem;
  font-weight: 900;
}

.ta-public-shell .ta-country-gate-option small {
  color: var(--ta-public-muted);
  font-weight: 750;
}

.ta-public-shell .ta-country-gate-accent {
  width: 2.25rem;
  height: .32rem;
  border-radius: 999px;
  background: var(--acosa-blue);
}

.ta-public-shell .ta-job-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--ta-public-border);
  border-radius: var(--ta-public-radius);
  background: #ffffff;
  box-shadow: var(--ta-public-shadow-soft);
}

.ta-public-shell .ta-job-card:hover {
  border-color: rgba(0, 178, 227, .42);
}

.ta-public-shell .ta-job-image {
  position: relative;
  flex: 0 0 180px;
  width: 100%;
  height: 180px;
  max-height: 180px;
  overflow: hidden;
  border-radius: var(--ta-public-radius) var(--ta-public-radius) 0 0;
  background: var(--ta-public-gradient-dark);
}

.ta-public-shell .ta-job-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center center;
  max-width: none;
}

.ta-public-shell .ta-job-fallback {
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding: 1.25rem;
  color: #ffffff;
}

.ta-public-shell .ta-job-fallback::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(254, 80, 0, .24), transparent 48%),
    linear-gradient(135deg, transparent 0%, rgba(0, 178, 227, .30) 100%);
}

.ta-public-shell .ta-job-fallback span {
  position: relative;
  z-index: 1;
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ta-public-shell .ta-job-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 1.35rem;
}

.ta-public-shell .ta-job-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-bottom: 1rem;
}

.ta-public-shell .ta-job-badge {
  padding: .45rem .65rem;
  border-color: rgba(0, 178, 227, .22);
  background: rgba(0, 178, 227, .10);
  color: #075985;
}

.ta-public-shell .ta-job-title {
  color: var(--ta-public-text);
  font-size: 1.28rem;
  font-weight: 900;
  line-height: 1.22;
}

.ta-public-shell .ta-job-excerpt {
  color: var(--ta-public-muted);
  line-height: 1.65;
}

.ta-public-shell .apply-choice-modal .modal-content {
  overflow: hidden;
  border: 0;
  border-radius: var(--ta-public-radius);
  box-shadow: 0 32px 90px rgba(0, 0, 0, .32);
}

.ta-public-shell .apply-choice-head,
.ta-public-shell .apply-gate-head {
  position: relative;
  padding: 1.9rem;
  background: var(--ta-public-gradient-dark);
  color: #ffffff;
}

.ta-public-shell .apply-choice-head::after,
.ta-public-shell .apply-gate-head::after {
  content: "";
  position: absolute;
  left: 1.9rem;
  right: 1.9rem;
  bottom: 0;
  height: 4px;
  background: var(--ta-public-gradient-accent);
}

.ta-public-shell .apply-choice-head span,
.ta-public-shell .apply-gate-kicker {
  color: var(--acosa-orange);
  font-size: .78rem;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.ta-public-shell .apply-choice-modal .modal-body,
.ta-public-shell .apply-gate-body {
  background: var(--ta-public-bg);
}

.ta-public-shell .apply-choice-option {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 6rem;
  padding: 1.2rem 3.5rem 1.2rem 1.2rem;
  border: 1px solid var(--ta-public-border);
  border-radius: var(--ta-public-radius);
  background: #ffffff;
  color: var(--ta-public-text);
  text-decoration: none;
  box-shadow: var(--ta-public-shadow-soft);
}

.ta-public-shell .apply-choice-option::after {
  content: ">";
  position: absolute;
  right: 1.2rem;
  top: 50%;
  width: 1.9rem;
  height: 1.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--ta-public-text);
  color: #ffffff;
  font-weight: 900;
  transform: translateY(-50%);
}

.ta-public-shell .apply-choice-option:hover,
.ta-public-shell .apply-choice-option:focus {
  color: var(--ta-public-text);
  transform: translateY(-2px);
  border-color: rgba(254, 80, 0, .42);
  box-shadow: var(--ta-public-shadow-lift);
}

.ta-public-shell .apply-choice-icon {
  width: 3.25rem;
  height: 3.25rem;
  display: inline-flex;
  flex: 0 0 3.25rem;
  align-items: center;
  justify-content: center;
  border-radius: var(--ta-public-radius);
  background: rgba(254, 80, 0, .10);
  color: var(--acosa-orange);
  font-weight: 900;
}

.ta-public-shell .apply-choice-option:nth-child(2) .apply-choice-icon {
  background: rgba(0, 178, 227, .10);
  color: #006f8f;
}

.ta-public-shell .apply-choice-option:nth-child(3) .apply-choice-icon {
  background: #f2f4f7;
  color: var(--ta-public-text);
}

.ta-public-shell .apply-gate {
  min-height: 70vh;
  background: linear-gradient(180deg, #ffffff 0%, var(--ta-public-bg) 100%);
}

.ta-public-shell .apply-gate-card {
  overflow: hidden;
  border: 1px solid var(--ta-public-border);
  border-radius: var(--ta-public-radius);
  background: #ffffff;
  box-shadow: var(--ta-public-shadow);
}

.ta-public-shell .apply-gate-body {
  padding: 1.5rem;
}

.ta-public-shell .ta-news-page {
  min-height: 60vh;
}

.ta-public-shell .ta-page-title {
  color: var(--ta-public-text);
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 900;
  margin-bottom: .5rem;
}

.ta-public-shell .ta-page-title::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-left: .5rem;
  border-radius: 999px;
  background: var(--acosa-orange);
}

.ta-public-shell .ta-page-subtitle {
  max-width: 40rem;
  color: var(--ta-public-muted);
  font-size: 1rem;
  line-height: 1.65;
}

.ta-public-shell .ta-news-filters {
  display: flex;
  flex-wrap: wrap;
  gap: .65rem;
}

.ta-public-shell .ta-filter-btn {
  padding: .55rem 1rem;
  text-decoration: none;
  color: #475467;
  background: #ffffff;
  border-color: var(--ta-public-border);
}

.ta-public-shell .ta-filter-btn:hover,
.ta-public-shell .ta-filter-btn:focus {
  color: #b93800;
  background: rgba(254, 80, 0, .08);
  border-color: rgba(254, 80, 0, .30);
}

.ta-public-shell .ta-filter-btn.active {
  color: #ffffff;
  background: var(--acosa-orange);
  border-color: var(--acosa-orange);
  box-shadow: 0 10px 22px rgba(254, 80, 0, .18);
}

.ta-public-shell .ta-news-card {
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--ta-public-border);
  border-radius: var(--ta-public-radius);
  background: #ffffff;
  box-shadow: var(--ta-public-shadow-soft);
}

.ta-public-shell .ta-news-card-img,
.ta-public-shell .ta-news-card-img-placeholder {
  width: 100%;
  height: 200px;
  display: block;
}

.ta-public-shell .ta-news-card-img {
  object-fit: cover;
}

.ta-public-shell .ta-news-card-img-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #eef2f7 0%, #dde7ee 100%);
  color: #98a2b3;
}

.ta-public-shell .ta-news-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 1.35rem;
}

.ta-public-shell .ta-news-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .55rem;
  margin-bottom: .85rem;
}

.ta-public-shell .ta-news-country-badge {
  padding: .35rem .65rem;
  border-color: rgba(0, 178, 227, .22);
  background: rgba(0, 178, 227, .10);
  color: #075985;
}

.ta-public-shell .ta-news-date {
  color: #98a2b3;
  font-size: .82rem;
  font-weight: 750;
}

.ta-public-shell .ta-news-card-title {
  margin-bottom: .75rem;
  font-size: 1.08rem;
  font-weight: 900;
  line-height: 1.36;
}

.ta-public-shell .ta-news-card-title a {
  color: var(--ta-public-text);
  text-decoration: none;
}

.ta-public-shell .ta-news-card-title a:hover,
.ta-public-shell .ta-news-card-title a:focus {
  color: var(--acosa-orange);
}

.ta-public-shell .ta-news-card-excerpt {
  flex: 1;
  color: var(--ta-public-muted);
  font-size: .92rem;
  line-height: 1.65;
  margin-bottom: 1.25rem;
}

.ta-public-shell .ta-news-read-more {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  color: var(--acosa-orange);
  font-size: .9rem;
  font-weight: 850;
  text-decoration: none;
}

.ta-public-shell .ta-news-read-more:hover,
.ta-public-shell .ta-news-read-more:focus {
  gap: .65rem;
  color: var(--acosa-orange-hover);
}

.ta-public-shell .ta-news-pagination .page-link {
  margin: 0 .18rem;
  padding: .65rem .9rem;
  border: 1px solid var(--ta-public-border);
  border-radius: var(--ta-public-radius);
  color: #475467;
  font-weight: 800;
}

.ta-public-shell .ta-news-pagination .page-item.active .page-link {
  background: var(--acosa-orange);
  border-color: var(--acosa-orange);
  color: #ffffff;
}

.ta-public-shell .ta-news-pagination .page-link:hover,
.ta-public-shell .ta-news-pagination .page-link:focus {
  background: rgba(254, 80, 0, .08);
  border-color: rgba(254, 80, 0, .30);
  color: var(--acosa-orange);
}

.ta-public-shell .ta-empty-state {
  padding: 3.75rem 1.25rem;
  border: 1px dashed var(--ta-public-border-strong);
  border-radius: var(--ta-public-radius);
  background: rgba(255, 255, 255, .74);
}

.ta-public-shell .ta-empty-icon {
  color: #cbd5e1;
}

.ta-public-shell .ta-empty-state h3 {
  color: var(--ta-public-text);
  font-size: 1.18rem;
  font-weight: 850;
}

.ta-public-shell .ta-animate {
  opacity: 0;
  transform: translateY(.5rem);
  transition: opacity 220ms ease, transform 220ms ease;
}

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

.ta-public-shell .ta-delay-1 { transition-delay: .05s; }
.ta-public-shell .ta-delay-2 { transition-delay: .1s; }
.ta-public-shell .ta-delay-3 { transition-delay: .15s; }
.ta-public-shell .ta-delay-4 { transition-delay: .2s; }

.ta-public-shell .ta-pulse-btn {
  position: relative;
  overflow: hidden;
}

.ta-public-shell .ta-pulse-btn::after {
  content: none;
}

.ta-public-shell .ta-pulse-btn:hover::after,
.ta-public-shell .ta-pulse-btn:focus::after {
  content: none;
}

@media (prefers-reduced-motion: reduce) {
  .ta-public-shell *,
  .ta-public-shell *::before,
  .ta-public-shell *::after {
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
    animation-duration: .001ms !important;
  }

  .ta-public-shell .ta-animate-up,
  .ta-public-shell .ta-animate {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .ta-public-shell .ta-hover-lift:hover,
  .ta-public-shell .ta-hover-lift:focus-within,
  .ta-public-shell .ta-card:hover,
  .ta-public-shell .ta-soft-card:hover,
  .ta-public-shell .job-card:hover,
  .ta-public-shell .ta-news-card:hover,
  .ta-public-shell .ta-job-card:hover,
  .ta-public-shell .btn:hover,
  .ta-public-shell .btn:focus {
    transform: none !important;
  }
}

@media (max-width: 991.98px) {
  .ta-public-shell .ta-public-grid,
  .ta-public-shell .ta-country-jobs-preview {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ta-public-shell .ta-public-hero {
    min-height: auto;
    padding: clamp(4rem, 9vw, 6rem) 0;
  }

  .ta-public-shell .ta-navbar {
    min-height: 68px;
  }

  .ta-public-shell .ta-navbar .navbar-collapse {
    margin-top: .9rem;
    padding: .85rem;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--ta-public-radius);
    background: rgba(8, 13, 24, .98);
    box-shadow: 0 22px 54px rgba(0, 0, 0, .28);
  }

  .ta-public-shell .ta-navbar .nav-link {
    width: 100%;
    justify-content: space-between;
    border-radius: var(--ta-public-radius);
    padding: .72rem .82rem;
  }

  .ta-public-shell .ta-rh-btn {
    margin-left: 0;
    margin-top: .35rem;
    justify-content: center !important;
    text-align: center;
  }

  .ta-public-shell .ta-navbar .dropdown-menu {
    margin: .35rem 0 .55rem;
    box-shadow: none;
  }
}

@media (max-width: 767.98px) {
  .ta-public-shell .container,
  .ta-public-shell .ta-container {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .ta-public-shell .ta-public-grid,
  .ta-public-shell .ta-country-jobs-preview {
    grid-template-columns: 1fr;
  }

  .ta-public-shell .ta-public-action-row .btn {
    width: 100%;
  }

  .ta-public-shell .ta-public-card-body {
    padding: 1.15rem;
  }

  .ta-public-shell .ta-public-hero h1 {
    font-size: clamp(2.25rem, 11vw, 3rem);
    line-height: 1.04;
  }

  .ta-public-shell .ta-country-gate {
    align-items: flex-start;
    overflow: auto;
    padding: 1rem;
  }

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

  .ta-public-shell .ta-country-gate-head {
    padding: 1.4rem 1rem .4rem;
  }

  .ta-public-shell .ta-country-gate-option {
    min-height: 7rem;
  }

  .ta-public-shell .ta-footer-bottom {
    flex-direction: column;
  }

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

  .ta-public-shell .ta-footer-brand-col,
  .ta-public-shell .ta-footer-link-col,
  .ta-public-shell .ta-footer-cta-col {
    padding: 1rem;
  }

  .ta-public-shell .ta-footer-links a {
    width: 100%;
    padding-top: .34rem;
    padding-bottom: .34rem;
  }

  .ta-public-shell .ta-news-filters {
    overflow-x: auto;
    flex-wrap: nowrap;
    padding-bottom: .5rem;
    -webkit-overflow-scrolling: touch;
  }

  .ta-public-shell .ta-filter-btn {
    flex-shrink: 0;
  }

  .ta-public-shell .ta-news-card-img,
  .ta-public-shell .ta-news-card-img-placeholder,
  .ta-public-shell .ta-job-image {
    height: 170px;
    max-height: 170px;
    flex-basis: 170px;
  }

  .ta-public-shell .apply-choice-head,
  .ta-public-shell .apply-gate-head,
  .ta-public-shell .apply-gate-body {
    padding: 1.2rem;
  }

  .ta-public-shell .apply-choice-head::after,
  .ta-public-shell .apply-gate-head::after {
    left: 1.2rem;
    right: 1.2rem;
  }

  .ta-public-shell .apply-choice-option {
    align-items: flex-start;
    min-height: 0;
    padding: 1rem 3rem 1rem 1rem;
  }

  .ta-public-shell .apply-choice-icon {
    width: 2.8rem;
    height: 2.8rem;
    flex-basis: 2.8rem;
  }
}

/* ==================================
   Public Premium Refresh
================================== */

.ta-public-shell {
  --ta-premium-glass: rgba(255, 255, 255, .78);
  --ta-premium-line: rgba(15, 23, 42, .08);
  --ta-premium-shadow-xl: 0 24px 70px rgba(15, 23, 42, .14);
  --ta-premium-shadow-card: 0 14px 40px rgba(15, 23, 42, .09);
}

.ta-public-shell .ta-reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms cubic-bezier(.2, .8, .2, 1),
    transform 520ms cubic-bezier(.2, .8, .2, 1),
    box-shadow 220ms cubic-bezier(.2, .8, .2, 1),
    border-color 220ms cubic-bezier(.2, .8, .2, 1);
  transition-delay: var(--ta-reveal-delay, 0ms);
}

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

.ta-public-shell .ta-premium-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(34rem, 78vh, 48rem);
  background:
    linear-gradient(120deg, rgba(0, 0, 0, .94), rgba(16, 35, 62, .92) 58%, rgba(0, 72, 94, .88)),
    radial-gradient(circle at 78% 18%, rgba(0, 178, 227, .22), transparent 20rem),
    radial-gradient(circle at 12% 78%, rgba(254, 80, 0, .18), transparent 18rem);
}

.ta-public-shell .ta-premium-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, .06) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, .05) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .45;
  mask-image: linear-gradient(90deg, #000 0%, transparent 78%);
  pointer-events: none;
}

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

.ta-public-shell .ta-hero-copy {
  max-width: 58rem;
}

.ta-public-shell .ta-hero-kpis {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: .8rem;
  margin-top: 2rem;
}

.ta-public-shell .ta-hero-kpi {
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: 8px;
  background: rgba(255, 255, 255, .08);
  backdrop-filter: blur(14px);
}

.ta-public-shell .ta-hero-kpi strong {
  display: block;
  color: #fff;
  font-size: 1.35rem;
  line-height: 1;
}

.ta-public-shell .ta-hero-kpi span {
  display: block;
  margin-top: .35rem;
  color: rgba(255, 255, 255, .68);
  font-size: .78rem;
  font-weight: 800;
}

.ta-public-shell .ta-premium-panel {
  border: 1px solid rgba(255, 255, 255, .16);
  background: rgba(255, 255, 255, .09);
  box-shadow: 0 26px 80px rgba(0, 0, 0, .26);
  backdrop-filter: blur(18px);
}

.ta-public-shell .ta-trust-strip {
  border-bottom: 1px solid var(--ta-public-border);
  background: rgba(255, 255, 255, .86);
  backdrop-filter: blur(12px);
}

.ta-public-shell .ta-trust-item {
  min-height: 5.25rem;
  display: flex;
  align-items: center;
  gap: .85rem;
  padding: 1rem;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
}

.ta-public-shell .ta-trust-icon,
.ta-public-shell .ta-benefit-mark {
  width: 2.55rem;
  height: 2.55rem;
  flex: 0 0 2.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(254, 80, 0, .1);
  color: #b93800;
  font-weight: 950;
}

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

.ta-public-shell .ta-section-heading h2 {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 920;
  line-height: 1.08;
}

.ta-public-shell .ta-premium-card {
  height: 100%;
  padding: clamp(1.25rem, 3vw, 1.75rem);
  border: 1px solid var(--ta-public-border);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,252,.94));
  box-shadow: var(--ta-premium-shadow-card);
}

.ta-public-shell .ta-premium-card:hover,
.ta-public-shell .ta-job-card:hover,
.ta-public-shell .ta-news-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0, 178, 227, .35);
  box-shadow: var(--ta-premium-shadow-xl) !important;
}

.ta-public-shell .ta-search-panel {
  padding: 1rem;
  border: 1px solid var(--ta-public-border);
  border-radius: 8px;
  background: var(--ta-premium-glass);
  box-shadow: var(--ta-premium-shadow-card);
  backdrop-filter: blur(14px);
}

.ta-public-shell .ta-jobs-hero,
.ta-public-shell .ta-auth-page,
.ta-public-shell .ta-profile-page {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at top right, rgba(0, 178, 227, .12), transparent 28rem),
    linear-gradient(180deg, #fff 0%, #f6f8fb 100%);
}

.ta-public-shell .ta-jobs-hero {
  border-bottom: 1px solid var(--ta-public-border);
}

.ta-public-shell .ta-job-card,
.ta-public-shell .ta-news-card {
  border: 1px solid var(--ta-public-border);
  border-radius: 8px;
  background: #fff;
  box-shadow: var(--ta-premium-shadow-card);
}

.ta-public-shell .ta-job-image,
.ta-public-shell .ta-news-card-img,
.ta-public-shell .ta-news-card-img-placeholder {
  overflow: hidden;
}

.ta-public-shell .ta-job-image img,
.ta-public-shell .ta-news-card-img {
  transition: transform 520ms cubic-bezier(.2, .8, .2, 1), filter 220ms ease;
}

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

.ta-public-shell .ta-job-badges,
.ta-public-shell .ta-news-card-meta {
  gap: .45rem;
}

.ta-public-shell .ta-job-title,
.ta-public-shell .ta-news-card-title {
  letter-spacing: 0;
}

.ta-public-shell .ta-auth-card,
.ta-public-shell .candidate-register-card,
.ta-public-shell .candidate-password-card,
.ta-public-shell .bg-white.rounded-4.shadow-sm {
  position: relative;
  overflow: hidden;
}

.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 {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: var(--ta-public-gradient-accent);
}

.ta-public-shell .ta-modern-empty,
.ta-public-shell .ta-empty-state {
  border: 1px dashed rgba(0, 178, 227, .35);
  border-radius: 8px;
  background:
    radial-gradient(circle at top, rgba(0, 178, 227, .1), transparent 20rem),
    #ffffff;
  box-shadow: var(--ta-public-shadow-soft);
}

.ta-public-shell .ta-news-comments article {
  border: 1px solid var(--ta-public-border) !important;
  background: linear-gradient(180deg, #fff, #fbfcfe) !important;
}

.ta-public-shell .ta-country-gate {
  background:
    linear-gradient(135deg, rgba(0, 0, 0, .72), rgba(16, 35, 62, .78)),
    radial-gradient(circle at top right, rgba(0, 178, 227, .25), transparent 24rem);
  backdrop-filter: blur(10px);
}

.ta-public-shell .ta-country-gate-card {
  border: 1px solid rgba(255, 255, 255, .18);
  background:
    linear-gradient(180deg, rgba(255,255,255,.98), rgba(248,250,252,.96));
  box-shadow: 0 28px 90px rgba(0, 0, 0, .32);
}

.ta-public-shell .ta-country-gate-option {
  border: 1px solid var(--ta-public-border);
  background: #fff;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .07);
}

.ta-public-shell .ta-country-gate-option:hover,
.ta-public-shell .ta-country-gate-option:focus {
  transform: translateY(-3px);
  border-color: rgba(254, 80, 0, .38);
  box-shadow: var(--ta-premium-shadow-card);
}

.ta-public-shell .ta-news-featured-media img {
  box-shadow: var(--ta-premium-shadow-xl);
}

.ta-public-shell .ta-profile-page img[alt],
.ta-public-shell .ta-auth-page .form-control,
.ta-public-shell .ta-profile-page .form-control,
.ta-public-shell .ta-profile-page .form-select {
  box-shadow: 0 1px 0 rgba(15, 23, 42, .02);
}

.ta-public-shell .ta-page-loader {
  position: fixed;
  inset: 0;
  z-index: 2000;
  display: grid;
  place-items: center;
  background: #fff;
  transition: opacity 260ms ease, visibility 260ms ease;
}

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

@media (max-width: 767.98px) {
  .ta-public-shell .ta-hero-kpis {
    grid-template-columns: 1fr;
  }

  .ta-public-shell .ta-search-panel {
    padding: .85rem;
  }

  .ta-public-shell .ta-premium-hero {
    min-height: auto;
    padding: 4rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ta-public-shell .ta-reveal,
  .ta-public-shell .ta-job-image img,
  .ta-public-shell .ta-news-card-img {
    transition: none !important;
    transform: none !important;
  }
}

/* ================================
   Public Premium Applied Layer
================================ */

.ta-public-shell .ta-navbar {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, .98), rgba(12, 24, 44, .96)) !important;
  border-bottom: 1px solid rgba(255, 255, 255, .10);
  box-shadow: 0 14px 34px rgba(0, 0, 0, .22);
}

.ta-public-shell .ta-navbar .navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  color: #fff !important;
  font-weight: 950;
}

.ta-public-shell .ta-navbar .navbar-brand::before {
  content: "";
  width: .8rem;
  height: .8rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--acosa-orange), var(--acosa-blue));
  box-shadow: 0 0 0 .32rem rgba(254, 80, 0, .16);
}

.ta-public-shell .ta-navbar .nav-link {
  color: rgba(255, 255, 255, .82) !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 {
  color: #fff !important;
  background: rgba(255, 255, 255, .10);
}

.ta-public-shell .ta-country-premium-home .country-hero,
.ta-public-shell .ta-jobs-premium-hero,
.ta-public-shell .ta-job-detail-hero,
.ta-public-shell .ta-news-hero {
  position: relative;
  overflow: hidden;
  min-height: clamp(22rem, 48vh, 34rem);
  display: flex;
  align-items: center;
  background:
    linear-gradient(120deg, rgba(0, 0, 0, .97) 0%, rgba(16, 35, 62, .95) 54%, rgba(0, 68, 92, .88) 100%),
    radial-gradient(circle at 82% 18%, rgba(0, 178, 227, .22), transparent 21rem),
    radial-gradient(circle at 14% 84%, rgba(254, 80, 0, .18), transparent 18rem) !important;
  color: #fff;
  border-bottom: 1px solid rgba(254, 80, 0, .38);
}

.ta-public-shell .ta-country-premium-home .country-hero::after,
.ta-public-shell .ta-jobs-premium-hero::after,
.ta-public-shell .ta-job-detail-hero::after,
.ta-public-shell .ta-news-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255,255,255,.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.042) 1px, transparent 1px);
  background-size: 72px 72px;
  opacity: .5;
  mask-image: linear-gradient(90deg, #000 0%, transparent 82%);
  pointer-events: none;
}

.ta-public-shell .ta-country-premium-home .country-hero > *,
.ta-public-shell .ta-jobs-premium-hero > *,
.ta-public-shell .ta-job-detail-hero > *,
.ta-public-shell .ta-news-hero > * {
  position: relative;
  z-index: 1;
}

.ta-public-shell .ta-country-premium-home .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: 58rem;
  color: #fff !important;
  font-size: clamp(2.75rem, 6vw, 5.25rem) !important;
  font-weight: 950 !important;
  line-height: 1.02;
}

.ta-public-shell .ta-country-premium-home .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 {
  color: rgba(255, 255, 255, .78) !important;
}

.ta-public-shell .ta-hero-mini-panel {
  padding: 1.25rem;
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: 8px;
  background: rgba(255, 255, 255, .09);
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
  backdrop-filter: blur(16px);
}

.ta-public-shell .ta-hero-mini-panel span,
.ta-public-shell .ta-hero-mini-panel small {
  display: block;
  color: rgba(255, 255, 255, .68);
  font-weight: 800;
}

.ta-public-shell .ta-hero-mini-panel strong {
  display: block;
  color: #fff;
  font-size: clamp(2.4rem, 6vw, 4.2rem);
  font-weight: 950;
  line-height: 1;
}

.ta-public-shell .ta-search-panel {
  padding: 1.25rem !important;
  border-color: rgba(255, 255, 255, .18) !important;
  background: rgba(255, 255, 255, .94) !important;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .18) !important;
}

.ta-public-shell .ta-premium-list-card {
  position: relative;
  border: 0 !important;
  box-shadow: 0 20px 55px rgba(15, 23, 42, .12) !important;
}

.ta-public-shell .ta-premium-list-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--acosa-orange), var(--acosa-blue));
  z-index: 2;
}

.ta-public-shell .ta-job-badge,
.ta-public-shell .ta-news-country-badge,
.ta-public-shell .ta-news-internal-badge,
.ta-public-shell .badge.text-bg-light {
  display: inline-flex;
  align-items: center;
  min-height: 2rem;
  padding: .42rem .72rem !important;
  border: 1px solid rgba(15, 23, 42, .08) !important;
  border-radius: 999px !important;
  background: linear-gradient(180deg, #fff, #f5f8fb) !important;
  color: #1d2939 !important;
  font-size: .76rem;
  font-weight: 850;
  box-shadow: 0 5px 15px rgba(15, 23, 42, .06);
}

.ta-public-shell .ta-primary-action,
.ta-public-shell .btn-primary {
  border: 0 !important;
  background: linear-gradient(135deg, var(--acosa-orange), #ff7a1a) !important;
  color: #fff !important;
  box-shadow: 0 14px 30px rgba(254, 80, 0, .26);
}

.ta-public-shell .ta-primary-action:hover,
.ta-public-shell .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 40px rgba(254, 80, 0, .32);
}

.ta-public-shell .ta-detail-card,
.ta-public-shell .ta-news-article-card,
.ta-public-shell .ta-comment-card,
.ta-public-shell .ta-comment-login-card,
.ta-public-shell .ta-comment-form-card {
  border: 1px solid rgba(15, 23, 42, .08) !important;
  background: rgba(255, 255, 255, .96) !important;
  box-shadow: 0 18px 50px rgba(15, 23, 42, .10) !important;
}

.ta-public-shell .ta-news-article-card {
  padding: clamp(1rem, 3vw, 2rem);
  border-radius: 8px;
}

.ta-public-shell .ta-news-detail-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1.06;
  color: var(--ta-public-text);
}

.ta-public-shell .ta-reaction-button {
  border: 1px solid rgba(15, 23, 42, .08) !important;
  background: #fff !important;
  box-shadow: 0 12px 28px rgba(15, 23, 42, .08);
}

.ta-public-shell .ta-reaction-button:hover,
.ta-public-shell .ta-reaction-button.is-active {
  transform: translateY(-3px);
  border-color: rgba(254, 80, 0, .25) !important;
  box-shadow: 0 18px 38px rgba(254, 80, 0, .14);
}

.ta-public-shell .ta-reaction-icon {
  display: inline-grid;
  place-items: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff4ed, #eef9fc);
  font-size: 1.15rem;
}

/* ================================
   Talento ACOSA Admin Design System
================================ */

.ta-admin-shell {
  --ta-admin-acosa: #fe5000;
  --ta-admin-acosa-hover: #db4600;
  --ta-admin-navy: #10233e;
  --ta-admin-navy-900: #07111f;
  --ta-admin-cyan: #00b2e3;
  --ta-admin-bg: #f5f7fb;
  --ta-admin-surface: #ffffff;
  --ta-admin-surface-soft: #f8fafc;
  --ta-admin-text: #111827;
  --ta-admin-muted: #64748b;
  --ta-admin-border: #e3e8ef;
  --ta-admin-border-strong: #d6dde8;
  --ta-admin-shadow: 0 12px 30px rgba(15, 23, 42, .08);
  --ta-admin-shadow-soft: 0 6px 18px rgba(15, 23, 42, .06);
  --ta-admin-radius: 8px;
  --ta-admin-radius-sm: 6px;
  --ta-admin-radius-lg: 8px;
  --ta-admin-space-1: .25rem;
  --ta-admin-space-2: .5rem;
  --ta-admin-space-3: .75rem;
  --ta-admin-space-4: 1rem;
  --ta-admin-space-5: 1.25rem;
  --ta-admin-space-6: 1.5rem;

  background: var(--ta-admin-bg);
  color: var(--ta-admin-text);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.ta-admin-shell.bg-light {
  background:
    radial-gradient(circle at top left, rgba(0, 178, 227, .08), transparent 32rem),
    linear-gradient(180deg, #f8fafc 0%, var(--ta-admin-bg) 100%) !important;
}

.ta-admin-shell .container-fluid.px-4.py-4 {
  padding-top: var(--ta-admin-space-5) !important;
  padding-bottom: 2rem !important;
}

.ta-admin-shell h1,
.ta-admin-shell h2,
.ta-admin-shell h3,
.ta-admin-shell h4,
.ta-admin-shell h5,
.ta-admin-shell h6 {
  color: var(--ta-admin-text);
  letter-spacing: 0;
}

.ta-admin-shell .text-muted {
  color: var(--ta-admin-muted) !important;
}

.ta-admin-shell .rounded-4 {
  border-radius: var(--ta-admin-radius-lg) !important;
}

.ta-admin-shell .card {
  border-color: var(--ta-admin-border);
  border-radius: var(--ta-admin-radius);
}

.ta-admin-shell .card.border-0,
.ta-admin-shell .card.shadow-sm,
.ta-admin-shell form.card {
  border: 1px solid var(--ta-admin-border) !important;
  box-shadow: var(--ta-admin-shadow-soft) !important;
}

.ta-admin-shell .card-header,
.ta-admin-shell .card-footer {
  border-color: var(--ta-admin-border);
}

.ta-admin-shell .card-body {
  color: var(--ta-admin-text);
}

.ta-admin-shell .btn {
  border-radius: var(--ta-admin-radius-sm);
  font-weight: 700;
  letter-spacing: 0;
  transition:
    background-color .16s ease,
    border-color .16s ease,
    color .16s ease,
    box-shadow .16s ease,
    transform .16s ease;
}

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

.ta-admin-shell .btn:focus-visible {
  box-shadow: 0 0 0 .22rem rgba(254, 80, 0, .18);
}

.ta-admin-shell .btn-primary {
  background: var(--ta-admin-acosa);
  border-color: var(--ta-admin-acosa);
  color: #fff;
}

.ta-admin-shell .btn-primary:hover,
.ta-admin-shell .btn-primary:focus {
  background: var(--ta-admin-acosa-hover);
  border-color: var(--ta-admin-acosa-hover);
  color: #fff;
}

.ta-admin-shell .btn-dark {
  background: var(--ta-admin-navy);
  border-color: var(--ta-admin-navy);
  color: #fff;
}

.ta-admin-shell .btn-dark:hover,
.ta-admin-shell .btn-dark:focus {
  background: var(--ta-admin-navy-900);
  border-color: var(--ta-admin-navy-900);
  color: #fff;
}

.ta-admin-shell .btn-success {
  background: #15803d;
  border-color: #15803d;
  color: #fff;
}

.ta-admin-shell .btn-success:hover,
.ta-admin-shell .btn-success:focus {
  background: #166534;
  border-color: #166534;
  color: #fff;
}

.ta-admin-shell .btn-warning {
  background: #f59e0b;
  border-color: #f59e0b;
  color: #111827;
}

.ta-admin-shell .btn-warning:hover,
.ta-admin-shell .btn-warning:focus {
  background: #d97706;
  border-color: #d97706;
  color: #111827;
}

.ta-admin-shell .btn-danger {
  background: #dc2626;
  border-color: #dc2626;
  color: #fff;
}

.ta-admin-shell .btn-danger:hover,
.ta-admin-shell .btn-danger:focus {
  background: #b91c1c;
  border-color: #b91c1c;
  color: #fff;
}

.ta-admin-shell .btn-outline-primary {
  border-color: rgba(254, 80, 0, .42);
  color: var(--ta-admin-acosa);
}

.ta-admin-shell .btn-outline-primary:hover,
.ta-admin-shell .btn-outline-primary:focus {
  background: rgba(254, 80, 0, .1);
  border-color: var(--ta-admin-acosa);
  color: #9a3412;
}

.ta-admin-shell .btn-outline-secondary,
.ta-admin-shell .btn-light {
  border-color: var(--ta-admin-border-strong);
  color: #334155;
  background: #fff;
}

.ta-admin-shell .btn-outline-secondary:hover,
.ta-admin-shell .btn-outline-secondary:focus,
.ta-admin-shell .btn-light:hover,
.ta-admin-shell .btn-light:focus {
  background: var(--ta-admin-surface-soft);
  border-color: #cbd5e1;
  color: var(--ta-admin-text);
}

.ta-admin-shell .btn-outline-success {
  border-color: rgba(21, 128, 61, .4);
  color: #15803d;
}

.ta-admin-shell .btn-outline-warning {
  border-color: rgba(245, 158, 11, .5);
  color: #92400e;
}

.ta-admin-shell .btn-outline-danger {
  border-color: rgba(220, 38, 38, .42);
  color: #b91c1c;
}

.ta-admin-shell .btn-outline-dark {
  border-color: rgba(16, 35, 62, .42);
  color: var(--ta-admin-navy);
}

.ta-admin-shell .btn-outline-danger:hover,
.ta-admin-shell .btn-outline-success:hover,
.ta-admin-shell .btn-outline-warning:hover,
.ta-admin-shell .btn-outline-dark:hover {
  box-shadow: var(--ta-admin-shadow-soft);
}

.ta-admin-shell .btn-sm,
.ta-admin-shell .btn-group-sm>.btn {
  min-height: 2rem;
  padding: .38rem .68rem;
  font-size: .78rem;
}

.ta-admin-shell .badge {
  border: 1px solid transparent;
  border-radius: 999px;
  padding: .38rem .62rem;
  font-size: .72rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: 0;
}

.ta-admin-shell .text-bg-primary {
  background: rgba(254, 80, 0, .12) !important;
  border-color: rgba(254, 80, 0, .22);
  color: #9a3412 !important;
}

.ta-admin-shell .text-bg-info {
  background: rgba(0, 178, 227, .12) !important;
  border-color: rgba(0, 178, 227, .24);
  color: #075985 !important;
}

.ta-admin-shell .text-bg-success {
  background: rgba(22, 163, 74, .12) !important;
  border-color: rgba(22, 163, 74, .22);
  color: #166534 !important;
}

.ta-admin-shell .text-bg-warning {
  background: rgba(245, 158, 11, .14) !important;
  border-color: rgba(245, 158, 11, .26);
  color: #92400e !important;
}

.ta-admin-shell .text-bg-danger {
  background: rgba(220, 38, 38, .12) !important;
  border-color: rgba(220, 38, 38, .22);
  color: #991b1b !important;
}

.ta-admin-shell .text-bg-secondary,
.ta-admin-shell .text-bg-light {
  background: #f1f5f9 !important;
  border-color: #e2e8f0;
  color: #475569 !important;
}

.ta-admin-shell .table-responsive {
  border-radius: var(--ta-admin-radius);
  scrollbar-color: #cbd5e1 transparent;
}

.ta-admin-shell .table {
  --bs-table-bg: transparent;
  --bs-table-color: var(--ta-admin-text);
  --bs-table-border-color: var(--ta-admin-border);
  --bs-table-hover-bg: rgba(254, 80, 0, .035);
  margin-bottom: 0;
  color: var(--ta-admin-text);
  font-size: .92rem;
}

.ta-admin-shell .table> :not(caption)>*>* {
  padding: .9rem 1rem;
  border-bottom-color: var(--ta-admin-border);
  vertical-align: middle;
}

.ta-admin-shell .table thead th {
  background: #f8fafc;
  color: #475569;
  font-size: .72rem;
  font-weight: 850;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
}

.ta-admin-shell .table thead.table-light th,
.ta-admin-shell .table .table-light th {
  background: #f8fafc;
}

.ta-admin-shell .table tbody tr {
  transition: background-color .16s ease, box-shadow .16s ease;
}

.ta-admin-shell .table-hover>tbody>tr:hover>* {
  color: var(--ta-admin-text);
}

.ta-admin-shell .table tbody td {
  color: #1f2937;
}

.ta-admin-shell .table tbody td .small {
  line-height: 1.35;
}

.ta-admin-shell .table tbody tr:last-child td {
  border-bottom-width: 0;
}

.ta-admin-shell .table td.text-end,
.ta-admin-shell .table th.text-end {
  white-space: nowrap;
}

.ta-admin-shell .table td.text-end .btn,
.ta-admin-shell .table td .btn-group,
.ta-admin-shell .table td .d-flex.gap-2 {
  margin-top: .12rem;
  margin-bottom: .12rem;
}

.ta-admin-shell .table td.text-end .btn+.btn {
  margin-left: .25rem;
}

.ta-admin-shell .table code {
  color: #475569;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: var(--ta-admin-radius-sm);
  padding: .14rem .34rem;
}

.ta-admin-shell .ta-list-card {
  overflow: hidden;
  border: 1px solid var(--ta-admin-border) !important;
  background: rgba(255, 255, 255, .98);
  box-shadow: var(--ta-admin-shadow-soft) !important;
}

.ta-admin-shell .ta-list-card > .card-body {
  padding: 0;
}

.ta-admin-shell .ta-admin-table {
  min-width: 760px;
}

.ta-admin-shell .ta-admin-table > :not(caption) > * > * {
  padding: .95rem 1rem;
}

.ta-admin-shell .ta-admin-table thead th {
  position: relative;
  background:
    linear-gradient(180deg, #fbfdff 0%, #f6f8fb 100%);
  border-bottom: 1px solid #dfe7f1;
  color: #475569;
}

.ta-admin-shell .ta-admin-table tbody tr {
  border-left: 3px solid transparent;
}

.ta-admin-shell .ta-admin-table tbody tr:hover {
  border-left-color: rgba(254, 80, 0, .58);
}

.ta-admin-shell .ta-admin-table tbody tr:hover > * {
  background: rgba(248, 250, 252, .95);
}

.ta-admin-shell .ta-admin-table td:first-child,
.ta-admin-shell .ta-admin-table th:first-child {
  padding-left: 1.15rem;
}

.ta-admin-shell .ta-admin-table td:last-child,
.ta-admin-shell .ta-admin-table th:last-child {
  padding-right: 1.15rem;
}

.ta-admin-shell .ta-admin-table .fw-semibold,
.ta-admin-shell .ta-admin-table .fw-bold,
.ta-admin-shell .ta-admin-table strong {
  color: #0f172a;
  font-weight: 800 !important;
}

.ta-admin-shell .ta-admin-table img {
  border-radius: var(--ta-admin-radius) !important;
  border: 1px solid #e2e8f0;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .08) !important;
}

.ta-admin-shell .ta-admin-table td[colspan] {
  background:
    linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  color: #64748b !important;
  font-weight: 700;
}

.ta-admin-shell .ta-admin-table td.text-end {
  min-width: 8rem;
}

.ta-admin-shell .ta-admin-table td.text-end .btn,
.ta-admin-shell .ta-admin-table .ta-table-actions .btn {
  min-height: 1.9rem;
  padding: .32rem .58rem;
  border-radius: var(--ta-admin-radius-sm);
  font-size: .76rem;
  font-weight: 800;
}

.ta-admin-shell .ta-table-actions {
  display: inline-flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .4rem;
}

.ta-admin-shell .ta-admin-table .badge {
  white-space: nowrap;
}

.ta-admin-shell .ta-form-card {
  overflow: hidden;
  border: 1px solid var(--ta-admin-border) !important;
  border-radius: var(--ta-admin-radius) !important;
  background: rgba(255, 255, 255, .98);
  box-shadow: var(--ta-admin-shadow-soft) !important;
}

.ta-admin-shell .ta-form-card > .card-body,
.ta-admin-shell .ta-form-card .card-body {
  padding: 1.35rem;
}

.ta-admin-shell .ta-form-card .card-footer {
  padding: 0 1.35rem 1.35rem;
  background: #fff !important;
}

.ta-admin-shell .ta-admin-form,
.ta-admin-shell form.ta-admin-form.row.g-3,
.ta-admin-shell form.ta-admin-form.row.g-4 {
  padding: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.ta-admin-shell .ta-admin-form .form-label {
  color: #334155;
  font-size: .78rem;
  font-weight: 850;
  text-transform: none;
}

.ta-admin-shell .ta-admin-form .form-control,
.ta-admin-shell .ta-admin-form .form-select {
  min-height: 2.7rem;
  background-color: #fff;
}

.ta-admin-shell .ta-admin-form textarea.form-control {
  min-height: 8.5rem;
  line-height: 1.6;
  resize: vertical;
}

.ta-admin-shell .ta-admin-form textarea[rows="2"].form-control,
.ta-admin-shell .ta-admin-form textarea[rows="3"].form-control {
  min-height: 5.8rem;
}

.ta-admin-shell .ta-admin-form .form-text,
.ta-admin-shell .ta-form-help {
  color: #64748b;
  font-size: .78rem;
  line-height: 1.45;
}

.ta-admin-shell .ta-admin-form .form-check:not(.form-switch) {
  min-height: 2.7rem;
  display: flex;
  align-items: center;
  gap: .55rem;
  padding: .72rem .85rem;
  border: 1px solid var(--ta-admin-border);
  border-radius: var(--ta-admin-radius);
  background: #f8fafc;
}

.ta-admin-shell .ta-admin-form .form-check-input {
  float: none;
  margin-left: 0;
  margin-top: 0;
}

.ta-admin-shell .ta-admin-form .form-check-label {
  color: #334155;
  font-weight: 750;
}

.ta-admin-shell .ta-form-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: .6rem;
  padding-top: 1rem;
  margin-top: .25rem;
  border-top: 1px solid #edf2f7;
}

.ta-admin-shell .ta-form-actions .btn {
  min-width: 8rem;
}

.ta-admin-shell .ta-form-preview {
  display: inline-block;
  padding: .35rem;
  border: 1px solid #e2e8f0;
  border-radius: var(--ta-admin-radius);
  background: #fff;
  box-shadow: var(--ta-admin-shadow-soft);
}

.ta-admin-shell .ta-form-preview img,
.ta-admin-shell img.ta-form-preview {
  max-width: 100%;
  border-radius: var(--ta-admin-radius) !important;
}

.ta-admin-shell .ta-profile-summary {
  background: #f8fafc !important;
  border: 1px solid #e2e8f0 !important;
  border-radius: var(--ta-admin-radius) !important;
}

.ta-admin-shell form.row.g-3,
.ta-admin-shell form.row.g-4 {
  align-items: end;
  padding: var(--ta-admin-space-5);
  background: rgba(255, 255, 255, .94);
  border: 1px solid var(--ta-admin-border);
  border-radius: var(--ta-admin-radius);
  box-shadow: var(--ta-admin-shadow-soft);
}

.ta-admin-shell form.card {
  background: rgba(255, 255, 255, .96);
}

.ta-admin-shell form.card .card-body {
  padding: var(--ta-admin-space-5);
}

.ta-admin-shell .form-label {
  color: #475569;
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: 0;
  margin-bottom: .38rem;
}

.ta-admin-shell .form-control,
.ta-admin-shell .form-select {
  min-height: 2.55rem;
  border-color: var(--ta-admin-border-strong);
  border-radius: var(--ta-admin-radius-sm);
  color: var(--ta-admin-text);
  background-color: #fff;
  box-shadow: none;
  transition: border-color .16s ease, box-shadow .16s ease, background-color .16s ease;
}

.ta-admin-shell .form-control-sm,
.ta-admin-shell .form-select-sm {
  min-height: 2.15rem;
  font-size: .84rem;
}

.ta-admin-shell textarea.form-control {
  min-height: 7rem;
}

.ta-admin-shell .form-control::placeholder {
  color: #94a3b8;
}

.ta-admin-shell .form-control:hover,
.ta-admin-shell .form-select:hover {
  border-color: #cbd5e1;
}

.ta-admin-shell .form-control:focus,
.ta-admin-shell .form-select:focus {
  border-color: rgba(254, 80, 0, .68);
  box-shadow: 0 0 0 .22rem rgba(254, 80, 0, .12);
}

.ta-admin-shell .input-group .btn {
  min-height: 2.55rem;
}

.ta-admin-shell .alert {
  border-radius: var(--ta-admin-radius);
  border-width: 1px;
}

.ta-admin-shell .kanban-board {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  padding: .25rem .15rem 1.1rem;
  scroll-snap-type: x proximity;
  scrollbar-color: #cbd5e1 transparent;
}

.ta-admin-shell .kanban-column {
  flex: 0 0 21rem;
  max-width: 21rem;
  min-height: 34rem;
  overflow: hidden;
  scroll-snap-align: start;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, .96), rgba(248, 250, 252, .96));
  border: 1px solid rgba(203, 213, 225, .82);
  border-radius: var(--ta-admin-radius);
  box-shadow: var(--ta-admin-shadow-soft);
  transition: border-color .16s ease, box-shadow .16s ease, background-color .16s ease;
}

.ta-admin-shell .kanban-column.is-over {
  outline: 0;
  border-color: rgba(0, 178, 227, .58);
  background: linear-gradient(180deg, rgba(240, 249, 255, .98), rgba(255, 255, 255, .98));
  box-shadow: 0 0 0 .2rem rgba(0, 178, 227, .12), var(--ta-admin-shadow);
}

.ta-admin-shell .kanban-column-header {
  position: sticky;
  top: 0;
  z-index: 1;
  background: rgba(248, 250, 252, .96);
  border-color: #e2e8f0 !important;
  backdrop-filter: blur(10px);
}

.ta-admin-shell .kanban-column-header h2 {
  color: #0f172a;
  font-size: .86rem;
  font-weight: 900;
  letter-spacing: 0;
}

.ta-admin-shell .kanban-column-header .badge {
  min-width: 2rem;
  justify-content: center;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, .45);
}

.ta-admin-shell .kanban-column-body {
  min-height: 28rem;
}

.ta-admin-shell .kanban-empty {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 8rem;
  padding: 1rem;
  border: 1px dashed #cbd5e1;
  border-radius: var(--ta-admin-radius);
  background: rgba(255, 255, 255, .62);
  color: #64748b;
  font-size: .86rem;
  font-weight: 700;
  text-align: center;
}

.ta-admin-shell .kanban-column-body:has(.kanban-card) .kanban-empty {
  display: none;
}

.ta-admin-shell .kanban-card {
  cursor: grab;
  overflow: hidden;
  border: 1px solid #e2e8f0 !important;
  border-left: 4px solid #94a3b8 !important;
  border-radius: var(--ta-admin-radius);
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .06) !important;
  transition: transform .16s ease, box-shadow .16s ease, border-color .16s ease, opacity .16s ease;
}

.ta-admin-shell .kanban-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(15, 23, 42, .11) !important;
}

.ta-admin-shell .kanban-card:active {
  cursor: grabbing;
}

.ta-admin-shell .kanban-card.is-dragging {
  opacity: .58;
  transform: rotate(.35deg) scale(.99);
}

.ta-admin-shell .kanban-card.status-new {
  border-left-color: var(--ta-admin-cyan) !important;
}

.ta-admin-shell .kanban-card.status-review {
  border-left-color: #f59e0b !important;
}

.ta-admin-shell .kanban-card.status-interview {
  border-left-color: var(--ta-admin-acosa) !important;
}

.ta-admin-shell .kanban-card.status-hired {
  border-left-color: #16a34a !important;
}

.ta-admin-shell .kanban-card.status-rejected {
  border-left-color: #dc2626 !important;
}

.ta-admin-shell .kanban-card-name {
  color: #0f172a;
  font-size: .98rem;
  font-weight: 850;
  line-height: 1.25;
}

.ta-admin-shell .kanban-card-job,
.ta-admin-shell .kanban-card-meta,
.ta-admin-shell .kanban-card-date {
  color: #64748b;
  font-size: .78rem;
  line-height: 1.4;
}

.ta-admin-shell .kanban-card-job {
  margin-top: .15rem;
  font-weight: 650;
}

.ta-admin-shell .kanban-card-contact {
  color: #334155;
  font-size: .84rem;
  font-weight: 700;
  line-height: 1.4;
}

.ta-admin-shell .kanban-card-actions {
  padding-top: .75rem;
  border-top: 1px solid #edf2f7;
}

.ta-admin-shell .kanban-card-actions .btn {
  flex: 0 0 auto;
}

.ta-admin-shell .kanban-card-actions .form-select {
  min-height: 2rem;
  border-radius: var(--ta-admin-radius-sm);
  font-size: .78rem;
  font-weight: 700;
}

.ta-admin-shell .text-white h1,
.ta-admin-shell .text-white h2,
.ta-admin-shell .text-white h3,
.ta-admin-shell .text-white h4,
.ta-admin-shell .text-white h5,
.ta-admin-shell .text-white h6,
.ta-admin-shell .text-white .display-1,
.ta-admin-shell .text-white .display-2,
.ta-admin-shell .text-white .display-3,
.ta-admin-shell .text-white .display-4,
.ta-admin-shell .text-white .display-5,
.ta-admin-shell .text-white .display-6,
.ta-admin-shell .dashboard-hero h1,
.ta-admin-shell .dashboard-hero h2,
.ta-admin-shell .interviews-hero h1,
.ta-admin-shell .interviews-hero h2,
.ta-admin-shell .application-hero h1,
.ta-admin-shell .application-hero h2,
.ta-admin-shell .candidate-detail-hero h1,
.ta-admin-shell .candidate-detail-hero h2,
.ta-admin-shell .job-detail-hero h1,
.ta-admin-shell .job-detail-hero h2,
.ta-admin-shell .interview-form-hero h1,
.ta-admin-shell .interview-form-hero h2 {
  color: #fff;
}

.ta-admin-shell .text-white p,
.ta-admin-shell .text-white .lead,
.ta-admin-shell .dashboard-hero p,
.ta-admin-shell .interviews-hero p,
.ta-admin-shell .application-hero p,
.ta-admin-shell .candidate-detail-hero p,
.ta-admin-shell .job-detail-hero p,
.ta-admin-shell .interview-form-hero p {
  color: rgba(255, 255, 255, .76);
}

.ta-admin-shell .text-white .text-white-50,
.ta-admin-shell .dashboard-hero .text-white-50,
.ta-admin-shell .interviews-hero .text-white-50,
.ta-admin-shell .application-hero .text-white-50,
.ta-admin-shell .candidate-detail-hero .text-white-50,
.ta-admin-shell .job-detail-hero .text-white-50,
.ta-admin-shell .interview-form-hero .text-white-50 {
  color: rgba(255, 255, 255, .76) !important;
}

@media (max-width: 767.98px) {
  .ta-admin-shell .container-fluid.px-4.py-4 {
    padding-left: 1rem !important;
    padding-right: 1rem !important;
  }

  .ta-admin-shell form.row.g-3,
  .ta-admin-shell form.row.g-4,
  .ta-admin-shell form.card .card-body {
    padding: var(--ta-admin-space-4);
  }

  .ta-admin-shell .ta-form-card > .card-body,
  .ta-admin-shell .ta-form-card .card-body {
    padding: 1rem;
  }

  .ta-admin-shell .ta-form-card .card-footer {
    padding: 0 1rem 1rem;
  }

  .ta-admin-shell .ta-form-actions {
    justify-content: stretch;
  }

  .ta-admin-shell .ta-form-actions .btn {
    flex: 1 1 auto;
  }

  .ta-admin-shell .table {
    font-size: .86rem;
  }

  .ta-admin-shell .table> :not(caption)>*>* {
    padding: .76rem .82rem;
  }

  .ta-admin-shell .ta-admin-table {
    min-width: 680px;
  }

  .ta-admin-shell .ta-admin-table td:first-child,
  .ta-admin-shell .ta-admin-table th:first-child {
    padding-left: .9rem;
  }

  .ta-admin-shell .ta-admin-table td:last-child,
  .ta-admin-shell .ta-admin-table th:last-child {
    padding-right: .9rem;
  }

  .ta-admin-shell .btn {
    min-height: 2.35rem;
  }

  .ta-admin-shell .kanban-board {
    gap: .85rem;
    margin-left: -.25rem;
    margin-right: -.25rem;
    padding-left: .25rem;
    padding-right: .25rem;
  }

  .ta-admin-shell .kanban-column {
    flex-basis: min(19rem, 86vw);
    max-width: min(19rem, 86vw);
  }

  .ta-admin-shell .kanban-column-body {
    min-height: 24rem;
  }
}
