/**
 * GeoShell Main Styles
 * Kompletni styling pro block theme
 */

/* ============================================
   RESET & BASE
   ============================================ */

*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: var(--wp--preset--color--surface);
  color: var(--wp--preset--color--text);
  font-family: var(--wp--preset--font-family--body);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

/* ============================================
   HEADER & NAVBAR
   ============================================ */

.gs-header {
  background: var(--wp--preset--color--card);
  border-bottom: 1px solid var(--wp--preset--color--border);
}

.gs-navbar {
  background: var(--wp--preset--color--forest);
  border-bottom: 4px solid var(--wp--preset--color--accent);
}

.gs-navbar .wp-block-navigation {
  gap: 0;
}

.gs-navbar .wp-block-navigation-item a,
.gs-navbar .wp-block-navigation-link a {
  color: #ffffff;
  padding: 0 1rem;
  height: 56px;
  display: flex;
  align-items: center;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  transition: background-color 0.15s ease;
}

.gs-navbar .wp-block-navigation-item a:hover,
.gs-navbar .wp-block-navigation-item a:focus,
.gs-navbar .wp-block-navigation-link a:hover {
  background: var(--wp--preset--color--accent);
  color: #ffffff;
}

.gs-navbar .wp-block-navigation__submenu-container {
  background: var(--wp--preset--color--forest);
  border: none;
  border-radius: 0 0 4px 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.gs-navbar .wp-block-navigation__submenu-container a {
  height: auto;
  padding: 0.75rem 1rem;
}

/* Mobile navigation */
@media (max-width: 782px) {
  .gs-navbar .wp-block-navigation-item a {
    height: auto;
    padding: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .gs-navbar .wp-block-navigation__responsive-container {
    background: var(--wp--preset--color--forest);
  }

  .gs-navbar .wp-block-navigation__responsive-container-close {
    color: #ffffff;
  }
}

/* GC Radce button */
.gs-gc-radce-btn {
  background: var(--wp--preset--color--accent);
  color: #ffffff !important;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.8125rem;
  font-weight: 600;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: background-color 0.15s;
}

.gs-gc-radce-btn:hover {
  background: var(--wp--preset--color--accent-hover);
}

/* ============================================
   MAIN CONTENT
   ============================================ */

.gs-main {
  padding-top: 2rem;
  padding-bottom: 3rem;
}

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

.gs-post-card {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gs-post-card:hover {
  transform: translateY(-2px);
}

.gs-featured-card {
  background: var(--wp--preset--color--card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  margin-bottom: 2rem;
}

.gs-featured-card .wp-block-post-featured-image img {
  border-radius: 0;
}

/* Article cards grid */
.gs-article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .gs-article-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .gs-article-grid {
    grid-template-columns: 1fr;
  }
}

.gs-article-card {
  background: var(--wp--preset--color--card);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.gs-article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.gs-article-card .wp-block-post-featured-image {
  margin: 0;
}

.gs-article-card .wp-block-post-featured-image img {
  border-radius: 12px 12px 0 0;
  aspect-ratio: 16/9;
  object-fit: cover;
  width: 100%;
}

.gs-article-card-content {
  padding: 1rem 1.25rem 1.25rem;
}

/* ============================================
   PROJECTS STRIP
   ============================================ */

.gs-projects-strip {
  background: var(--wp--preset--color--card);
  padding: 1.5rem 0;
  margin-bottom: 2rem;
  border-top: 1px solid var(--wp--preset--color--border);
  border-bottom: 1px solid var(--wp--preset--color--border);
}

.gs-project-card {
  background: var(--wp--preset--color--surface);
  border-radius: 12px;
  overflow: hidden;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  position: relative;
}

.gs-project-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--project-color, var(--wp--preset--color--accent));
}

.gs-project-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.gs-project-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.gs-project-card-content {
  padding: 0.75rem 1rem;
}

.gs-project-card-title {
  font-family: var(--wp--preset--font-family--heading);
  font-size: 0.9375rem;
  font-weight: 600;
  color: var(--wp--preset--color--text);
  margin: 0;
}

/* Project colors */
.gs-project-card--kesky::before { --project-color: #4CAF50; }
.gs-project-card--muzeum::before { --project-color: #9C27B0; }
.gs-project-card--terezin::before { --project-color: #FF5722; }
.gs-project-card--gps-maze::before { --project-color: #2196F3; }
.gs-project-card--postapo::before { --project-color: #607D8B; }

/* ============================================
   SIDEBAR
   ============================================ */

.gs-sidebar {
  position: sticky;
  top: 2rem;
}

.gs-sidebar-widget {
  margin-bottom: 2rem;
}

.gs-widget-title {
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--wp--preset--color--text);
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--wp--preset--color--accent);
  font-weight: 600;
}

/* VLM Ad slots */
.gs-vlm-slot {
  background: var(--wp--preset--color--surface-warm);
  border-radius: 8px;
  min-height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
}

.gs-vlm-slot--square {
  aspect-ratio: 1;
  max-width: 300px;
}

.gs-vlm-slot--skyscraper {
  min-height: 600px;
}

/* Kesky CTA box */
.gs-kesky-cta {
  background: linear-gradient(135deg, var(--wp--preset--color--forest) 0%, var(--wp--preset--color--forest-light) 100%);
  color: #ffffff;
  padding: 1.5rem;
  border-radius: 12px;
  text-align: center;
  margin-bottom: 1.5rem;
}

.gs-kesky-cta h4 {
  color: #ffffff;
  margin: 0 0 0.5rem 0;
  font-size: 1.125rem;
}

.gs-kesky-cta p {
  margin: 0 0 1rem 0;
  font-size: 0.875rem;
  opacity: 0.9;
}

.gs-kesky-cta .gs-btn {
  background: var(--wp--preset--color--accent);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  display: inline-block;
  transition: background 0.15s;
}

.gs-kesky-cta .gs-btn:hover {
  background: var(--wp--preset--color--accent-hover);
}

/* Categories list */
.gs-sidebar .wp-block-categories {
  list-style: none;
  padding: 0;
  margin: 0;
}

.gs-sidebar .wp-block-categories li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--wp--preset--color--border);
}

.gs-sidebar .wp-block-categories a {
  color: var(--wp--preset--color--text);
  text-decoration: none;
}

.gs-sidebar .wp-block-categories a:hover {
  color: var(--wp--preset--color--accent);
}

/* Keskomerka */
.gs-keskomerka {
  text-align: center;
  margin-bottom: 1.5rem;
}

.gs-keskomerka img {
  max-width: 100%;
  border-radius: 8px;
}

/* ============================================
   DISCOURSE BOX
   ============================================ */

.gs-discourse-box {
  background: var(--wp--preset--color--surface);
  border: 1px solid var(--wp--preset--color--border);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 2rem 0;
  text-align: center;
}

.gs-discourse-box h4 {
  margin: 0 0 0.5rem 0;
  font-size: 1rem;
}

.gs-discourse-box p {
  margin: 0 0 1rem 0;
  color: var(--wp--preset--color--text-secondary);
  font-size: 0.9375rem;
}

.gs-discourse-box .gs-btn {
  background: var(--wp--preset--color--forest);
  color: #ffffff;
  padding: 0.75rem 1.5rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 500;
  display: inline-block;
  transition: background 0.15s;
}

.gs-discourse-box .gs-btn:hover {
  background: var(--wp--preset--color--forest-light);
}

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

.gs-footer {
  background: var(--wp--preset--color--forest);
  color: #ffffff;
}

.gs-footer a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
}

.gs-footer a:hover {
  color: var(--wp--preset--color--accent);
}

.gs-footer h6 {
  color: #ffffff;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

.gs-footer .wp-block-navigation-item a,
.gs-footer .wp-block-navigation-link a {
  color: rgba(255, 255, 255, 0.85);
  padding: 0.25rem 0;
  height: auto;
}

.gs-footer .wp-block-navigation-item a:hover {
  color: var(--wp--preset--color--accent);
  background: transparent;
}

.gs-footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 2rem;
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.7);
}

/* ============================================
   SINGLE ARTICLE
   ============================================ */

.gs-article {
  background: var(--wp--preset--color--card);
  padding: 2rem;
  border-radius: 12px;
}

.gs-article .wp-block-post-featured-image img {
  border-radius: 8px;
}

.gs-post-meta {
  color: var(--wp--preset--color--text-secondary);
  font-size: 0.875rem;
}

/* ============================================
   UTILITIES
   ============================================ */

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 782px) {
  .gs-main {
    padding-top: 1.5rem;
    padding-bottom: 2rem;
  }

  .gs-article {
    padding: 1.25rem;
  }

  .gs-sidebar {
    position: static;
    margin-top: 2rem;
  }
}

/* ============================================
   NAVBAR - IMPROVED
   ============================================ */

/* Logo — pouze obrázek */
.gs-logo {
  margin: 0;
  padding: 0;
  flex-shrink: 0;
}

.gs-logo figure,
.gs-logo .wp-block-image {
  margin: 0 !important;
  padding: 0;
  line-height: 0;
}

.gs-logo img {
  width: 44px !important;
  height: 44px !important;
  object-fit: contain !important;
  display: block;
}

.gs-logo a {
  display: block;
  line-height: 0;
}

/* Smaž starý textový logo styl */
.gs-logo-text {
  display: none !important;
}

/* Navigation links */
.gs-nav-links {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 4px;
}

.gs-nav-links a {
  color: rgba(255, 255, 255, 0.7) !important;
  text-decoration: none !important;
  font-size: 13px;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 8px;
  transition: all 0.15s ease;
  white-space: nowrap;
}

.gs-nav-links a:hover {
  color: rgba(255, 255, 255, 0.95) !important;
  background: rgba(255, 255, 255, 0.08);
}

/* Active nav item - Blog */
.gs-nav-links a[href="https://geocaching.cz"] {
  color: #ffffff !important;
  font-weight: 600;
  background: rgba(255, 255, 255, 0.1);
}

/* GC Rádce button — vylepšený s SVG */
.gs-gc-radce {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #EE7F01;
  color: #fff !important;
  text-decoration: none !important;
  padding: 7px 16px;
  border-radius: 22px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--wp--preset--font-family--body);
  transition: all 0.2s ease;
  box-shadow: 0 2px 8px rgba(238, 127, 1, 0.25);
  white-space: nowrap;
}

.gs-gc-radce:hover {
  background: #D97200;
  box-shadow: 0 4px 14px rgba(238, 127, 1, 0.35);
  transform: translateY(-1px);
}

.gs-gc-radce svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

@media (max-width: 768px) {
  .gs-gc-radce-text {
    display: none;
  }
  .gs-gc-radce {
    padding: 8px 10px;
    border-radius: 50%;
  }
}

/* Navbar search */
.gs-navbar .wp-block-search__input {
  background: rgba(255, 255, 255, 0.08) !important;
  border: none !important;
  border-radius: 20px !important;
  color: rgba(255, 255, 255, 0.9) !important;
  padding: 8px 14px !important;
  font-size: 13px;
}

.gs-navbar .wp-block-search__input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.gs-navbar .wp-block-search__button {
  background: rgba(255, 255, 255, 0.1) !important;
  border: none !important;
  border-radius: 0 20px 20px 0 !important;
  color: rgba(255, 255, 255, 0.7) !important;
  padding: 8px 12px !important;
}

.gs-navbar .wp-block-search__button:hover {
  background: rgba(255, 255, 255, 0.15) !important;
}

/* ============================================
   ARTICLE CARDS - GRID
   ============================================ */

/* Post cards in grid */
.wp-block-post-template .wp-block-post {
  background: #ffffff;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 1px 4px rgba(37, 79, 83, 0.04);
  transition: transform 0.25s cubic-bezier(0.2, 0.8, 0.3, 1),
              box-shadow 0.25s ease;
}

.wp-block-post-template .wp-block-post:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(37, 79, 83, 0.1);
}

/* Featured image in card */
.wp-block-post-template .wp-block-post .wp-block-post-featured-image {
  margin: 0;
  overflow: hidden;
}

.wp-block-post-template .wp-block-post .wp-block-post-featured-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.wp-block-post-template .wp-block-post:hover .wp-block-post-featured-image img {
  transform: scale(1.03);
}

/* Post title in card */
.wp-block-post-template .wp-block-post .wp-block-post-title {
  font-family: var(--wp--preset--font-family--heading);
  font-weight: 700;
  line-height: 1.3;
}

.wp-block-post-template .wp-block-post .wp-block-post-title a {
  color: #1B2D2F !important;
  text-decoration: none !important;
}

.wp-block-post-template .wp-block-post .wp-block-post-title a:hover {
  color: #EE7F01 !important;
}

/* Category badge */
.wp-block-post-template .wp-block-post .wp-block-post-terms a {
  color: #EE7F01 !important;
  text-decoration: none !important;
  font-weight: 600;
}

/* Date */
.wp-block-post-template .wp-block-post .wp-block-post-date {
  color: #99ADAF;
}

/* ============================================
   FEATURED HERO CARD
   ============================================ */

/* Hero card wrapper */
.wp-block-query:first-of-type .wp-block-post-template .wp-block-group.has-background {
  background: #ffffff !important;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(37, 79, 83, 0.06);
}

/* Hero image */
.wp-block-query:first-of-type .wp-block-post-featured-image img {
  border-radius: 16px 0 0 16px;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   SIDEBAR - IMPROVED
   ============================================ */

.gs-sidebar .wp-block-group:not(.gs-kesky-cta) {
  background: #ffffff;
  border-radius: 14px;
  padding: 18px 20px;
}

/* Latest posts in sidebar */
.gs-sidebar .wp-block-latest-posts {
  padding: 0;
  margin: 0;
  list-style: none;
}

.gs-sidebar .wp-block-latest-posts li {
  padding: 8px 0;
  border-bottom: 1px solid #EDF1F1;
}

.gs-sidebar .wp-block-latest-posts li:last-child {
  border-bottom: none;
}

.gs-sidebar .wp-block-latest-posts a {
  color: #5E7678;
  text-decoration: none;
  font-size: 14px;
  line-height: 1.4;
}

.gs-sidebar .wp-block-latest-posts a:hover {
  color: #EE7F01;
}

.gs-sidebar .wp-block-latest-posts__post-date {
  color: #99ADAF;
  font-size: 12px;
  display: block;
  margin-top: 4px;
}

/* Categories in sidebar */
.gs-sidebar .wp-block-categories {
  padding: 0;
  margin: 0;
  list-style: none;
}

.gs-sidebar .wp-block-categories li {
  padding: 8px 0;
  border-bottom: 1px solid #EDF1F1;
  font-size: 14px;
}

.gs-sidebar .wp-block-categories li:last-child {
  border-bottom: none;
}

.gs-sidebar .wp-block-categories a {
  color: #5E7678;
  text-decoration: none;
}

.gs-sidebar .wp-block-categories a:hover {
  color: #EE7F01;
}

/* Keskomerka image */
.gs-sidebar .wp-block-image img {
  width: 100%;
  border-radius: 8px;
}

/* ============================================
   FOOTER - IMPROVED
   ============================================ */

.gs-footer .wp-block-heading {
  color: #ffffff;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.gs-footer p {
  line-height: 1.8;
}

.gs-footer .wp-block-social-links {
  gap: 12px;
}

/* ============================================
   RESPONSIVE - ENHANCED
   ============================================ */

/* Tablet */
@media (max-width: 1024px) {
  /* Grid 2 sloupce */
  .wp-block-post-template.is-layout-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

/* Mobile */
@media (max-width: 768px) {
  /* Hide nav links text on mobile */
  .gs-nav-links {
    display: none;
  }

  /* Smaller search */
  .gs-navbar .wp-block-search__input {
    width: 100px !important;
  }

  /* Hero stack vertically */
  .wp-block-query:first-of-type .wp-block-group.is-layout-flex {
    flex-direction: column !important;
  }

  .wp-block-query:first-of-type .wp-block-post-featured-image {
    flex-basis: auto !important;
    width: 100% !important;
  }

  .wp-block-query:first-of-type .wp-block-post-featured-image img {
    border-radius: 16px 16px 0 0 !important;
    max-height: 220px;
  }

  /* Grid 1 column */
  .wp-block-post-template.is-layout-grid {
    grid-template-columns: 1fr !important;
  }

  /* Columns stack */
  .wp-block-columns {
    flex-direction: column !important;
  }

  .wp-block-column {
    flex-basis: 100% !important;
  }

  /* Footer columns stack */
  .gs-footer .wp-block-columns {
    flex-direction: column !important;
    gap: 24px;
  }

  /* Smaller padding */
  .wp-block-group.has-global-padding {
    padding-left: 16px !important;
    padding-right: 16px !important;
  }
}

/* Small mobile */
@media (max-width: 480px) {
  /* Smaller titles */
  .wp-block-post-title {
    font-size: 0.9rem !important;
  }

  /* Hide search completely */
  .gs-navbar .wp-block-search {
    display: none;
  }

  /* Logo smaller */
  .gs-logo {
    font-size: 15px !important;
  }
}

/* ============================================
   HAMBURGER MENU — SVG verze
   ============================================ */

.gs-hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 1001;
  -webkit-tap-highlight-color: transparent;
  touch-action: manipulation;
}

.gs-hamburger svg {
  display: block;
  width: 24px;
  height: 24px;
}

.gs-hamburger line {
  transition: all 0.3s ease;
  transform-origin: center;
}

.gs-hamburger.is-open .gs-ham-top {
  transform: rotate(45deg) translate(4px, 4px);
}

.gs-hamburger.is-open .gs-ham-mid {
  opacity: 0;
}

.gs-hamburger.is-open .gs-ham-bot {
  transform: rotate(-45deg) translate(4px, -4px);
}

body.gs-menu-open {
  overflow: hidden;
}

/* Mobile menu styles */
@media (max-width: 768px) {
  .gs-hamburger {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .gs-nav-links {
    position: fixed;
    top: 68px;
    left: 0;
    right: 0;
    bottom: 0;
    background: #254F53;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 20px;
    gap: 0;
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
    display: none;
  }

  .gs-nav-links.is-open {
    transform: translateX(0);
    display: flex !important;
  }

  .gs-nav-links a {
    padding: 16px 20px !important;
    font-size: 16px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0 !important;
  }

  .gs-nav-links a:hover {
    background: rgba(255, 255, 255, 0.05) !important;
  }
}

/* ============================================
   KESKY BEZ HRANIC — SIDEBAR CTA
   ============================================ */

.gs-kesky-cta {
  background: #1a3a3d !important;
  border-radius: 16px !important;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(26, 58, 61, 0.3);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  padding: 0 !important;
}

.gs-kesky-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 32px rgba(26, 58, 61, 0.35);
}

.gs-kesky-header {
  background: linear-gradient(135deg, #254F53 0%, #2D6166 40%, #1a3a3d 100%);
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Dekorativní kruhy v pozadí */
.gs-kesky-header::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(238, 127, 1, 0.15);
}

.gs-kesky-header::after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: -20px;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: rgba(238, 127, 1, 0.08);
}

.gs-kesky-emoji {
  font-size: 52px;
  position: relative;
  z-index: 1;
  animation: gs-float 3s ease-in-out infinite;
}

@keyframes gs-float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.gs-kesky-cta h3,
.gs-kesky-cta h4 {
  margin-top: 0 !important;
  color: #fff !important;
}

.gs-kesky-cta p {
  color: rgba(255, 255, 255, 0.6) !important;
}

.gs-kesky-cta .wp-block-button__link {
  background: #EE7F01 !important;
  color: #fff !important;
  border-radius: 10px !important;
  font-weight: 700 !important;
  font-size: 15px !important;
  padding: 12px 20px !important;
  box-shadow: 0 4px 12px rgba(238, 127, 1, 0.3);
  transition: all 0.2s ease;
}

.gs-kesky-cta .wp-block-button__link:hover {
  background: #D97200 !important;
  box-shadow: 0 6px 18px rgba(238, 127, 1, 0.4);
  transform: translateY(-1px);
}

/* ============================================
   PRINT
   ============================================ */

@media print {
  .gs-navbar,
  .gs-sidebar,
  .gs-footer,
  .gs-vlm-slot {
    display: none;
  }
}
