/* Kartice i paneli */
.gk-card {
  background-color: #ffffff;
  border: 1px solid rgba(191, 200, 202, 0.35);
  border-radius: 0.5rem;
  box-shadow: 0 4px 20px rgba(13, 79, 90, 0.04);
}

.material-symbols-outlined {
  font-family: "Material Symbols Outlined";
  font-weight: normal;
  font-style: normal;
  font-size: 24px;
  line-height: 1;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  font-feature-settings: "liga";
  -webkit-font-feature-settings: "liga";
  -webkit-font-smoothing: antialiased;
  font-variation-settings: "FILL" 0, "wght" 400, "GRAD" 0, "opsz" 24;
  display: inline-block;
  vertical-align: middle;
}

html.material-symbols-pending .material-symbols-outlined {
  overflow: hidden;
  visibility: hidden;
}

html.material-symbols-ready .material-symbols-outlined {
  visibility: visible;
}

.glass-card {
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(13, 79, 90, 0.1);
}

.hero-gradient {
  background: radial-gradient(circle at top right, rgba(179, 236, 249, 0.2), transparent),
    radial-gradient(circle at bottom left, rgba(255, 220, 188, 0.1), transparent);
}

.soft-shadow {
  box-shadow: 0 4px 20px rgba(13, 79, 90, 0.04);
}

.soft-shadow-hover:hover {
  box-shadow: 0 8px 30px rgba(13, 79, 90, 0.08);
  transform: translateY(-2px);
}

.transition-all-custom {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.video-container {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 1rem;
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.bento-item {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.bento-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(13, 79, 90, 0.08);
}

.bento-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 240px;
  gap: 16px;
}

.editorial-shadow {
  box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.15);
}

.narrative-dropcap::first-letter {
  float: left;
  font-family: "Source Serif 4", serif;
  font-size: 5rem;
  line-height: 4rem;
  padding-right: 0.5rem;
  padding-top: 0.5rem;
  color: #003740;
  font-weight: 700;
}

.masonry-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  grid-auto-rows: 10px;
}

.masonry-item {
  grid-row-end: span 26;
}

.masonry-item-tall {
  grid-row-end: span 40;
}

.masonry-item-short {
  grid-row-end: span 20;
}

/* Header — padajući meni Podcast */
header {
  overflow: visible;
}

.gk-podcast-dropdown {
  display: flex;
  align-items: center;
  position: relative;
}

/* Nevidljivi most trigger → panel (bez praznine u kojoj nestane hover) */
.gk-podcast-dropdown::before {
  content: "";
  position: absolute;
  left: -0.5rem;
  right: -0.5rem;
  top: 100%;
  height: 0.625rem;
  z-index: 59;
}

.gk-podcast-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.125rem;
  line-height: 1.25rem;
  white-space: nowrap;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
}

.gk-podcast-chevron {
  font-size: 1.125rem !important;
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.gk-podcast-dropdown:hover .gk-podcast-chevron,
.gk-podcast-dropdown:focus-within .gk-podcast-chevron,
.gk-podcast-dropdown.gk-nav-dropdown-open .gk-podcast-chevron {
  transform: rotate(180deg);
}

.gk-podcast-menu-panel {
  position: absolute;
  left: 0;
  top: calc(100% + 0.35rem);
  z-index: 60;
  min-width: min(22rem, calc(100vw - 2rem));
  max-height: min(70vh, 24rem);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(191, 200, 202, 0.45);
  border-radius: 0.5rem;
  box-shadow: 0 12px 40px rgba(13, 79, 90, 0.12);
  padding: 0.35rem 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition:
    opacity 0.15s ease,
    transform 0.15s ease,
    visibility 0s linear 0.15s;
}

.gk-podcast-dropdown:hover .gk-podcast-menu-panel,
.gk-podcast-dropdown:focus-within .gk-podcast-menu-panel,
.gk-podcast-dropdown.gk-nav-dropdown-open .gk-podcast-menu-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    opacity 0.15s ease,
    transform 0.15s ease,
    visibility 0s;
}

.gk-podcast-menu-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  line-height: 1.35;
  color: #191c1d;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.gk-podcast-menu-item:hover {
  background-color: rgba(13, 79, 90, 0.06);
  color: #0d4f5a;
}

.gk-podcast-menu-item--current {
  background-color: rgba(13, 79, 90, 0.1);
  color: #0d4f5a;
}

.gk-podcast-menu-item--current .gk-podcast-menu-num {
  color: #0d4f5a;
  font-weight: 700;
}

.gk-podcast-menu-num {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5c6264;
}

.gk-podcast-menu-title {
  font-weight: 500;
}

/* Header — padajući meni Radionice (isti layout kao Podcast) */
.gk-radionica-dropdown {
  display: flex;
  align-items: center;
  position: relative;
}

.gk-radionica-dropdown::before {
  content: "";
  position: absolute;
  left: -0.5rem;
  right: -0.5rem;
  top: 100%;
  height: 0.625rem;
  z-index: 59;
}

.gk-radionica-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.125rem;
  line-height: 1.25rem;
  white-space: nowrap;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
}

.gk-radionica-chevron {
  font-size: 1.125rem !important;
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.gk-radionica-dropdown:hover .gk-radionica-chevron,
.gk-radionica-dropdown:focus-within .gk-radionica-chevron,
.gk-radionica-dropdown.gk-nav-dropdown-open .gk-radionica-chevron {
  transform: rotate(180deg);
}

.gk-radionica-menu-panel {
  position: absolute;
  left: 0;
  top: calc(100% + 0.35rem);
  z-index: 60;
  min-width: min(22rem, calc(100vw - 2rem));
  max-height: min(70vh, 24rem);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(191, 200, 202, 0.45);
  border-radius: 0.5rem;
  box-shadow: 0 12px 40px rgba(13, 79, 90, 0.12);
  padding: 0.35rem 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition:
    opacity 0.15s ease,
    transform 0.15s ease,
    visibility 0s linear 0.15s;
}

.gk-radionica-dropdown:hover .gk-radionica-menu-panel,
.gk-radionica-dropdown:focus-within .gk-radionica-menu-panel,
.gk-radionica-dropdown.gk-nav-dropdown-open .gk-radionica-menu-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    opacity 0.15s ease,
    transform 0.15s ease,
    visibility 0s;
}

.gk-radionica-menu-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  line-height: 1.35;
  color: #191c1d;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.gk-radionica-menu-item:hover {
  background-color: rgba(13, 79, 90, 0.06);
  color: #0d4f5a;
}

.gk-radionica-menu-item--current {
  background-color: rgba(13, 79, 90, 0.1);
  color: #0d4f5a;
}

.gk-radionica-menu-item--current .gk-radionica-menu-num {
  color: #0d4f5a;
  font-weight: 700;
}

.gk-radionica-menu-num {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5c6264;
}

.gk-radionica-menu-title {
  font-weight: 500;
}

/* Header — padajući meni Okrugli stolovi */
.gk-okrugli-sto-dropdown {
  display: flex;
  align-items: center;
  position: relative;
}

.gk-okrugli-sto-dropdown::before {
  content: "";
  position: absolute;
  left: -0.5rem;
  right: -0.5rem;
  top: 100%;
  height: 0.625rem;
  z-index: 59;
}

.gk-okrugli-sto-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.125rem;
  line-height: 1.25rem;
  white-space: nowrap;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
}

.gk-okrugli-sto-chevron {
  font-size: 1.125rem !important;
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.gk-okrugli-sto-dropdown:hover .gk-okrugli-sto-chevron,
.gk-okrugli-sto-dropdown:focus-within .gk-okrugli-sto-chevron,
.gk-okrugli-sto-dropdown.gk-nav-dropdown-open .gk-okrugli-sto-chevron {
  transform: rotate(180deg);
}

.gk-okrugli-sto-menu-panel {
  position: absolute;
  left: 0;
  top: calc(100% + 0.35rem);
  z-index: 60;
  min-width: min(22rem, calc(100vw - 2rem));
  max-height: min(70vh, 24rem);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(191, 200, 202, 0.45);
  border-radius: 0.5rem;
  box-shadow: 0 12px 40px rgba(13, 79, 90, 0.12);
  padding: 0.35rem 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition:
    opacity 0.15s ease,
    transform 0.15s ease,
    visibility 0s linear 0.15s;
}

.gk-okrugli-sto-dropdown:hover .gk-okrugli-sto-menu-panel,
.gk-okrugli-sto-dropdown:focus-within .gk-okrugli-sto-menu-panel,
.gk-okrugli-sto-dropdown.gk-nav-dropdown-open .gk-okrugli-sto-menu-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    opacity 0.15s ease,
    transform 0.15s ease,
    visibility 0s;
}

.gk-okrugli-sto-menu-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  line-height: 1.35;
  color: #191c1d;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.gk-okrugli-sto-menu-item:hover {
  background-color: rgba(13, 79, 90, 0.06);
  color: #0d4f5a;
}

.gk-okrugli-sto-menu-item--current {
  background-color: rgba(13, 79, 90, 0.1);
  color: #0d4f5a;
}

.gk-okrugli-sto-menu-item--current .gk-okrugli-sto-menu-num {
  color: #0d4f5a;
  font-weight: 700;
}

.gk-okrugli-sto-menu-num {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5c6264;
}

.gk-okrugli-sto-menu-title {
  font-weight: 500;
}

/* Header — padajući meni Fokus grupe */
.gk-fokus-grupe-dropdown {
  display: flex;
  align-items: center;
  position: relative;
}

.gk-fokus-grupe-dropdown::before {
  content: "";
  position: absolute;
  left: -0.5rem;
  right: -0.5rem;
  top: 100%;
  height: 0.625rem;
  z-index: 59;
}

.gk-fokus-grupe-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.125rem;
  line-height: 1.25rem;
  white-space: nowrap;
  margin: 0;
  padding: 0;
  border: none;
  background: none;
  font: inherit;
  cursor: pointer;
}

.gk-fokus-grupe-chevron {
  font-size: 1.125rem !important;
  width: 1.125rem;
  height: 1.125rem;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

.gk-fokus-grupe-dropdown:hover .gk-fokus-grupe-chevron,
.gk-fokus-grupe-dropdown:focus-within .gk-fokus-grupe-chevron,
.gk-fokus-grupe-dropdown.gk-nav-dropdown-open .gk-fokus-grupe-chevron {
  transform: rotate(180deg);
}

.gk-fokus-grupe-menu-panel {
  position: absolute;
  left: 0;
  top: calc(100% + 0.35rem);
  z-index: 60;
  min-width: min(22rem, calc(100vw - 2rem));
  max-height: min(70vh, 24rem);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 0;
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(191, 200, 202, 0.45);
  border-radius: 0.5rem;
  box-shadow: 0 12px 40px rgba(13, 79, 90, 0.12);
  padding: 0.35rem 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-4px);
  transition:
    opacity 0.15s ease,
    transform 0.15s ease,
    visibility 0s linear 0.15s;
}

.gk-fokus-grupe-dropdown:hover .gk-fokus-grupe-menu-panel,
.gk-fokus-grupe-dropdown:focus-within .gk-fokus-grupe-menu-panel,
.gk-fokus-grupe-dropdown.gk-nav-dropdown-open .gk-fokus-grupe-menu-panel {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
  transition:
    opacity 0.15s ease,
    transform 0.15s ease,
    visibility 0s;
}

.gk-fokus-grupe-menu-item {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.625rem 1rem;
  font-size: 0.875rem;
  line-height: 1.35;
  color: #191c1d;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.gk-fokus-grupe-menu-item:hover {
  background-color: rgba(13, 79, 90, 0.06);
  color: #0d4f5a;
}

.gk-fokus-grupe-menu-item--current {
  background-color: rgba(13, 79, 90, 0.1);
  color: #0d4f5a;
}

.gk-fokus-grupe-menu-item--current .gk-fokus-grupe-menu-num {
  color: #0d4f5a;
  font-weight: 700;
}

.gk-fokus-grupe-menu-num {
  font-size: 0.6875rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #5c6264;
}

.gk-fokus-grupe-menu-title {
  font-weight: 500;
}

/* Mobilni hamburger meni */
html.gk-mobile-nav-open {
  overflow: hidden;
}

.gk-mobile-nav {
  position: fixed;
  inset: 0;
  z-index: 100;
  pointer-events: none;
}

.gk-mobile-nav:not([hidden]) {
  pointer-events: auto;
}

.gk-mobile-nav-backdrop {
  position: absolute;
  inset: 0;
  border: none;
  padding: 0;
  margin: 0;
  background: rgba(13, 25, 28, 0.45);
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.gk-mobile-nav:not([hidden]) .gk-mobile-nav-backdrop {
  opacity: 1;
}

.gk-mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(100%, 20rem);
  height: 100%;
  max-height: 100dvh;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  box-shadow: -8px 0 32px rgba(13, 79, 90, 0.12);
  display: flex;
  flex-direction: column;
  padding: 1rem 0 1.5rem;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  overflow-y: auto;
}

.gk-mobile-nav:not([hidden]) .gk-mobile-nav-panel {
  transform: translateX(0);
}

.gk-mobile-nav-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1.25rem 1rem;
  border-bottom: 1px solid rgba(191, 200, 202, 0.45);
  margin-bottom: 0.5rem;
}

.gk-mobile-nav-title {
  font-family: "Source Serif 4", serif;
  font-size: 1.125rem;
  font-weight: 700;
  color: #0d4f5a;
}

.gk-mobile-nav-close {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  border-radius: 9999px;
  background: rgba(13, 79, 90, 0.08);
  color: #0d4f5a;
  cursor: pointer;
}

.gk-mobile-nav-list {
  display: flex;
  flex-direction: column;
  padding: 0 0.75rem;
}

.gk-mobile-nav-link {
  display: block;
  padding: 0.875rem 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  color: #3f484a;
  border-radius: 0.5rem;
  transition: background 0.15s ease, color 0.15s ease;
}

button.gk-mobile-nav-link {
  width: 100%;
  margin: 0;
  border: none;
  background: none;
  font: inherit;
  text-align: left;
  cursor: pointer;
}

.gk-mobile-nav-link:hover {
  background: rgba(13, 79, 90, 0.06);
  color: #0d4f5a;
}

.gk-mobile-nav-link--active {
  color: #0d4f5a;
  font-weight: 700;
  background: rgba(13, 79, 90, 0.1);
}

.gk-mobile-nav-group {
  margin-bottom: 0.25rem;
}

.gk-mobile-nav-row {
  display: flex;
  align-items: stretch;
  gap: 0.25rem;
}

.gk-mobile-nav-row .gk-mobile-nav-link {
  flex: 1;
}

.gk-mobile-nav-subtoggle {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  border: none;
  border-radius: 0.5rem;
  background: transparent;
  color: #0d4f5a;
  cursor: pointer;
}

.gk-mobile-nav-subtoggle .material-symbols-outlined {
  transition: transform 0.2s ease;
}

.gk-mobile-nav-subtoggle--open .material-symbols-outlined {
  transform: rotate(180deg);
}

.gk-mobile-nav-sub {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
  padding: 0.25rem 0 0.5rem 0.75rem;
  margin-left: 0.5rem;
  border-left: 2px solid rgba(13, 79, 90, 0.15);
}

.gk-mobile-nav-sublink {
  display: block;
  padding: 0.5rem 0.625rem;
  font-size: 0.8125rem;
  line-height: 1.35;
  color: #5c6264;
  border-radius: 0.375rem;
}

.gk-mobile-nav-sublink:hover {
  background: rgba(13, 79, 90, 0.06);
  color: #0d4f5a;
}

.gk-mobile-nav-sublink--active {
  color: #0d4f5a;
  font-weight: 600;
  background: rgba(13, 79, 90, 0.08);
}

.gk-mobile-nav-ep-num {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #0d4f5a;
  opacity: 0.75;
  margin-bottom: 0.125rem;
}

@media (min-width: 768px) {
  .gk-mobile-nav {
    display: none !important;
  }
}

/* Galerija — lightbox */
html.gk-lightbox-open {
  overflow: hidden;
}

.gk-gallery-trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: none;
  cursor: zoom-in;
  text-align: inherit;
  background: transparent;
}

.gk-gallery-trigger:focus-visible {
  outline: 2px solid #0d4f5a;
  outline-offset: 4px;
}

.gk-lightbox {
  margin: 0;
  padding: 0;
  border: none;
  max-width: none;
  max-height: none;
  width: 100%;
  height: 100%;
  background: transparent;
  overflow: hidden;
}

.gk-lightbox::backdrop {
  background: rgba(13, 25, 28, 0.88);
  opacity: 0;
  transition: opacity 0.28s ease;
}

.gk-lightbox--visible::backdrop {
  opacity: 1;
}

.gk-lightbox-backdrop {
  position: fixed;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.gk-lightbox--visible .gk-lightbox-backdrop {
  opacity: 1;
}

.gk-lightbox-panel {
  position: fixed;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3.5rem 1rem 4rem;
  pointer-events: none;
  opacity: 0;
  transform: scale(0.97);
  transition:
    opacity 0.28s ease,
    transform 0.32s cubic-bezier(0.32, 0.72, 0, 1);
}

.gk-lightbox--visible .gk-lightbox-panel {
  opacity: 1;
  transform: scale(1);
}

.gk-lightbox-panel > * {
  pointer-events: auto;
}

.gk-lightbox-figure {
  margin: 0;
  max-width: min(1200px, 100%);
  max-height: calc(100vh - 6rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  touch-action: pan-y pinch-zoom;
  width: 100%;
}

.gk-lightbox-viewport {
  width: 100%;
  max-width: min(1200px, 100%);
  overflow: hidden;
  position: relative;
}

.gk-lightbox-track {
  display: flex;
  flex-direction: row;
  width: 200%;
  will-change: transform;
  transition: transform 0.38s cubic-bezier(0.32, 0.72, 0, 1);
}

.gk-lightbox-track--dragging {
  transition: none;
}

.gk-lightbox-slide {
  flex: 0 0 50%;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 12rem;
  box-sizing: border-box;
}

.gk-lightbox-img {
  max-width: 100%;
  max-height: calc(100vh - 8rem);
  width: auto;
  height: auto;
  object-fit: contain;
  border-radius: 0.5rem;
  box-shadow: 0 24px 48px rgba(0, 0, 0, 0.35);
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}

.gk-lightbox-img--dragging {
  transition: none;
}

.gk-lightbox-close {
  position: fixed;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.gk-lightbox-close:hover {
  background: rgba(255, 255, 255, 0.22);
}

.gk-lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s ease;
}

.gk-lightbox-nav:hover:not(:disabled) {
  background: rgba(255, 255, 255, 0.22);
}

.gk-lightbox-nav:disabled {
  opacity: 0.35;
  cursor: default;
}

.gk-lightbox-prev {
  left: 0.75rem;
}

.gk-lightbox-next {
  right: 0.75rem;
}

@media (max-width: 767px) {
  .gk-lightbox-nav {
    display: none;
  }
}

.gk-lightbox-counter {
  position: fixed;
  bottom: 1.25rem;
  left: 50%;
  transform: translateX(-50%);
  margin: 0;
  font-size: 0.8125rem;
  letter-spacing: 0.06em;
  color: rgba(255, 255, 255, 0.75);
}

@media (min-width: 768px) {
  .gk-lightbox-prev {
    left: 1.25rem;
  }

  .gk-lightbox-next {
    right: 1.25rem;
  }
}

.gk-home-podcast-video.video-container {
  border-radius: 0;
  box-shadow: none;
}

.gk-home-podcast-video.video-container iframe {
  border: none;
}

@media (max-width: 639px) {
  #gk-home-podcast-track h3 {
    font-size: 1.125rem;
    line-height: 1.35;
  }
}

.gk-hero-partner-logo {
  height: 4rem;
  width: 100%;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 640px) {
  .gk-hero-partner-logo {
    max-width: none;
  }
}

@media (min-width: 1024px) {
  .gk-hero-partner-logo {
    height: 6.5rem;
  }

  .gk-hero-partner-logo--podrzano {
    height: 7.25rem;
  }
}

.gk-hero-partner-logo--podrzano {
  overflow: visible;
}

@media (max-width: 639px) {
  .gk-hero-partner-logo--podrzano img {
    transform: scale(1.28);
    transform-origin: center center;
  }
}

@media (min-width: 640px) and (max-width: 1023px) {
  .gk-hero-partner-logo--podrzano {
    height: 5.25rem;
  }
}

.gk-home-radionice-card,
.gk-home-okrugli-sto-card {
  box-shadow: 0 12px 32px rgba(0, 55, 64, 0.12);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.gk-home-radionice-card:hover,
.gk-home-okrugli-sto-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 55, 64, 0.18);
}

.gk-home-fokus-grupe-card {
  box-shadow: 0 8px 24px rgba(0, 55, 64, 0.06);
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    border-color 0.35s ease;
}

.gk-home-fokus-grupe-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 36px rgba(0, 55, 64, 0.12);
  border-color: rgba(13, 79, 90, 0.22);
}

@media (min-width: 1024px) {
  #gk-home-radionice-grid {
    grid-auto-rows: 1fr;
  }

  #gk-home-radionice-grid .gk-home-radionice-card--featured {
    min-height: 100%;
  }
}
