/* components.css */

/* ==============================
   HEADER (blanc) + NAV
   ============================== */

.site-header {
  background: #fff;
}

.header-inner {
  position: relative;
  height: 120px; /* hauteur du header blanc */
  display: flex;
  align-items: center;
  justify-content: flex-end; /* le menu reste à droite */
  padding-left: 420px;
  padding-right: 15px;
}

.site-header,
.header-inner {
  overflow: visible;
}

/* Brand (logo à gauche, qui peut déborder vers le bas) */
.brand {
  position: absolute;
  left: 15px;
  transform: none;
  z-index: 200;
}

/* Texte fallback */
.brand-mark {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.2px;
  color: #111111;
}

/* Logo (image) */
.brand-logo {
  display: block;
  width: 370px;
  height: auto;
  background: transparent;
  position: relative;
  top: 3px;
}

/* Nav container */
.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1rem;
  margin-left: auto;
}

/* Hamburger (caché desktop; montré via responsive.css) */
.nav-toggle {
  display: none;
  align-items: center;
  gap: 0.6rem;
  border: 1px solid #e6e6e6;
  background: #ffffff;
  color: #111;
  font-weight: 700;
  padding: 0.65rem 0.8rem;
  border-radius: 999px;
  cursor: pointer;
}

.nav-toggle:focus {
  outline: 2px solid rgba(200, 155, 60, 0.5);
  outline-offset: 2px;
}

.nav-toggle-bars {
  width: 18px;
  height: 12px;
  display: inline-block;
  position: relative;
  background: transparent;
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: #111;
  border-radius: 2px;
}

.nav-toggle-bars::before {
  top: 1px;
  box-shadow: 0 4px 0 #111; /* ligne du milieu */
}

.nav-toggle-bars::after {
  bottom: 1px;
}

.nav-toggle-label {
  font-size: 0.95rem;
}

/* Panel contient les liens (desktop = horizontal) */
.nav-panel {
  display: flex;
  gap: 1rem;
  flex-wrap: nowrap;
  justify-content: flex-end;
  align-items: center;
  gap: 0.6rem;
}

/* Respect du hidden */
.nav-panel[hidden] {
  display: none;
}

/* Liens */
.nav-link {
  font-weight: 600;
  border-radius: 10px;
  text-decoration: none;
  white-space: nowrap;
  padding: 0.6rem 0.65rem;
  font-size: 0.95rem;
}

/* Surcharge pour le header blanc */
.site-header .nav-link {
  color: #333333;
}
.site-header .nav-link:hover {
  color: #000000;
  background: rgba(0, 0, 0, 0.05);
}
.site-header .nav-link.is-active {
  color: #000000;
}

/* ==============================
   BUTTONS
   ============================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  border: 1px solid transparent;
  transition:
    transform 0.12s ease,
    background 0.12s ease,
    border-color 0.12s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--accent);
  color: #111;
}
.btn-primary:hover {
  background: rgba(200, 155, 60, 0.92);
}

.btn-ghost {
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
}
.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.05);
}

/* ==============================
   CARDS
   ============================== */

.cards {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(3, 1fr);
  margin: 1.25rem 0;
}

.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.card-media {
  display: block;
  overflow: hidden;
  background: #111;
  border-bottom: 1px solid var(--border);
  aspect-ratio: 16 / 10;
}

/* INDEX — cards : portrait (comme low-res : ne pas couper) */
.card-media.is-lowres,
.card-media.is-portrait {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-media.is-lowres img,
.card-media.is-portrait img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

.card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 20%;
  display: block;
  transform: none;
  transition: none;
}

.card-body {
  padding: 1rem 1rem 1.1rem 1rem;
}

.card-title {
  margin: 0.6rem 0 0.4rem 0;
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.15;
}

.card-title a:hover {
  color: var(--accent);
}

.card-excerpt {
  margin: 0;
  color: var(--muted);
}

/* Fallback logo : afficher au complet */
.card-media.is-fallback {
  background: #fff;
}

.card-media.is-fallback img {
  object-fit: contain;
  object-position: center;
  transform: none;
}

/* INDEX — cards : si image low-res, ne pas l'étirer */
.card-media.is-lowres {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-media.is-lowres img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  display: block;
}

/* ==============================
   FOOTER
   ============================== */

.site-footer {
  border-top: 1px solid var(--border);
  background: var(--panel-2);
  padding-top: 1rem;
  padding-bottom: 2rem;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.footer-brand {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 1.15rem;
  margin: 0 0 0.25rem 0;
}

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

.footer-links a {
  color: var(--muted);
  font-weight: 600;
}
.footer-links a:hover {
  color: var(--text);
}

.footer-bottom {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}

.footer-muted {
  margin: 0;
  color: var(--muted);
}

/* ==============================
   FOOTER – Ajustements (logos + bottom en ligne)
   ============================== */

/* Logos (2 <a> dans .footer-inner) */
.site-footer .footer-inner > a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 86px;
}

.site-footer .footer-inner > a img {
  max-height: 86px;
  width: auto;
  object-fit: contain;
  display: block;
  opacity: 0.95;
  transition: opacity 0.25s ease;
}

.site-footer .footer-inner > a img:hover {
  opacity: 1;
}

/* Micro-correction MCC */
.site-footer .footer-inner > a:last-child img {
  max-height: 88px;
}

/* Bottom : copyright à gauche, liens à droite */
.footer-bottom-inner {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: nowrap;
}

.footer-bottom-inner .footer-links {
  margin-left: auto;
  flex-wrap: nowrap;
  gap: 1.25rem;
}

/* ==============================
   HOME — S'IMPLIQUER (3 cartes)
   ============================== */

.section-alt {
  background: var(--panel-2);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

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

.engage-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.1rem 1.1rem 1.15rem;
}

.engage-title {
  margin: 0 0 0.4rem 0;
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.12;
}

.engage-text {
  margin: 0;
  color: var(--muted);
  max-width: 70ch;
}

.engage-actions {
  margin-top: 0.9rem;
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

/* ==============================
   PAGE CONTACT (on garde ici)
   ============================== */

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--muted);
}

.page-title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.05;
  margin: 0.5rem 0 0.75rem;
}

.page-subtitle {
  max-width: 60ch;
  color: var(--muted);
  font-size: 1.05rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.contact-card {
  padding: 1.25rem;
}

.contact-items {
  display: grid;
  gap: 0.9rem;
  margin-top: 0.75rem;
}

.contact-item {
  padding: 0.9rem;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.02);
}

.contact-label {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.65);
  margin-bottom: 0.25rem;
}

.contact-value {
  font-weight: 600;
  color: rgba(0, 0, 0, 0.92);
  text-decoration: none;
}
.contact-value:hover {
  text-decoration: underline;
}

.contact-social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1rem;
  flex-wrap: wrap;
}

/* Form */
.form {
  margin-top: 0.75rem;
  display: grid;
  gap: 0.9rem;
}
.form-row {
  display: grid;
  gap: 0.4rem;
}

.form-label {
  font-weight: 600;
  color: var(--text);
}

.form-input,
.form-textarea {
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--text);
  padding: 0.85rem 0.9rem;
}

.form-input:focus,
.form-textarea:focus {
  outline: 2px solid rgba(200, 155, 60, 0.45);
  outline-offset: 2px;
}

.form-actions {
  display: grid;
  gap: 0.6rem;
  margin-top: 0.25rem;
}
.form-note {
  font-size: 0.9rem;
  color: var(--muted);
}

/* Contact: le select doit prendre toute la largeur (sinon la flèche peut "sortir") */
.form .posts-select {
  display: block;
  width: 100%;
}

.form .posts-select select {
  width: 100%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/* About page */

.page-head .muted {
  margin-top: 0.25rem;
}

.subnav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  padding: 0.75rem;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  margin: 1rem 0 1.25rem 0;
  justify-content: center;
}

.subnav a {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 0.7rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  color: var(--text);
  font-weight: 600;
}
.subnav a:hover {
  color: var(--accent);
}

.team {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.75rem;
}

.team-section h3 {
  margin-bottom: 0.35rem;
}

.team-list {
  list-style: none;
  padding: 0;
  margin: 0.75rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.team-item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.55rem 0.65rem;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.02);
}

.team-name {
  font-weight: 700;
}

.team-role {
  color: var(--muted);
  font-weight: 600;
}

.callout {
  margin-top: 0.9rem;
  padding: 0.85rem 0.9rem;
  border-radius: 14px;
  border: 1px solid var(--border);
  background: rgba(0, 0, 0, 0.03);
}

/* ==============================
   TABLES (style magazine)
   ============================== */

.table-wrap {
  overflow-x: auto;
  border-radius: 14px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background: #fff;
}

.table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  min-width: 680px;
}

.table thead th {
  background: #f2f2f2;
  color: #111;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  font-size: 0.86rem;
  padding: 1rem 1rem;
  border-bottom: 1px solid var(--border);
  vertical-align: middle;
}

.table thead th:first-child {
  border-top-left-radius: 14px;
}
.table thead th:last-child {
  border-top-right-radius: 14px;
}

.table .th-sub {
  display: inline-block;
  font-weight: 700;
  text-transform: none;
  letter-spacing: 0;
  font-size: 0.82rem;
  color: #444;
  margin-top: 0.25rem;
}

.table tbody td {
  padding: 0.95rem 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
  vertical-align: middle;
}

.table tbody tr:nth-child(even) td {
  background: rgba(0, 0, 0, 0.035);
}

.table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 14px;
}
.table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 14px;
}

.table tbody td:first-child {
  font-weight: 800;
  color: #111;
}

.table-deadlines tbody td {
  color: #111;
  opacity: 1;
}

/* ==============================
   Sélecteur d’année (à propos)
   ============================== */

.about-year {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0.75rem 0 1rem;
}

.about-year__label {
  font-weight: 700;
}

.about-year__select {
  position: relative;
  display: inline-block;
}

.about-year__select::after {
  content: "▾";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-52%);
  pointer-events: none;
  font-weight: 900;
  opacity: 0.9;
  color: #111;
}

.about-year select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: #fff;
  border: 2px solid #111;
  border-radius: 999px;
  padding: 0.65rem 2.4rem 0.65rem 1rem;
  font-weight: 800;
  cursor: pointer;
  color: #111;
}

.about-year select:focus {
  outline: 3px solid rgba(200, 155, 60, 0.45);
  outline-offset: 3px;
}

/* ==============================
   Tarifs publicitaires (cartes)
   ============================== */

.ad-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 0.75rem;
}

.ad-card {
  overflow: hidden;
}

.ad-media {
  padding: 14px;
  background: rgba(0, 0, 0, 0.03);
  border-radius: 0 !important;
}

.ad-media img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 0 !important;
}

.ad-meta {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin-top: 0.5rem;
  margin-bottom: 0.6rem;
}

/* ==============================
   PARUTIONS (grille)
   ============================== */

.issues-panel {
  overflow: visible;
  margin-bottom: 3rem;
}

.issues-toolbar {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}

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

.issue-card {
  height: 100%;
}

.issue-cover {
  aspect-ratio: 3 / 4;
}

.issue-cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.issue-month {
  margin: 0.15rem 0 0;
  font-family: var(--serif);
  font-size: 1.2rem;
  line-height: 1.1;
}

.issue-title {
  margin: 0.25rem 0 0;
  color: var(--muted);
}

.issue-actions {
  display: flex;
  gap: 0.65rem;
  flex-wrap: wrap;
  margin-top: 0.85rem;
}

/* ==============================
   ARTICLES (liste + détail)
   ============================== */

.posts-toolbar {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
}

.posts-toolbar__group {
  display: grid;
  gap: 0.35rem;
}
.posts-toolbar__search {
  flex: 1;
  min-width: 260px;
}

.posts-label {
  font-weight: 800;
  font-size: 0.9rem;
  color: #111;
}

.posts-select {
  position: relative;
  display: inline-block;
}
.posts-select::after {
  content: "▾";
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-52%);
  pointer-events: none;
  font-weight: 900;
  color: #111;
}

.posts-select select {
  appearance: none;
  background: #fff;
  border: 2px solid #111;
  border-radius: 999px;
  padding: 0.65rem 2.4rem 0.65rem 1rem;
  font-weight: 800;
  cursor: pointer;
  color: #111;
}

.posts-input {
  width: 100%;
  border-radius: 999px;
  border: 2px solid #111;
  background: #fff;
  padding: 0.65rem 1rem;
  font-weight: 600;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1rem;
}

.post-card .post-media {
  aspect-ratio: 16/10;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.post-date {
  color: var(--muted);
  font-weight: 700;
  font-size: 0.9rem;
}

.post-byline {
  margin: 0.2rem 0 0.75rem;
  color: var(--muted);
  font-weight: 600;
}

.post-actions {
  margin-top: 0.9rem;
}

/* Breadcrumb */
.post-breadcrumb {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  margin: 0 0 1rem;
  color: var(--muted);
  font-weight: 600;
}

.post-breadcrumb a {
  color: inherit;
}
.post-breadcrumb a:hover {
  color: var(--accent);
}

/* Single */
.post-single__title {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.1vw, 3rem);
  line-height: 1.05;
  margin: 0.6rem 0 0.35rem;
}

/* Pagination */
.pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin: 1.25rem 0;
}

.pagination__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.02);
  font-weight: 800;
  text-decoration: none;
  color: var(--text);
}

.pagination__btn:hover {
  background: rgba(0, 0, 0, 0.04);
}

.pagination__btn.is-disabled {
  opacity: 0.5;
  pointer-events: none;
}

.pagination__pages {
  display: flex;
  gap: 0.45rem;
  align-items: center;
  flex-wrap: wrap;
}

.pagination__page {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-weight: 800;
  text-decoration: none;
  color: var(--text);
}

.pagination__page:hover {
  background: rgba(0, 0, 0, 0.04);
}

.pagination__page.is-active {
  border-color: #111;
  background: #111;
  color: #fff;
}

.pagination__dots {
  color: var(--muted);
  font-weight: 900;
  padding: 0 0.25rem;
}

/* ==============================
   TARIFS PUB (#pub) – vignette format "page"
   ============================== */

#pub .ad-media {
  aspect-ratio: 3 / 4;
  padding: 0;
  overflow: hidden;
  background: #fff;
  border-bottom: 1px solid var(--border);

  display: flex;
  align-items: center;
  justify-content: center;
}

#pub .ad-media img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;

  opacity: 1 !important;
  visibility: visible !important;
}

#pub .ad-card:hover .ad-media img {
  transform: none !important;
}

/* =========================================
   ARTICLES — Option 3 (carte éditoriale)
   ========================================= */

.post-card.is-editorial .card-body {
  padding: 1rem;
}

.post-card.is-editorial .card-inner {
  display: grid;
  grid-template-columns: 132px 1fr;
  gap: 1rem;
  align-items: start;
}

.post-card.is-editorial .post-media {
  aspect-ratio: 1 / 1;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #111;
}

.post-card.is-editorial .post-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.post-card.is-editorial .post-title {
  margin-top: 0.35rem;
  line-height: 1.12;
}

.post-card.is-editorial .post-meta-under-media {
  margin-top: 0.45rem;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  align-items: flex-start;
}

.post-card.is-editorial .post-meta-under-media .post-date {
  font-size: 0.85rem;
  color: var(--muted);
}

/* ==============================
   INFOLETTRE (public)
   ============================== */

.newsletter-wrap {
  max-width: 780px;
  margin: 0 auto;
}

.newsletter-card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.25rem;
}

.newsletter-title {
  font-family: var(--serif);
  font-size: clamp(1.9rem, 2.6vw, 2.4rem);
  line-height: 1.05;
  margin: 0 0 0.75rem 0;
}

.newsletter-lead {
  color: var(--muted);
  margin: 0 0 1.1rem 0;
  max-width: 70ch;
}

/* Input plus premium (cohérent avec boutons) */
.newsletter-form .form-input {
  border-radius: 999px;
  border-width: 2px;
}

/* Empêche le bouton de s'étirer (car .form-actions est en grid) */
.newsletter-form .form-actions {
  justify-items: start;
  gap: 0.6rem;
}

/* Bouton: largeur naturelle sur desktop */
.newsletter-btn {
  width: auto;
  min-width: 220px;
  justify-self: start;
}

/* Messages */
.notice {
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  margin: 0 0 1rem 0;
  background: #fff;
  box-shadow: var(--shadow);
}

.notice-success {
  border-color: rgba(46, 125, 50, 0.25);
  background: rgba(46, 125, 50, 0.06);
}

.notice-error {
  border-color: rgba(198, 40, 40, 0.25);
  background: rgba(198, 40, 40, 0.06);
}

/* ==============================
   PUBLICITÉ – Notice succès renforcée
   ============================== */

.notice-spacing {
  margin-bottom: 1rem;
}

.notice-ad-inner {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  flex-wrap: wrap;
}

.notice-ad-icon {
  font-weight: 900;
  font-size: 1.1rem;
}

.notice-ad {
  font-size: 1.05rem;
  line-height: 1.55;
}

.notice-ad-delay {
  display: inline-block;
  margin-top: 0.65rem;
  padding: 0.45rem 0.8rem;
  border-radius: 999px;
  background: rgba(176, 137, 59, 0.12);
  border: 1px solid rgba(176, 137, 59, 0.35);
  font-weight: 800;
}

/* ==============================
   HOME — Bandeau offre d'emploi
   ============================== */

.job-alert {
  background: #111;
  color: #fff;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 3px solid var(--accent);
}

.job-alert-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.85rem 0;
}

.job-alert-text {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: wrap;
  font-size: 1rem;
}

.job-alert-kicker {
  display: inline-flex;
  align-items: center;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: var(--accent);
  color: #111;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.75rem;
}

.job-alert-text strong {
  font-family: var(--serif);
  font-size: 1.25rem;
  line-height: 1.1;
}

.btn-job-alert {
  background: #fff;
  color: #111;
  border-color: #fff;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.22);
}

.btn-job-alert:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: #111;
  text-decoration: none;
}

.btn-summer-job {
  background: #111;
  color: #fff;
  border-color: #111;
}

.btn-summer-job:hover {
  background: var(--accent);
  color: #111;
  border-color: var(--accent);
  text-decoration: none;
}
