/* =============================================
   HRPortál.hu — Main Stylesheet
   ============================================= */

/* --- CSS Custom Properties --- */
:root {
  --color-primary: #1a2744;
  --color-accent: #f97316;
  --color-accent-hover: #ea6c0a;
  --color-bg: #f8f9fa;
  --color-white: #ffffff;
  --color-text: #212529;
  --color-text-muted: #6c757d;
  --color-border: #dee2e6;
  --color-card-bg: #ffffff;
  --color-footer-bg: #1a2744;
  --color-footer-text: #adb5bd;
  --font-main: system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --radius: 8px;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  --shadow-hover: 0 6px 20px rgba(0, 0, 0, 0.14);
  --transition: 0.22s ease;
  --container-max: 1280px;
  --gap: 24px;
}

/* --- Reset / Normalize --- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-main);
  color: var(--color-text);
  background: var(--color-bg);
  line-height: 1.6;
  min-height: 100vh;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
a {
  color: inherit;
  text-decoration: none;
}
ul,
ol {
  list-style: none;
}
input,
button,
textarea,
select {
  font: inherit;
}
button {
  cursor: pointer;
  border: none;
  background: none;
}

/* --- Typography Scale --- */
h1 {
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  line-height: 1.2;
  font-weight: 700;
}
h2 {
  font-size: clamp(1.25rem, 2.5vw, 1.75rem);
  line-height: 1.25;
  font-weight: 700;
}
h3 {
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.3;
  font-weight: 600;
}
h4 {
  font-size: 1rem;
  font-weight: 600;
}
p {
  margin-bottom: 0.75rem;
}
p:last-child {
  margin-bottom: 0;
}

/* --- Container --- */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 16px;
}
@media (min-width: 768px) {
  .container {
    padding: 0 24px;
  }
}
@media (min-width: 1024px) {
  .container {
    padding: 0 32px;
  }
}

/* =============================================
   HEADER
   ============================================= */
.site-header {
  background: var(--color-primary);
  color: var(--color-white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}
.header-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  gap: 12px;
  flex-wrap: wrap;
}
.site-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: var(--color-white);
  flex-shrink: 0;
}
.site-logo svg {
  width: 36px;
  height: 36px;
  color: var(--color-accent);
}
.logo-text {
  font-size: 1.4rem;
  font-weight: 800;
  letter-spacing: -0.5px;
}
.logo-text span {
  color: var(--color-accent);
}
.header-date {
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.65);
  white-space: nowrap;
  display: none;
}
@media (min-width: 768px) {
  .header-date {
    display: block;
  }
}
.header-search {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 24px;
  overflow: hidden;
  flex: 0 1 260px;
}
.header-search input {
  background: none;
  border: none;
  outline: none;
  color: var(--color-white);
  padding: 7px 14px;
  font-size: 0.88rem;
  width: 100%;
}
.header-search input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.header-search button {
  background: none;
  border: none;
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: color var(--transition);
}
.header-search button:hover {
  color: var(--color-accent);
}

/* --- Navigation --- */
.site-nav {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.nav-list {
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.nav-list a {
  display: block;
  padding: 11px 16px;
  font-size: 0.88rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition:
    color var(--transition),
    background var(--transition);
  border-bottom: 3px solid transparent;
}
.nav-list a:hover,
.nav-list a.active {
  color: var(--color-white);
  border-bottom-color: var(--color-accent);
  background: rgba(255, 255, 255, 0.04);
}
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: none;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--color-white);
  border-radius: 2px;
  transition: all var(--transition);
}
@media (max-width: 767px) {
  .hamburger {
    display: flex;
  }
  .nav-list {
    display: none;
    flex-direction: column;
    align-items: stretch;
    background: var(--color-primary);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .nav-list.open {
    display: flex;
  }
  .nav-list a {
    padding: 13px 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  }
  .nav-list a:last-child {
    border-bottom: none;
  }
}

/* =============================================
   BREAKING NEWS TICKER
   ============================================= */
.ticker-wrap {
  background: var(--color-accent);
  color: var(--color-white);
  overflow: hidden;
  padding: 0;
  position: relative;
}
.ticker-label {
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  z-index: 2;
  background: #c2530a;
  display: flex;
  align-items: center;
  padding: 0 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 3px 0 8px rgba(0, 0, 0, 0.15);
}
.ticker-track {
  display: flex;
  width: max-content;
  animation: ticker-scroll 38s linear infinite;
  padding-left: 160px;
}
.ticker-track:hover {
  animation-play-state: paused;
}
.ticker-item {
  display: inline-block;
  padding: 9px 32px 9px 0;
  font-size: 0.87rem;
  font-weight: 500;
  white-space: nowrap;
}
.ticker-item::after {
  content: "◆";
  margin-left: 32px;
  opacity: 0.5;
  font-size: 0.6rem;
}
.ticker-item:last-child::after {
  display: none;
}
@keyframes ticker-scroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* =============================================
   FEATURED ARTICLE (Hero)
   ============================================= */
.featured-article {
  position: relative;
  height: 400px;
  overflow: hidden;
  background: #222;
}
.featured-article img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0.7;
  transition: transform 0.6s ease;
}
.featured-article:hover img {
  transform: scale(1.03);
}
.featured-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(15, 20, 40, 0.92) 0%,
    rgba(15, 20, 40, 0.4) 50%,
    transparent 100%
  );
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px 32px;
  gap: 10px;
}
.featured-badge {
  display: inline-block;
  background: var(--color-accent);
  color: var(--color-white);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  padding: 4px 12px;
  border-radius: 4px;
  width: fit-content;
}
.featured-overlay h2 {
  color: var(--color-white);
  font-size: clamp(1.3rem, 3vw, 2rem);
  line-height: 1.2;
  max-width: 700px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}
.featured-meta {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.7);
}
.featured-desc {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.95rem;
  max-width: 600px;
  line-height: 1.5;
}

/* =============================================
   FAKE AD BANNERS
   ============================================= */
.fake-ad {
  background: linear-gradient(135deg, #e8e8e8 0%, #efefef 50%, #e8e8e8 100%);
  border: 1px dashed #ccc;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #aaa;
  font-size: 11px;
  font-family: system-ui, sans-serif;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.fake-ad::before {
  content: "";
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    45deg,
    transparent,
    transparent 10px,
    rgba(0, 0, 0, 0.015) 10px,
    rgba(0, 0, 0, 0.015) 20px
  );
}
.fake-ad .ad-icon {
  width: 32px;
  height: 32px;
  opacity: 0.4;
}
.fake-ad .ad-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.fake-ad .ad-error {
  font-size: 10px;
  color: #bbb;
}
.fake-ad-leaderboard {
  width: 100%;
  max-width: 728px;
  height: 90px;
  margin: 16px auto;
  flex-direction: row;
  gap: 12px;
}
.fake-ad-medium {
  width: 100%;
  max-width: 300px;
  height: 250px;
  margin-bottom: 20px;
}
.fake-ad-small {
  width: 100%;
  max-width: 300px;
  height: 100px;
  margin-bottom: 20px;
}
.leaderboard-wrap {
  display: flex;
  justify-content: center;
  padding: 10px 0;
  background: #f0f0f0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

/* =============================================
   MAIN CONTENT + SIDEBAR LAYOUT
   ============================================= */
.main-wrap {
  padding: 32px 0 48px;
}
.content-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--gap);
}
@media (min-width: 1024px) {
  .content-grid {
    grid-template-columns: 1fr 300px;
  }
}
.section-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--color-primary);
  padding-bottom: 10px;
  border-bottom: 3px solid var(--color-accent);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

/* --- Article Cards Grid --- */
.articles-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 640px) {
  .articles-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* --- Article Card --- */
.article-card {
  background: var(--color-card-bg);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition:
    box-shadow var(--transition),
    transform var(--transition);
}
.article-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}
.card-img-wrap {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: #dde1e7;
  flex-shrink: 0;
}
.card-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.article-card:hover .card-img-wrap img {
  transform: scale(1.05);
}
.card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
}
.card-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.category-badge {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 4px;
  color: var(--color-white);
}
.badge-munkajog {
  background: #2563eb;
}
.badge-ber-jutatas {
  background: #16a34a;
}
.badge-toborzas {
  background: #7c3aed;
}
.badge-hr-hirek {
  background: #db2777;
}
.badge-karriermendzsm {
  background: #0891b2;
}

.card-date {
  font-size: 0.78rem;
  color: var(--color-text-muted);
}
.card-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--color-text);
  margin: 0;
}
.article-card:hover .card-title {
  color: var(--color-primary);
}
.card-desc {
  font-size: 0.88rem;
  color: var(--color-text-muted);
  line-height: 1.55;
  flex: 1;
  margin: 0;
}
.card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--color-accent);
  font-size: 0.85rem;
  font-weight: 600;
  transition:
    color var(--transition),
    gap var(--transition);
  margin-top: auto;
  padding-top: 4px;
}
.card-link:hover {
  color: var(--color-accent-hover);
  gap: 10px;
}

/* =============================================
   SIDEBAR
   ============================================= */
.sidebar {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.sidebar-block {
  background: var(--color-white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 20px;
  margin-bottom: 20px;
}
.sidebar-block:last-child {
  margin-bottom: 0;
}
.sidebar-title {
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: var(--color-primary);
  padding-bottom: 10px;
  border-bottom: 2px solid var(--color-accent);
  margin-bottom: 14px;
}
.popular-list li {
  border-bottom: 1px solid var(--color-border);
}
.popular-list li:last-child {
  border-bottom: none;
}
.popular-list a {
  display: block;
  padding: 9px 0;
  font-size: 0.88rem;
  color: var(--color-text);
  transition: color var(--transition);
  line-height: 1.4;
}
.popular-list a:hover {
  color: var(--color-accent);
}
.category-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 0.88rem;
}
.category-list li:last-child {
  border-bottom: none;
}
.category-list a {
  color: var(--color-text);
  transition: color var(--transition);
}
.category-list a:hover {
  color: var(--color-accent);
}
.category-count {
  background: var(--color-bg);
  color: var(--color-text-muted);
  font-size: 0.78rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 12px;
}
/* Newsletter form */
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.newsletter-form input[type="email"] {
  width: 100%;
  padding: 10px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 0.9rem;
  outline: none;
  transition: border-color var(--transition);
}
.newsletter-form input[type="email"]:focus {
  border-color: var(--color-accent);
}
.newsletter-form button {
  background: var(--color-accent);
  color: var(--color-white);
  border: none;
  padding: 11px 20px;
  border-radius: var(--radius);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: background var(--transition);
}
.newsletter-form button:hover {
  background: var(--color-accent-hover);
}

/* Fake ad within sidebar */
.sidebar-ad-wrap {
  display: flex;
  justify-content: center;
}

/* =============================================
   FOOTER
   ============================================= */
.site-footer {
  background: var(--color-footer-bg);
  color: var(--color-footer-text);
  padding: 48px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  padding-bottom: 40px;
}
@media (min-width: 640px) {
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 1024px) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr 1fr;
  }
}

.footer-brand .logo-text {
  color: var(--color-white);
  font-size: 1.3rem;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--color-footer-text);
  line-height: 1.6;
  margin-top: 12px;
}
.social-links {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}
.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.7);
  transition:
    background var(--transition),
    color var(--transition);
  font-size: 0.85rem;
}
.social-links a:hover {
  background: var(--color-accent);
  color: var(--color-white);
}

.footer-col h4 {
  color: var(--color-white);
  font-size: 0.95rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(249, 115, 22, 0.45);
}
.footer-col ul li {
  margin-bottom: 8px;
}
.footer-col ul a {
  font-size: 0.88rem;
  color: var(--color-footer-text);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.footer-col ul a:hover {
  color: var(--color-accent);
}
.footer-col ul a::before {
  content: "›";
  opacity: 0.5;
}
.footer-contact p {
  font-size: 0.88rem;
  line-height: 1.7;
}
.footer-contact a {
  color: var(--color-footer-text);
}
.footer-contact a:hover {
  color: var(--color-accent);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.45);
}
@media (min-width: 768px) {
  .footer-bottom-inner {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.82rem;
  transition: color var(--transition);
}
.footer-links a:hover {
  color: var(--color-accent);
}

/* =============================================
   INNER PAGE STYLES
   ============================================= */
.page-hero {
  background: var(--color-primary);
  color: var(--color-white);
  padding: 40px 0 36px;
}
.page-hero h1 {
  color: var(--color-white);
}
.page-hero p {
  color: rgba(255, 255, 255, 0.75);
  margin-top: 8px;
  font-size: 1rem;
}
.page-content {
  padding: 40px 0 60px;
}
.prose {
  max-width: 760px;
}
.prose h2 {
  margin: 28px 0 12px;
  color: var(--color-primary);
}
.prose h3 {
  margin: 22px 0 10px;
  color: var(--color-primary);
}
.prose p {
  margin-bottom: 14px;
  font-size: 0.95rem;
  line-height: 1.75;
}
.prose ul,
.prose ol {
  margin: 12px 0 14px 22px;
  font-size: 0.95rem;
  line-height: 1.75;
}
.prose li {
  margin-bottom: 6px;
}
.prose ul {
  list-style: disc;
}
.prose ol {
  list-style: decimal;
}
.prose a {
  color: var(--color-accent);
  text-decoration: underline;
}
.prose strong {
  font-weight: 600;
  color: var(--color-text);
}

/* Contact form */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-top: 32px;
}
@media (min-width: 768px) {
  .contact-grid {
    grid-template-columns: 3fr 2fr;
  }
}
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group label {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--color-text);
}
.form-group input,
.form-group textarea,
.form-group select {
  padding: 11px 14px;
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius);
  font-size: 0.93rem;
  outline: none;
  transition: border-color var(--transition);
  background: var(--color-white);
}
.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--color-accent);
}
.form-group textarea {
  min-height: 130px;
  resize: vertical;
}
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--color-accent);
  color: var(--color-white);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-size: 0.95rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition:
    background var(--transition),
    transform var(--transition);
}
.btn-primary:hover {
  background: var(--color-accent-hover);
  transform: translateY(-1px);
}
.contact-info h3 {
  margin-bottom: 16px;
  color: var(--color-primary);
}
.contact-info-item {
  display: flex;
  gap: 12px;
  margin-bottom: 16px;
  align-items: flex-start;
}
.contact-info-icon {
  width: 40px;
  height: 40px;
  background: rgba(249, 115, 22, 0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-accent);
  flex-shrink: 0;
}
.contact-info-text strong {
  display: block;
  font-size: 0.88rem;
  margin-bottom: 2px;
}
.contact-info-text span {
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

/* Team cards */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 20px;
  margin: 24px 0;
}
.team-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 20px 16px;
  text-align: center;
  box-shadow: var(--shadow);
  border-top: 3px solid var(--color-accent);
}
.team-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--color-primary), #2e4070);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 auto 12px;
}
.team-card h4 {
  font-size: 0.95rem;
  color: var(--color-text);
}
.team-card p {
  font-size: 0.82rem;
  color: var(--color-text-muted);
  margin-top: 4px;
}

/* Values / Mission */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin: 24px 0;
}
.value-card {
  background: var(--color-white);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  border-left: 4px solid var(--color-accent);
}
.value-card h4 {
  color: var(--color-primary);
  margin-bottom: 8px;
}
.value-card p {
  font-size: 0.87rem;
  color: var(--color-text-muted);
  margin: 0;
}

/* =============================================
   COOKIE BANNER
   ============================================= */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 9999;
  background: #1a1a2e;
  color: var(--color-white);
  padding: 18px 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
  justify-content: space-between;
  box-shadow: 0 -4px 24px rgba(0, 0, 0, 0.3);
  font-size: 0.88rem;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}
.cookie-banner.visible {
  transform: translateY(0);
}
.cookie-text {
  flex: 1 1 300px;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.9);
}
.cookie-text a {
  color: var(--color-accent);
  text-decoration: underline;
}
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
  flex-shrink: 0;
}
.cookie-btn {
  padding: 9px 20px;
  border-radius: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition:
    opacity var(--transition),
    transform var(--transition);
}
.cookie-btn:hover {
  opacity: 0.88;
  transform: translateY(-1px);
}
.cookie-btn-accept {
  background: var(--color-accent);
  color: var(--color-white);
}
.cookie-btn-reject {
  background: #6c757d;
  color: var(--color-white);
}
.cookie-btn-settings {
  background: none;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  text-decoration: underline;
  padding: 9px 4px;
}

/* =============================================
   BREADCRUMB
   ============================================= */
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 8px;
}
.breadcrumb a {
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition);
}
.breadcrumb a:hover {
  color: var(--color-accent);
}
.breadcrumb span {
  opacity: 0.5;
}

/* =============================================
   UTILITIES
   ============================================= */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.text-center {
  text-align: center;
}
.mt-8 {
  margin-top: 8px;
}
.mt-16 {
  margin-top: 16px;
}
.mt-24 {
  margin-top: 24px;
}
.mb-16 {
  margin-bottom: 16px;
}
.mb-24 {
  margin-bottom: 24px;
}
