/*
Theme Name: RKC Theme V3
Theme URI: https://rkc.zp.ua
Text Domain: rkc-theme-v3
*/

:root {
  --rkc-ink: #2a2724;
  --rkc-muted: #686058;
  --rkc-primary: #7d1b1b;          /* М'якший бордовий */
  --rkc-primary-strong: #571111;   /* Глибший бордовий */
  --rkc-accent: #c9a24a;           /* Приглушене золото */
  --rkc-accent-soft: #f7efd9;      /* Теплий кремовий відтінок */
  --rkc-surface: #faf7f1;          /* Івовий фон */
  --rkc-panel: #fffdf8;
  --rkc-line: #e8dfd0;
  --rkc-shadow: 0 12px 30px rgba(125, 27, 27, 0.07);
  --rkc-radius: 12px;
  --rkc-container: 1200px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  color: var(--rkc-ink);
  background: var(--rkc-surface);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.58;
}

a {
  color: var(--rkc-primary);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--rkc-primary-strong);
  text-decoration: underline;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  white-space: nowrap;
}

.rkc-container {
  width: min(100% - 32px, var(--rkc-container));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(125, 27, 27, 0.1);
  background: rgba(250, 247, 241, 0.96);
  backdrop-filter: blur(14px);
}

.header-row {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.site-branding {
  display: flex;
  min-width: 0;
  align-items: center;
  gap: 12px;
  padding-left: 4px;
  transition: transform 0.2s ease;
}

.site-branding:hover,
.site-branding:focus {
  transform: scale(1.03);
}

.site-logo {
  width: 68px;
  height: 68px;
  flex: 0 0 auto;
  object-fit: contain;
  transition: transform 0.2s ease;
}

.site-branding:hover .site-logo,
.site-branding:focus .site-logo {
  transform: scale(1.03);
}

.site-title {
  display: block;
  margin: 0;
  color: var(--rkc-primary-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.15;
}

.site-description {
  margin: 2px 0 0;
  color: var(--rkc-muted);
  font-size: 13px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rkc-line);
  border-radius: var(--rkc-radius);
  background: var(--rkc-panel);
  color: var(--rkc-primary);
  cursor: pointer;
  font-size: 24px;
}

.primary-navigation ul {
  display: flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-navigation li {
  position: relative;
}

.primary-navigation a {
  display: block;
  border-radius: var(--rkc-radius);
  color: var(--rkc-primary);
  font-size: 15px;
  font-weight: 650;
  padding: 10px 12px;
  text-decoration: none;
}

.primary-navigation a:hover,
.primary-navigation a:focus,
.primary-navigation .current-menu-item > a,
.primary-navigation .current_page_item > a {
  background: var(--rkc-accent-soft);
  color: var(--rkc-primary-strong);
}

.primary-navigation .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  min-width: 220px;
  align-items: stretch;
  border: 1px solid var(--rkc-line);
  border-radius: var(--rkc-radius);
  background: var(--rkc-panel);
  box-shadow: var(--rkc-shadow);
  padding: 8px;
}

.primary-navigation li:hover > .sub-menu,
.primary-navigation li:focus-within > .sub-menu {
  display: block;
}

.hero {
  position: relative;
  overflow: hidden;
  background: var(--rkc-primary-strong);
  color: #fff;
}

.hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(32, 14, 14, 0.94), rgba(74, 28, 28, 0.78), rgba(74, 28, 28, 0.28)),
    url("assets/images/header.webp") center / cover no-repeat;
  content: "";
}

.hero-inner {
  position: relative;
  display: grid;
  min-height: 500px;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.7fr);
  align-items: center;
  gap: 40px;
  padding: 56px 0;
}

.eyebrow {
  margin: 0 0 12px;
  color: #f1d79e;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.page-header h1,
.entry-title {
  margin: 0;
  color: inherit;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.08;
}

.hero h1 {
  font-size: clamp(36px, 5vw, 64px);
}

.hero-copy {
  max-width: 660px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.button,
.wp-block-button__link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: var(--rkc-radius);
  font-weight: 750;
  padding: 11px 16px;
  text-decoration: none;
}

.button.primary,
.wp-block-button__link {
  background: var(--rkc-accent);
  color: #261a06;
}

.button.secondary {
  border-color: rgba(255, 255, 255, 0.45);
  color: #fff;
}

.button.light {
  border-color: var(--rkc-line);
  background: var(--rkc-panel);
  color: var(--rkc-primary);
}

.quick-card {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: var(--rkc-radius);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: var(--rkc-shadow);
  padding: 24px;
}

.quick-card h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 22px;
}

.time-list {
  display: grid;
  gap: 12px;
  margin: 0;
}

.time-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  padding-bottom: 12px;
}

.time-row:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.time-row dt {
  color: rgba(255, 255, 255, 0.78);
}

.time-row dd {
  margin: 0;
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  text-align: right;
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: #f3efe7;
}

.section-header {
  margin-bottom: 24px;
}

.section-header h2,
.widget-title {
  margin: 0;
  color: var(--rkc-primary-strong);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 32px;
}

.section-header p {
  max-width: 650px;
  margin: 8px 0 0;
  color: var(--rkc-muted);
}

.grid {
  display: grid;
  gap: 18px;
}

.grid.three {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid.two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card,
.post-card,
.widget {
  border: 1px solid var(--rkc-line);
  border-radius: var(--rkc-radius);
  background: var(--rkc-panel);
  box-shadow: 0 8px 22px rgba(32, 33, 36, 0.05);
  padding: 22px;
}

.widget_search,
.widget_categories {
  overflow: hidden;
}

.widget_search form.rkc-widget-search {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 12px;
  width: 100%;
  margin: 0;
}

.rkc-widget-search__label {
  display: block;
  color: var(--rkc-primary-strong);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

.rkc-widget-search__controls {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
}

.widget_search .search-form,
.widget_search form,
.wp-block-search .wp-block-search__inside-wrapper {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  margin: 0;
}

.widget_search input[type="search"],
.rkc-widget-search input[type="search"],
.wp-block-search .wp-block-search__input {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 44px;
  border: 1px solid rgba(125, 27, 27, 0.14);
  border-radius: 999px;
  background: #fff;
  color: var(--rkc-ink);
  padding: 10px 16px;
  box-shadow: inset 0 1px 2px rgba(15, 23, 42, 0.04);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.widget_search input[type="search"]::placeholder,
.rkc-widget-search input[type="search"]::placeholder,
.wp-block-search .wp-block-search__input::placeholder {
  color: var(--rkc-muted);
}

.widget_search input[type="search"]:focus,
.rkc-widget-search input[type="search"]:focus,
.wp-block-search .wp-block-search__input:focus {
  outline: none;
  border-color: rgba(125, 27, 27, 0.4);
  box-shadow: 0 0 0 4px rgba(201, 162, 74, 0.18);
}

.widget_search .search-submit,
.rkc-widget-search .search-submit,
.wp-block-search .wp-block-search__button {
  width: auto;
  min-height: 44px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--rkc-primary), var(--rkc-primary-strong));
  color: #fff;
  font-weight: 800;
  padding: 11px 18px;
  box-shadow: 0 6px 16px rgba(125, 27, 27, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.widget_search .search-submit:hover,
.widget_search .search-submit:focus,
.rkc-widget-search .search-submit:hover,
.rkc-widget-search .search-submit:focus,
.wp-block-search .wp-block-search__button:hover,
.wp-block-search .wp-block-search__button:focus {
  outline: none;
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(125, 27, 27, 0.18);
  filter: brightness(1.02);
  text-decoration: none;
}

.widget_search .search-submit:focus,
.rkc-widget-search .search-submit:focus,
.wp-block-search .wp-block-search__button:focus {
  box-shadow: 0 0 0 4px rgba(201, 162, 74, 0.22), 0 10px 20px rgba(125, 27, 27, 0.18);
}

.widget_categories ul,
.widget_categories .wp-block-categories-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.widget_categories li {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 8px;
}

.widget_categories a {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border: 1px solid rgba(125, 27, 27, 0.1);
  border-radius: 999px;
  background: linear-gradient(180deg, #fffdf8, #f9f3e6);
  color: var(--rkc-primary);
  font-weight: 650;
  padding: 10px 14px;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.widget_categories a:hover,
.widget_categories a:focus {
  transform: translateY(-1px);
  background: var(--rkc-accent-soft);
  color: var(--rkc-primary-strong);
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(125, 27, 27, 0.08);
}

.widget_categories .children {
  margin: 10px 0 0 14px;
  padding-left: 14px;
  border-left: 1px solid var(--rkc-line);
  display: grid;
  gap: 8px;
}

.widget_categories .children a {
  background: #fff;
  font-size: 14px;
  padding: 9px 12px;
}

.widget_categories .count,
.widget_categories .wp-block-categories-list__item-count {
  flex: 0 0 auto;
  color: var(--rkc-muted);
  font-size: 13px;
  font-weight: 750;
  line-height: 1;
}

.widget_categories .cat-item,
.widget_categories .wp-block-categories-list > li {
  color: var(--rkc-muted);
  position: relative;
}

.card h3,
.post-card h2 {
  margin: 0 0 10px;
  color: var(--rkc-primary);
  font-size: 20px;
}

.card p,
.post-card p,
.entry-meta {
  color: var(--rkc-muted);
}

.content-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: 32px;
  padding: 48px 0;
}

.site-main {
  min-width: 0;
}

.page-header {
  background: var(--rkc-primary-strong);
  color: #fff;
  padding: 56px 0;
}

.page-header h1 {
  font-size: clamp(34px, 4vw, 52px);
}

.page-header--compact {
  padding: 32px 0;
}

.page-header--compact h1 {
  max-width: 820px;
  font-size: clamp(24px, 2.6vw, 34px);
  line-height: 1.15;
}

.entry-title {
  color: var(--rkc-primary-strong);
  font-size: clamp(30px, 4vw, 48px);
}

.entry-content {
  margin-top: 20px;
}

.entry-content p,
.entry-content li {
  font-size: 18px;
}

.entry-content img {
  border-radius: var(--rkc-radius);
}

.entry-content iframe[src*="youtube.com"],
.entry-content iframe[src*="youtube-nocookie.com"],
.entry-content .wp-block-embed__wrapper iframe {
  display: block;
  width: 100%;
  max-width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
  border: 0;
  border-radius: var(--rkc-radius);
  box-shadow: var(--rkc-shadow);
}

.entry-content .wp-block-embed,
.entry-content .wp-block-embed__wrapper {
  width: 100%;
  max-width: 100%;
}

.post-list {
  display: grid;
  gap: 18px;
  align-items: start;
}

.post-list .post-card {
  align-self: start;
}

.navigation.pagination {
  margin-top: 28px;
}

.navigation.pagination .nav-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.navigation.pagination .page-numbers {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--rkc-line);
  border-radius: 999px;
  background: var(--rkc-panel);
  color: var(--rkc-primary);
  font-size: 15px;
  font-weight: 700;
  padding: 10px 14px;
  text-decoration: none;
  box-shadow: 0 4px 14px rgba(125, 27, 27, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, color 0.18s ease;
}

.navigation.pagination a.page-numbers:hover,
.navigation.pagination a.page-numbers:focus {
  transform: translateY(-1px);
  background: var(--rkc-accent-soft);
  color: var(--rkc-primary-strong);
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(125, 27, 27, 0.08);
}

.navigation.pagination .page-numbers.current {
  border-color: transparent;
  background: linear-gradient(135deg, var(--rkc-primary), var(--rkc-primary-strong));
  color: #fff;
  box-shadow: 0 10px 22px rgba(125, 27, 27, 0.16);
}

.navigation.pagination .page-numbers.dots {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  min-width: auto;
  padding: 0 4px;
}

.post-card .entry-title {
  font-size: 26px;
}

.post-card .entry-title a {
  color: inherit;
}

.post-list .post-card-media {
  position: relative;
  display: block;
  overflow: hidden;
  background: linear-gradient(180deg, #fff7ea, #f7efe1);
}

.post-list .post-card.has-youtube-preview .post-card-media {
  aspect-ratio: 16 / 9;
}

.post-list .post-card-media img {
  display: block;
  width: 100%;
  height: auto;
}

.post-list .post-card.has-youtube-preview .post-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.post-list .post-card.has-video-only .post-card-media {
  min-height: 0;
}

.post-list .post-card.has-youtube-preview .post-card-play-badge {
  position: absolute;
  inset: 0;
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  margin: auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  color: var(--rkc-primary);
  font-size: 22px;
  line-height: 1;
  z-index: 1;
}

.post-list .post-card-play-badge svg,
.news-grid-premium .post-card-play-badge svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.sidebar {
  display: grid;
  align-content: start;
  gap: 18px;
}

.site-footer {
  background: var(--rkc-primary-strong);
  color: rgba(255, 255, 255, 0.82);
  padding: 32px 0 88px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.site-footer h2,
.site-footer h3 {
  margin: 0 0 10px;
  color: #fff;
}

.site-footer p,
.site-footer ul {
  margin: 0;
}

.site-footer a {
  color: #fff;
}

.footer-menu {
  display: grid;
  gap: 8px;
  padding: 0;
  list-style: none;
}

.mobile-actions {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 30;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--rkc-line);
  background: var(--rkc-panel);
}

.mobile-actions a {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: center;
  color: var(--rkc-primary);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

@media (max-width: 900px) {
  .header-row {
    min-height: 68px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .primary-navigation {
    position: absolute;
    right: 16px;
    top: 76px;
    left: 16px;
    display: none;
    max-height: calc(100dvh - 92px);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior: contain;
    border: 1px solid var(--rkc-line);
    border-radius: var(--rkc-radius);
    background: var(--rkc-panel);
    box-shadow: var(--rkc-shadow);
    padding: 8px;
  }

  .primary-navigation.is-open {
    display: block;
  }

  .primary-navigation ul {
    display: grid;
    align-items: stretch;
  }

  .primary-navigation .sub-menu {
    position: static;
    display: block;
    min-width: 0;
    margin-left: 12px;
    border: 0;
    box-shadow: none;
  }

  .hero-inner,
  .content-layout,
  .grid.three,
  .grid.two,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero-inner {
    min-height: auto;
    padding: 48px 0;
  }

  .mobile-actions {
    display: grid;
  }
}

@media (max-width: 560px) {
  .rkc-container {
    width: min(100% - 24px, var(--rkc-container));
  }

  .site-branding {
    padding-left: 10px;
  }

  .site-logo {
    width: 58px;
    height: 58px;
  }

  .site-title {
    font-size: 16px;
  }

  .site-description {
    display: none;
  }

  .hero h1 {
    font-size: 36px;
  }

  .hero-copy,
  .entry-content p,
  .entry-content li {
    font-size: 17px;
  }

  .section {
    padding: 40px 0;
  }
}

/* --- Premium Theme Redesign Custom Styles --- */

/* Header actions & Live status */
.header-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex: 1;
  justify-content: flex-end;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-phone {
  font-size: 14px;
  font-weight: 650;
  color: var(--rkc-muted);
}

.btn-live {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #ea4335;
  color: #fff !important;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(234, 67, 53, 0.3);
}

.btn-live:hover {
  background: #d3382b;
  text-decoration: none !important;
}

/* Hide header live badge by default, show when active */
.header-live-badge {
  opacity: 0.5;
  background: var(--rkc-muted);
  box-shadow: none;
  pointer-events: none;
}

.header-live-badge.is-live {
  opacity: 1;
  background: #ea4335;
  animation: live-pulse 2s infinite;
  pointer-events: auto;
}

@keyframes live-pulse {
  0% { box-shadow: 0 0 0 0 rgba(234, 67, 53, 0.7); }
  70% { box-shadow: 0 0 0 8px rgba(234, 67, 53, 0); }
  100% { box-shadow: 0 0 0 0 rgba(234, 67, 53, 0); }
}

.live-dot {
  width: 8px;
  height: 8px;
  background: #fff;
  border-radius: 50%;
  display: inline-block;
}

.header-live-badge.is-live .live-dot {
  background: #fff;
  animation: live-dot-blink 1s infinite alternate;
}

@keyframes live-dot-blink {
  from { opacity: 0.3; }
  to { opacity: 1; }
}

/* Hero Section (Homepage) */
.hero-home {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  padding: 88px 0 120px;
}

.hero-home-inner {
  display: grid;
  grid-template-columns: minmax(280px, 4fr) minmax(0, 8fr);
  gap: 40px;
  align-items: center;
}

.hero-home-visual {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.hero-icon-wrapper {
  width: min(100%, 360px);
  aspect-ratio: 3 / 4;
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  padding: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.28);
}

.hero-icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-home-content {
  max-width: 680px;
}

.hero-home-title {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(34px, 5vw, 60px);
  font-weight: 700;
  color: var(--rkc-accent);
  line-height: 1.15;
  margin: 0;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}

.hero-home-description {
  font-size: clamp(16px, 2.5vw, 20px);
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  margin: 18px 0 0;
  max-width: 620px;
  text-shadow: 0 2px 5px rgba(0,0,0,0.4);
}

.hero-home-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-top: 30px;
}

.hero-home-actions .button {
  padding: 12px 28px;
  font-size: 16px;
  border-radius: 30px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.hero-home-actions .button.primary:hover {
  background: #b89435;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(201, 162, 74, 0.28);
}

.hero-home-actions .button.secondary {
  border: 2px solid var(--rkc-accent);
  background: rgba(43, 30, 22, 0.32);
  backdrop-filter: blur(5px);
  color: #fff;
  transition: all 0.3s ease;
}

.hero-home-actions .button.secondary:hover {
  background: var(--rkc-accent);
  color: #2a2724;
  transform: translateY(-2px);
}

.front-page-search-form {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0;
}

.sidebar-search-panel {
  margin-top: 18px;
  padding: 18px;
  border: 1px solid var(--rkc-line);
  border-radius: calc(var(--rkc-radius) + 4px);
  background:
    linear-gradient(180deg, rgba(255, 253, 248, 0.98), rgba(247, 239, 217, 0.88));
  box-shadow: var(--rkc-shadow);
}

.front-page-search-form input[type="search"] {
  flex: 1 1 auto;
  min-width: 0;
  min-height: 44px;
  border: 1px solid rgba(125, 27, 27, 0.14);
  border-radius: 999px;
  background: #fff;
  color: var(--rkc-ink);
  padding: 10px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.front-page-search-form input[type="search"]::placeholder {
  color: var(--rkc-muted);
}

.front-page-search-form input[type="search"]:focus {
  outline: none;
  border-color: rgba(125, 27, 27, 0.4);
  box-shadow: 0 0 0 4px rgba(201, 162, 74, 0.18);
}

.front-page-search-form .button {
  flex: 0 0 auto;
  white-space: nowrap;
  min-height: 44px;
  border-radius: 999px;
  padding: 11px 18px;
  box-shadow: 0 6px 16px rgba(125, 27, 27, 0.14);
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.front-page-search-form .button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 20px rgba(125, 27, 27, 0.18);
}

.front-page-search-form .button:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(201, 162, 74, 0.22), 0 10px 20px rgba(125, 27, 27, 0.18);
}

@media (max-width: 980px) {
  .hero-home {
    padding: 72px 0 100px;
  }

  .hero-home-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero-home-visual {
    justify-content: center;
  }

  .hero-home-content {
    max-width: none;
    text-align: center;
  }

  .hero-home-description,
  .hero-home-actions {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
  }

  .front-page-search-form {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .sidebar-search-panel {
    padding: 16px;
  }
}

@media (max-width: 640px) {
  .hero-home {
    padding: 56px 0 84px;
  }

  .hero-icon-wrapper {
    width: min(100%, 300px);
    aspect-ratio: 4 / 5;
  }

  .hero-home-actions .button {
    width: 100%;
    max-width: 320px;
  }

  .widget_search .search-form,
  .widget_search form,
  .wp-block-search .wp-block-search__inside-wrapper {
    flex-wrap: wrap;
  }

  .widget_search form.rkc-widget-search {
    gap: 10px;
  }

  .rkc-widget-search__controls {
    grid-template-columns: minmax(0, 1fr);
  }

  .widget_search input[type="search"],
  .widget_search .search-submit,
  .rkc-widget-search input[type="search"],
  .rkc-widget-search .search-submit,
  .wp-block-search .wp-block-search__input,
  .wp-block-search .wp-block-search__button {
    width: 100%;
  }

  .widget_search .search-submit,
  .rkc-widget-search .search-submit,
  .wp-block-search .wp-block-search__button {
    justify-self: stretch;
  }

  .widget_categories a {
    padding: 10px 12px;
  }

  .front-page-search-form {
    flex-wrap: wrap;
    max-width: 320px;
  }

  .front-page-search-form input[type="search"],
  .front-page-search-form .button {
    width: 100%;
  }

  .sidebar-search-panel {
    padding: 14px;
  }

  .navigation.pagination .nav-links {
    gap: 8px;
  }

  .navigation.pagination .page-numbers {
    min-width: 40px;
    min-height: 40px;
    padding: 9px 12px;
    font-size: 14px;
  }
}

/* Quick Navigation Cards overlapping Hero */
.quick-nav-section {
  padding: 0 0 50px;
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.quick-nav-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
}

.quick-nav-card {
  background: var(--rkc-panel);
  border-top: 4px solid var(--rkc-accent);
  border-radius: var(--rkc-radius);
  padding: 30px 24px;
  text-align: center;
  box-shadow: 0 10px 25px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.quick-nav-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(125, 27, 27, 0.08);
}

.card-icon {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  border-radius: 16px;
  background: var(--rkc-accent-soft);
  color: var(--rkc-primary);
}

.card-icon svg {
  width: 28px;
  height: 28px;
  display: block;
}

.quick-nav-card h3 {
  font-size: 18px;
  color: var(--rkc-primary);
  margin: 0 0 12px;
  font-family: Georgia, serif;
}

.quick-nav-card p {
  font-size: 14px;
  color: var(--rkc-muted);
  line-height: 1.5;
  margin: 0 0 18px;
  flex-grow: 1;
}

.card-link-arrow {
  font-size: 14px;
  font-weight: 750;
  color: var(--rkc-primary);
  transition: gap 0.3s ease;
  display: inline-flex;
  align-items: center;
}

.card-link-arrow:hover {
  color: var(--rkc-primary-strong);
  text-decoration: underline;
}

/* Front Columns Layout: Schedule & Widget */
.front-columns-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 40px;
  align-items: start;
}

.section-title-alt {
  font-family: Georgia, serif;
  color: var(--rkc-primary);
  font-size: 28px;
  margin: 0 0 24px;
  position: relative;
  padding-bottom: 10px;
}

.section-title-alt::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: var(--rkc-accent);
}

.worship-table-container {
  background: var(--rkc-panel);
  border-radius: var(--rkc-radius);
  border: 1px solid var(--rkc-line);
  box-shadow: var(--rkc-shadow);
  overflow: hidden;
}

.worship-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

.worship-table th {
  background: var(--rkc-accent-soft);
  color: var(--rkc-primary-strong);
  font-weight: 750;
  font-size: 15px;
  padding: 16px 20px;
  border-bottom: 2px solid var(--rkc-line);
}

.worship-table td {
  padding: 16px 20px;
  border-bottom: 1px solid var(--rkc-line);
  font-size: 15px;
  vertical-align: middle;
}

.worship-table tr:last-child td {
  border-bottom: 0;
}

.worship-table tr:hover {
  background: #fbfbfc;
}

.day-cell {
  color: var(--rkc-primary);
  font-family: Georgia, serif;
}

.times-cell {
  font-weight: 750;
  font-size: 16px;
  color: var(--rkc-ink);
}

.notes-cell {
  color: var(--rkc-muted);
}

/* Sidebar Front refinements */
.sidebar-front {
  display: grid;
  gap: 24px;
}

.sidebar-front .widget {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  padding: 0;
}

.sidebar-front .widget-title {
  font-family: Georgia, serif;
  color: var(--rkc-primary);
  font-size: 28px;
  margin: 0 0 24px;
  position: relative;
  padding-bottom: 10px;
}

.sidebar-front .widget-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background: var(--rkc-accent);
}

/* Widget overrides for Liturgical Readings */
.daily_reading {
  background: var(--rkc-panel);
  border-radius: var(--rkc-radius);
  box-shadow: var(--rkc-shadow);
  border: 1px solid var(--rkc-line);
  overflow: hidden;
  display: flex;
}

.daily_reading_date {
  background: var(--rkc-primary);
  color: #fff;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  min-width: 90px;
}

.daily_reading_date span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.8;
}

.daily_reading_date span.daily_reading_day {
  font-size: 32px;
  font-weight: 800;
  line-height: 1;
  margin: 4px 0;
  opacity: 1;
}

.daily_reading_str {
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}

.daily_reading_str div {
  margin-bottom: 8px;
}

.daily_reading_str div:last-child {
  margin-bottom: 0;
}

.rkc-reading-trigger {
  font-size: 15px;
  font-weight: 750;
  color: var(--rkc-primary);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease;
}

.rkc-reading-trigger:hover {
  color: var(--rkc-accent);
  text-decoration: underline;
}

/* Premium news grid */
.section-header-centered {
  text-align: center;
  margin-bottom: 40px;
}

.section-header-centered h2 {
  font-family: Georgia, serif;
  font-size: 32px;
  color: var(--rkc-primary-strong);
  margin: 0;
}

.section-divider {
  width: 80px;
  height: 3px;
  background: var(--rkc-accent);
  margin: 12px auto 0;
  border-radius: 2px;
}

.news-grid-premium {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}

.news-grid-premium .post-card {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--rkc-line);
  background: var(--rkc-panel);
  border-radius: var(--rkc-radius);
  overflow: hidden;
  box-shadow: var(--rkc-shadow);
  padding: 0;
  transition: all 0.3s ease;
}

.news-grid-premium .post-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.08);
}

.news-grid-premium .post-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.news-grid-premium .post-card-media {
  position: relative;
  display: block;
  overflow: hidden;
}

.news-grid-premium .post-card.has-youtube-preview .post-card-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(20, 12, 12, 0.08), rgba(20, 12, 12, 0.26));
  content: '';
  pointer-events: none;
}

.news-grid-premium .post-card-play-badge {
  position: absolute;
  inset: 0;
  display: inline-flex;
  width: 64px;
  height: 64px;
  align-items: center;
  justify-content: center;
  margin: auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
  color: var(--rkc-primary);
  font-size: 22px;
  line-height: 1;
  z-index: 1;
}

.news-grid-premium .post-card header,
.news-grid-premium .post-card .entry-summary {
  padding: 24px;
}

.news-grid-premium .post-card header {
  padding-bottom: 0;
}

.news-grid-premium .post-card .entry-title {
  font-size: 20px;
  margin: 0 0 8px;
  font-family: Georgia, serif;
}

.news-grid-premium .post-card .entry-summary {
  font-size: 14px;
  color: var(--rkc-muted);
  line-height: 1.6;
  padding-top: 10px;
}

/* Support Section */
.support-section-bg {
  background: linear-gradient(rgba(125, 27, 27, 0.95), rgba(87, 17, 17, 0.98)), url('assets/images/header.webp') center/cover no-repeat;
  color: #fff;
  padding: 70px 0;
}

.support-box {
  max-width: 900px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--rkc-radius);
  padding: 40px;
  box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.support-content {
  text-align: center;
}

.support-content h2 {
  font-family: Georgia, serif;
  font-size: 32px;
  color: var(--rkc-accent);
  margin: 0 0 16px;
}

.support-content p {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  max-width: 600px;
  margin: 0 auto 30px;
}

.bank-details-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  text-align: left;
  background: rgba(0, 0, 0, 0.2);
  padding: 24px;
  border-radius: var(--rkc-radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.bank-detail-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.bank-detail-item:nth-child(2) {
  grid-column: span 2;
}

.detail-label {
  font-size: 12px;
  text-transform: uppercase;
  color: var(--rkc-accent);
  letter-spacing: 0.5px;
}

.detail-value {
  font-size: 15px;
  font-weight: 600;
  word-break: break-all;
}

.highlight-iban {
  font-family: monospace;
  font-size: 17px;
  color: #fff;
  letter-spacing: 1px;
}

/* Interactive modal */
.rkc-modal {
  display: none;
  position: fixed;
  z-index: 200;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0,0,0,0.5);
  backdrop-filter: blur(5px);
  align-items: center;
  justify-content: center;
  padding: 20px;
}

body.modal-open {
  overflow: hidden;
}

.rkc-modal-content {
  background-color: var(--rkc-surface);
  border-left: 6px solid var(--rkc-primary);
  border-radius: var(--rkc-radius);
  padding: 30px;
  width: 100%;
  max-width: 600px;
  box-shadow: 0 25px 60px rgba(0,0,0,0.25);
  animation: modal-fadeIn 0.3s ease;
  position: relative;
  max-height: 85vh;
  overflow-y: auto;
}

@keyframes modal-fadeIn {
  from { opacity: 0; transform: translateY(-20px); }
  to { opacity: 1; transform: translateY(0); }
}

.rkc-modal-close {
  color: var(--rkc-muted);
  position: absolute;
  right: 20px;
  top: 15px;
  font-size: 28px;
  font-weight: bold;
  cursor: pointer;
  line-height: 1;
}

.rkc-modal-close:hover {
  color: var(--rkc-primary);
}

.rkc-modal-title {
  font-family: Georgia, serif;
  color: var(--rkc-primary);
  font-size: 24px;
  margin: 0 0 20px;
  padding-right: 20px;
}

.rkc-modal-body {
  font-size: 16px;
  line-height: 1.6;
  color: var(--rkc-ink);
}

.bible-verse-row {
  margin-bottom: 12px;
  text-indent: -12px;
  padding-left: 20px;
}

.verse-num {
  font-size: 11px;
  font-weight: bold;
  color: var(--rkc-primary);
  vertical-align: super;
  margin-right: 4px;
}

.modal-spinner-wrapper {
  display: flex;
  justify-content: center;
  padding: 20px 0;
}

.modal-spinner {
  width: 40px;
  height: 40px;
  border: 4px solid var(--rkc-line);
  border-top-color: var(--rkc-primary);
  border-radius: 50%;
  animation: spinner-spin 0.8s linear infinite;
}

@keyframes spinner-spin {
  to { transform: rotate(360deg); }
}

/* Live Stream Page Styles */
.content-layout-live {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 40px;
  padding: 40px 0;
}

.live-main-column {
  display: grid;
  gap: 24px;
  align-content: start;
}

.live-schedule-panel {
  padding: 22px;
}

.live-stream-header {
  background: linear-gradient(135deg, var(--rkc-primary-strong), #3a0808);
  color: #fff;
  text-align: center;
  padding: 30px 0;
  border-bottom: 3px solid var(--rkc-accent);
}

.live-subtitle {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.8);
  margin-top: 10px;
}

.live-badge-status-wrap {
  margin-bottom: 20px;
}

.stream-status-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border-radius: 30px;
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  border: 1px solid transparent;
}

.stream-status-badge.offline {
  background: var(--rkc-line);
  color: var(--rkc-muted);
  border-color: rgba(0,0,0,0.1);
}

.stream-status-badge.offline .badge-dot {
  width: 8px;
  height: 8px;
  background: var(--rkc-muted);
  border-radius: 50%;
}

.stream-status-badge.live {
  background: #fce8e6;
  color: #ea4335;
  border-color: #f5c2c2;
  box-shadow: 0 4px 10px rgba(234, 67, 53, 0.15);
}

.stream-status-badge.live .badge-dot {
  width: 8px;
  height: 8px;
  background: #ea4335;
  border-radius: 50%;
  animation: live-dot-blink 1s infinite alternate;
}

.live-player-card {
  position: relative;
  min-height: 460px;
  background: #000;
  border-radius: var(--rkc-radius);
  overflow: hidden;
  box-shadow: 0 20px 45px rgba(0,0,0,0.15);
  border: 1px solid var(--rkc-line);
}

.live-player-poster {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(31, 14, 14, 0.28), rgba(31, 14, 14, 0.62)),
    url('assets/images/header.webp') center / cover no-repeat;
  filter: saturate(0.92) contrast(1.02);
  transform: scale(1.01);
}

.live-player-status {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(15, 10, 10, 0.58);
  backdrop-filter: blur(10px);
  color: #fff;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.live-player-status-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--rkc-accent);
  box-shadow: 0 0 0 0 rgba(201, 162, 74, 0.55);
  animation: live-dot-blink 1s infinite alternate;
}

.live-player-status.is-playing .live-player-status-dot {
  background: #38d96a;
  box-shadow: 0 0 0 0 rgba(56, 217, 106, 0.45);
}

.live-player-status.is-playing {
  background: rgba(20, 54, 30, 0.68);
}

.player-loading {
  position: relative;
  z-index: 2;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: rgba(17, 17, 17, 0.42);
  color: #999;
  backdrop-filter: blur(2px);
}

.player-loading .spinner {
  width: 50px;
  height: 50px;
  border: 4px solid #333;
  border-top-color: var(--rkc-accent);
  border-radius: 50%;
  animation: spinner-spin 0.8s linear infinite;
  margin-bottom: 20px;
}

.video-wrapper {
  position: relative;
  z-index: 2;
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  background: #000;
}

.video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.player-footer {
  position: relative;
  z-index: 2;
  background: #181818;
  padding: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
  border-top: 1px solid #222;
}

.player-footer h3 {
  font-family: Georgia, serif;
  font-size: 18px;
  margin: 0;
}

.live-dot-blink {
  width: 10px;
  height: 10px;
  background: #ea4335;
  border-radius: 50%;
  display: inline-block;
  animation: live-dot-blink 1s infinite alternate;
}

.live-player-play-button {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.live-player-play-button:disabled {
  cursor: default;
  opacity: 0.9;
}

.live-player-play-button.is-ready {
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
}

.live-player-play-button:hover .live-player-play-icon,
.live-player-play-button:focus .live-player-play-icon {
  transform: scale(1.04);
}

.live-player-play-icon {
  display: inline-flex;
  width: 80px;
  height: 80px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--rkc-accent);
  color: #261a06;
  font-size: 36px;
  box-shadow: 0 22px 42px rgba(0, 0, 0, 0.3);
  transform: translateY(0);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.live-player-play-icon svg {
  width: 40px;
  height: 40px;
  fill: currentColor;
}

.live-player-play-button span:last-child {
  display: inline-block;
  padding: 10px 20px;
  border-radius: 999px;
  background: var(--rkc-accent);
  color: #261a06;
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.live-player-play-button.is-playing .live-player-play-icon,
.live-player-play-button.is-playing span:last-child {
  background: var(--rkc-accent);
  color: #261a06;
}

@media (max-width: 640px) {
  .live-player-play-icon {
    width: 92px;
    height: 92px;
  }

  .live-player-play-icon svg {
    width: 34px;
    height: 34px;
  }

  .live-player-play-button span:last-child {
    padding: 9px 16px;
    font-size: 15px;
  }
}

.live-player-card.is-playing .live-player-poster,
.live-player-card.is-playing .player-loading {
  filter: saturate(0.98) contrast(1.04) brightness(0.92);
}

.live-player-card.is-playing .player-active-state {
  display: block !important;
}

.player-offline-state {
  background: #1e1e1d;
  color: #fff;
  padding: 50px 30px;
  text-align: center;
}

.offline-placeholder-content {
  max-width: 500px;
  margin: 0 auto;
}

.offline-icon {
  font-size: 64px;
  margin-bottom: 20px;
  opacity: 0.8;
}

.player-offline-state h2 {
  font-family: Georgia, serif;
  font-size: 26px;
  color: var(--rkc-accent);
  margin: 0 0 12px;
}

.player-offline-state p {
  font-size: 15px;
  color: #ccc;
  margin-bottom: 30px;
}

.offline-schedule-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--rkc-radius);
  padding: 24px;
  text-align: left;
}

.offline-schedule-box h3 {
  font-size: 16px;
  margin: 0 0 16px;
  color: #fff;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  padding-bottom: 8px;
}

.offline-schedule-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.offline-schedule-list li {
  font-size: 14px;
  color: #ddd;
}

.offline-schedule-list .day {
  color: var(--rkc-accent);
}

.offline-schedule-list .times {
  font-weight: bold;
}

.offline-schedule-list .note {
  color: #aaa;
  font-style: italic;
  margin-left: 6px;
}

/* responsive media queries adjustments */
@media (max-width: 990px) {
  .front-columns-grid,
  .content-layout-live {
    grid-template-columns: 1fr;
  }
  
  .bank-details-grid {
    grid-template-columns: 1fr;
  }
  
  .bank-detail-item:nth-child(2) {
    grid-column: span 1;
  }
}

/* Language switcher in header */
.header-lang-switcher {
  display: flex;
  align-items: center;
  gap: 6px;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 13px;
  font-weight: 750;
  text-transform: uppercase;
}

.header-lang-switcher li {
  display: inline-flex;
}

.header-lang-switcher li a {
  color: var(--rkc-muted);
  text-decoration: none;
  padding: 4px 8px;
  border-radius: 4px;
  transition: all 0.2s ease;
}

.header-lang-switcher li a:hover {
  color: var(--rkc-primary);
  background: var(--rkc-accent-soft);
}

.header-lang-switcher li.current-lang a {
  color: var(--rkc-primary-strong);
  background: var(--rkc-accent-soft);
}

@media (max-width: 768px) {
  .header-phone {
    display: none;
  }
}
