/* Recruiting hub — matches sport/news landing patterns */

.rec-hero {
  position: relative;
  min-height: min(78vh, 680px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #08080a;
}

.rec-hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.rec-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  display: block;
  transform: scale(1.02);
  animation: rec-hero-drift 18s ease-in-out infinite alternate;
}

@keyframes rec-hero-drift {
  from { transform: scale(1.02) translate3d(0, 0, 0); }
  to { transform: scale(1.06) translate3d(-1.2%, -0.6%, 0); }
}

.rec-hero-shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(105deg, rgba(8, 8, 10, 0.92) 0%, rgba(8, 8, 10, 0.55) 48%, rgba(8, 8, 10, 0.25) 100%),
    linear-gradient(to top, rgba(8, 8, 10, 0.88) 0%, transparent 45%);
  pointer-events: none;
}

.rec-hero-inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 4.5rem 1.5rem 3.25rem;
}

.rec-hero-brand {
  font-family: 'Anton', sans-serif;
  font-size: clamp(2.75rem, 9vw, 5.5rem);
  line-height: 0.95;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: #fff;
  margin: 0 0 0.85rem;
}

.rec-hero-brand span {
  color: #FFCD00;
}

.rec-hero-headline {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: clamp(1.15rem, 2.4vw, 1.65rem);
  line-height: 1.25;
  color: rgba(255, 255, 255, 0.92);
  max-width: 28ch;
  margin: 0 0 0.75rem;
}

.rec-hero-body {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.72);
  max-width: 42ch;
  margin: 0;
}

@media (prefers-reduced-motion: reduce) {
  .rec-hero-media img {
    animation: none !important;
  }
}

@media (max-width: 600px) {
  .rec-hero {
    min-height: min(70vh, 560px);
  }

  .rec-hero-inner {
    padding: 3.5rem 1.15rem 2.5rem;
  }

  .rec-hero-brand {
    line-height: 1;
  }
}

/* Gold strip */
.rec-gold-strip {
  position: sticky;
  top: var(--nav-h, 74px);
  z-index: 90;
  background: #FFCD00;
  border-bottom: 2px solid #0a0a0c;
}

.rec-gold-strip-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 52px;
  flex-wrap: wrap;
}

.rec-gold-strip-title {
  flex-shrink: 0;
  font-family: 'Anton', sans-serif;
  font-size: 1.05rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #0a0a0c;
}

.rec-gold-nav {
  display: flex;
  align-items: stretch;
  list-style: none;
  margin: 0;
  padding: 0;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.rec-gold-nav::-webkit-scrollbar {
  display: none;
}

.rec-gold-nav a {
  display: flex;
  align-items: center;
  min-height: 44px;
  padding: 0.65rem 0.95rem;
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  color: rgba(10, 10, 12, 0.62);
  white-space: nowrap;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
}

.rec-gold-nav a:hover,
.rec-gold-nav a:focus-visible {
  color: #0a0a0c;
  background: rgba(0, 0, 0, 0.06);
  outline: none;
}

.rec-gold-nav a.is-active {
  color: #0a0a0c;
  border-bottom-color: #0a0a0c;
}

/* Main layout */
.rec-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2.5rem 1.25rem 4.5rem;
}

.rec-search-wrap {
  margin-bottom: 1.75rem;
}

.rec-search {
  width: 100%;
  max-width: 28rem;
  box-sizing: border-box;
  padding: 0.85rem 1.1rem;
  min-height: 48px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  color: var(--ink, #0d0e10);
  background: var(--white, #fff);
  border: 1.5px solid var(--mist, #e8e7e3);
  border-radius: var(--rad, 3px);
}

.rec-search:focus {
  outline: 2px solid #FFCD00;
  outline-offset: 2px;
  border-color: #0a0a0c;
}

.rec-search::placeholder {
  color: var(--dim, #7a7974);
}

.rec-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
  gap: 2.5rem 2rem;
  align-items: start;
}

@media (max-width: 900px) {
  .rec-layout {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.rec-section {
  scroll-margin-top: calc(var(--nav-h, 74px) + 64px);
  margin-bottom: 2.25rem;
}

.rec-section:last-child {
  margin-bottom: 0;
}

.rec-section-title {
  font-family: 'Anton', sans-serif;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink, #0d0e10);
  margin: 0 0 1rem;
  padding-bottom: 0.55rem;
  border-bottom: 2px solid #FFCD00;
}

.rec-news-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.rec-news-item {
  padding: 1rem 1.1rem;
  background: var(--white, #fff);
  border-left: 4px solid #FFCD00;
  border-top: 1px solid var(--mist, #e8e7e3);
  border-right: 1px solid var(--mist, #e8e7e3);
  border-bottom: 1px solid var(--mist, #e8e7e3);
  transition: transform 0.15s ease;
}

.rec-news-item:hover {
  transform: translateX(4px);
}

.rec-news-item h3 a {
  color: inherit;
  text-decoration: none;
}

.rec-news-item h3 a:hover,
.rec-news-item h3 a:focus-visible {
  color: #0a0a0c;
  text-decoration: underline;
  text-decoration-color: #FFCD00;
  text-underline-offset: 3px;
  outline: none;
}

.rec-news-item time,
.rec-news-item .rec-meta {
  font-family: 'Poppins', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--dim, #7a7974);
}

.rec-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1.5px solid var(--mist, #e8e7e3);
  background: var(--white, #fff);
}

.rec-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 480px;
}

.rec-table th {
  font-family: 'Poppins', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: left;
  background: #FFCD00;
  color: #0a0a0c;
  padding: 0.75rem 1rem;
}

.rec-table td {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  padding: 0.8rem 1rem;
  border-bottom: 1px solid var(--mist, #e8e7e3);
  color: var(--ink, #0d0e10);
}

.rec-table tbody tr:last-child td {
  border-bottom: none;
}

.rec-table tbody tr[hidden] {
  display: none;
}

.rec-summary {
  padding: 1.25rem 1.35rem;
  background: var(--paper-alt, #f3f2ef);
  border-left: 4px solid #FFCD00;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-soft, #2a2b2e);
}

.rec-summary strong {
  display: block;
  font-family: 'Anton', sans-serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink, #0d0e10);
  margin-bottom: 0.75rem;
}

.rec-summary ul {
  margin: 0;
  padding-left: 1.15rem;
}

.rec-summary li {
  margin-bottom: 0.45rem;
}

.rec-summary li:last-child {
  margin-bottom: 0;
}

.rec-visit-list,
.rec-rank-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.rec-visit-item,
.rec-rank-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  padding: 0.85rem 1rem;
  background: var(--white, #fff);
  border: 1px solid var(--mist, #e8e7e3);
  border-left: 4px solid #FFCD00;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: var(--ink, #0d0e10);
}

.rec-rank-item .rec-rank-label {
  font-weight: 600;
}

.rec-rank-item .rec-rank-value {
  flex-shrink: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--dim, #7a7974);
}

.rec-empty {
  font-family: 'Poppins', sans-serif;
  font-size: 0.92rem;
  color: var(--dim, #7a7974);
  padding: 1rem 0;
}

.rec-note {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--mist, #e8e7e3);
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  color: var(--dim, #7a7974);
}
