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

html {
  font-size: 16px;
}

body {
  margin: 0;
  font-family: "Cairo", "Poppins", sans-serif;
  color: #373737;
  background: #ffffff;
}

img {
  max-width: 100%;
  display: block;
  overflow: clip;
}

video,
canvas {
  max-width: 100%;
  overflow: clip;
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: center;
  margin-bottom: 0;
  font-size: 0.9375rem;
  color: #6f6a62;
}
.breadcrumbs a {
  color: #161616;
  font-weight: 600;
  transition: all 0.25s ease;
}
.breadcrumbs a:hover {
  color: #d33a2c;
}
.breadcrumbs span {
  color: #6f6a62;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-top: 0;
  font-family: "Cairo", "Poppins", sans-serif;
  color: #161616;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: -0.025em;
}

p {
  margin-top: 0;
  line-height: 1.6;
}

ul {
  padding-left: 20px;
}

.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;
}

body.has-site-drawer {
  overflow: hidden;
}

.site-header {
  --header-menu-icon-color: #2453ff;
  --header-search-icon-color: #2453ff;
  --header-logo-height: 78px;
  --header-logo-meta-gap: 2px;
  background: rgba(255, 255, 255, 0.98);
  border-bottom: 1px solid #eef1f5;
  position: sticky;
  top: 0;
  z-index: 60;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
  backdrop-filter: blur(18px);
}

.site-header.is-hidden {
  transform: translateY(-100%);
}

.site-header.is-scrolled {
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.site-header.is-scrolled {
  --header-logo-height: 52px;
  --header-logo-meta-gap: 0;
}

.site-header__mainbar {
  padding-bottom: 6px;
  border-bottom: 1px solid #eef1f5;
}

.site-header__mainbar-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  min-height: 88px;
  gap: 18px;
  transition: min-height 0.24s ease;
}

.site-header.is-scrolled .site-header__mainbar-inner {
  min-height: 70px;
}

.site-header__menu-toggle,
.site-header__search-toggle {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  border: 0;
  background: transparent;
  color: #111827;
  font-size: 1rem;
  cursor: pointer;
  padding: 0;
}

.site-header__menu-icon {
  display: grid;
  grid-template-columns: repeat(3, 4px);
  gap: 3px;
}
.site-header__menu-icon span {
  width: 4px;
  height: 4px;
  border-radius: 999px;
  background: var(--header-menu-icon-color);
}

.site-header__menu-text {
  font-size: 1rem;
  font-weight: 500;
  color: #111827;
}

.site-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.site-logo--header {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: center;
  max-width: min(100%, 420px);
  min-height: 60px;
}

.site-logo__stack {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: var(--header-logo-meta-gap);
  transition: gap 0.24s ease;
}

.site-logo__image {
  display: block;
  width: auto;
  height: var(--header-logo-height);
  max-width: 100%;
  min-width: 1px;
  flex: 0 0 auto;
  object-fit: contain;
  object-position: center;
  transition: height 0.24s ease;
}

.site-logo__title {
  color: #2453ff;
  font-family: "Cairo", "Poppins", sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.04em;
}

.site-logo__meta {
  display: inline-block;
  color: #667085;
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1.05;
  white-space: nowrap;
}

.site-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  justify-self: end;
  gap: 0;
  min-width: 0;
}

.site-header__search-icon {
  display: inline-flex;
  position: relative;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.site-header__search-icon::before {
  content: "";
  position: absolute;
  inset: 1px 4px 4px 1px;
  border: 2px solid var(--header-search-icon-color);
  border-radius: 50%;
}

.site-header__search-icon::after {
  content: "";
  position: absolute;
  width: 8px;
  height: 2px;
  right: 0;
  bottom: 2px;
  background: var(--header-search-icon-color);
  transform: rotate(45deg);
  transform-origin: right center;
}

.site-header__search-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
  min-height: 54px;
  gap: 10px;
}

.site-header__search-form {
  display: none;
  align-items: center;
  gap: 14px;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  min-height: 54px;
  padding: 0 18px;
  border-radius: 14px;
  background: #f3f4f8;
  border: 1px solid #eef1f5;
}
.site-header__search-form .site-header__search-form-icon {
  display: inline-flex;
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}
.site-header__search-form .site-header__search-form-icon::before {
  content: "";
  position: absolute;
  inset: 1px 4px 4px 1px;
  border: 2px solid var(--header-search-icon-color);
  border-radius: 50%;
}
.site-header__search-form .site-header__search-form-icon::after {
  content: "";
  position: absolute;
  width: 9px;
  height: 2px;
  right: 0;
  bottom: 3px;
  background: var(--header-search-icon-color);
  transform: rotate(45deg);
  transform-origin: right center;
}
.site-header__search-form input {
  width: 100%;
  min-height: 52px;
  border: 0;
  background: transparent;
  color: #111827;
  padding: 0;
  font-size: 1rem;
}
.site-header__search-form input::placeholder {
  color: #98a2b3;
}
.site-header__search-form input:focus {
  outline: none;
  box-shadow: none;
}

.site-header__search-close {
  display: none;
  position: relative;
  width: 28px;
  height: 28px;
  border: 0;
  border-radius: 999px;
  background: #d1d5db;
  cursor: pointer;
  flex-shrink: 0;
}
.site-header__search-close span::before,
.site-header__search-close span::after {
  content: "";
  position: absolute;
  top: 13px;
  left: 7px;
  width: 14px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
}
.site-header__search-close span::before {
  transform: rotate(45deg);
}
.site-header__search-close span::after {
  transform: rotate(-45deg);
}

.site-header.is-search-open .site-header__search-form {
  display: flex;
}

.site-header.is-search-open .site-header__search-close {
  display: inline-flex;
}

.site-header.is-search-open .site-header__search-toggle .site-header__search-text {
  display: none;
}

.site-header.is-search-open .site-header__search-toggle {
  display: none;
}

.site-header__brands {
  border-bottom: 1px solid #eef1f5;
}

.site-header__brands-shell {
  position: relative;
}

.site-header__brands-track {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(92px, 1fr));
  align-items: center;
  min-height: 44px;
  overflow: hidden;
}

.site-header__brand-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  color: var(--brand-color);
  font-size: 0.94rem;
  font-weight: 700;
}

.site-header__brands-arrow {
  display: none;
  align-items: center;
  justify-content: center;
  width: 32px;
  border: 0;
  background: #ffffff;
  color: #475467;
  cursor: pointer;
  transition: opacity 0.2s ease;
}
.site-header__brands-arrow span {
  display: inline-flex;
  width: 8px;
  height: 8px;
  border-top: 1.5px solid currentColor;
  border-right: 1.5px solid currentColor;
}

.site-header__brands-arrow.is-hidden {
  opacity: 0;
  pointer-events: none;
}

.site-header__brands-arrow--left span {
  transform: rotate(-135deg);
}

.site-header__brands-arrow--right span {
  transform: rotate(45deg);
}

.site-drawer[hidden] {
  display: none !important;
}

.site-drawer {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.site-drawer__overlay {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(17, 24, 39, 0.5);
  opacity: 0;
  transition: opacity 0.34s ease;
}

.site-drawer__panel {
  position: relative;
  z-index: 1;
  width: min(360px, 92vw);
  height: 100%;
  background: #ffffff;
  border-right: 1px solid #e5e7eb;
  padding: 22px 18px 28px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transform: translateX(-104%);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.site-drawer.is-open .site-drawer__overlay {
  opacity: 1;
}

.site-drawer.is-open .site-drawer__panel {
  transform: translateX(0);
}

.site-drawer__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 18px;
  border-bottom: 1px solid #eceff4;
}
.site-drawer__header strong {
  display: block;
  font-size: 1.5rem;
  color: #2453ff;
}
.site-drawer__header .site-drawer__logo-image {
  display: block;
  width: auto;
  height: 42px;
  max-width: 220px;
  object-fit: contain;
  object-position: left center;
}
.site-drawer__header p {
  margin: 6px 0 0;
  color: #6f6a62;
}

.site-drawer__content {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding-right: 4px;
}

.site-drawer__footer {
  flex: 0 0 auto;
  margin-top: auto;
  background: #ffffff;
  padding-top: 16px;
}

.site-drawer__close {
  border: 0;
  background: transparent;
  color: #6f6a62;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.site-drawer__nav,
.site-drawer__secondary-links {
  display: flex;
  flex-direction: column;
}

.site-drawer__nav {
  gap: 8px;
  padding: 18px 0;
}

.site-drawer__primary-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 0;
  font-size: 1.02rem;
  font-weight: 600;
  border-bottom: 1px solid #f2f4f7;
}

.site-drawer__primary-dot {
  width: 14px;
  height: 14px;
  border-radius: 4px;
  background: var(--drawer-color);
  flex-shrink: 0;
}

.site-drawer__section {
  padding-top: 18px;
}
.site-drawer__section h2 {
  margin: 0 0 12px;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #6f6a62;
}

.site-drawer__secondary-links {
  gap: 10px;
}
.site-drawer__secondary-links a {
  color: #111827;
  font-size: 0.98rem;
  padding: 4px 0;
}

.site-drawer__section--install {
  border-top: 1px solid #eceff4;
}

.site-drawer__section--sticky {
  padding-bottom: 0;
}

.site-drawer__section--push {
  border-top: 0;
  padding-top: 0;
}

.site-drawer__push-card {
  padding: 14px;
  border: 1px solid rgba(36, 83, 255, 0.08);
  border-radius: 18px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(247, 249, 255, 0.98)), radial-gradient(circle at top left, rgba(36, 83, 255, 0.1), transparent 52%);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.07);
}

.site-drawer__push-head {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 12px;
}

.site-drawer__push-icon {
  width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #2453ff 0%, #22c55e 100%);
  box-shadow: 0 10px 20px rgba(36, 83, 255, 0.2);
  color: #ffffff;
}
.site-drawer__push-icon svg {
  width: 19px;
  height: 19px;
  display: block;
  fill: currentColor;
}

.site-drawer__push-copy {
  min-width: 0;
}
.site-drawer__push-copy h2 {
  margin-bottom: 4px;
  color: #111827;
  letter-spacing: 0;
  text-transform: none;
  font-size: 0.92rem;
}
.site-drawer__push-copy p {
  margin: 0;
  color: #64748b;
  font-size: 0.82rem;
  line-height: 1.45;
}

.site-drawer__install-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  width: 100%;
  padding: 0 18px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #cb3029 0%, #8e0c63 100%);
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
}
.site-drawer__install-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(142, 12, 99, 0.18);
}

.site-drawer__install-button--push {
  min-height: 46px;
  border-radius: 14px;
  background: linear-gradient(135deg, #2453ff 0%, #122ea8 100%);
  box-shadow: 0 12px 24px rgba(36, 83, 255, 0.2);
  font-size: 0.9rem;
}

.site-drawer__install-help {
  margin: 10px 0 0;
  color: #6f6a62;
  font-size: 0.86rem;
  line-height: 1.55;
}

.site-drawer__install-help--push {
  color: #526071;
  margin-top: 8px;
  font-size: 0.8rem;
}

.install-banner {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 80;
  width: min(360px, 100vw - 24px);
  padding: 16px;
  border-radius: 22px;
  background: rgba(17, 24, 39, 0.96);
  color: #ffffff;
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.28);
  backdrop-filter: blur(16px);
}

.install-banner__body h3 {
  margin: 8px 0 8px;
  color: #ffffff;
  font-size: 1.15rem;
  line-height: 1.1;
  font-weight: 700;
}

.install-banner__body p {
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  line-height: 1.6;
}

.install-banner__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  color: #ffd8b7;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.install-banner__actions {
  display: flex;
  gap: 10px;
  margin-top: 14px;
}

.install-banner__button,
.install-banner__dismiss {
  min-height: 42px;
  border-radius: 12px;
  font-size: 0.86rem;
  font-weight: 700;
}

.install-banner__button {
  flex: 1;
  border: 0;
  background: linear-gradient(135deg, #cb3029 0%, #8e0c63 100%);
  color: #ffffff;
  cursor: pointer;
}

.install-banner__dismiss {
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: transparent;
  color: rgba(255, 255, 255, 0.84);
  cursor: pointer;
}

@media (max-width: 1100px) {
  .site-header__mainbar-inner {
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  }
}
@media (max-width: 900px) {
  .site-header__mainbar-inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    min-height: 68px;
  }
  .site-header__search-text {
    display: none;
  }
  .site-header__search-form {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: calc(100vw - 24px);
    max-width: 420px;
    box-shadow: 0 18px 36px rgba(15, 23, 42, 0.12);
    z-index: 5;
  }
  .site-header__search-close {
    position: absolute;
    top: 50%;
    right: 6px;
    transform: translateY(-50%);
    z-index: 6;
  }
  .site-header__brands-arrow {
    display: inline-flex;
    position: absolute;
    top: 0;
    bottom: 0;
    z-index: 2;
    width: 26px;
    background: rgba(255, 255, 255, 0.96);
  }
  .site-header__brands-arrow--left {
    left: 0;
  }
  .site-header__brands-arrow--right {
    right: 0;
  }
  .site-header__brands-track {
    display: flex;
    overflow-x: auto;
    gap: 0;
    scroll-behavior: smooth;
    scrollbar-width: none;
    padding-inline: 18px;
  }
  .site-header__brands-track::-webkit-scrollbar {
    display: none;
  }
  .site-header__brand-link {
    min-width: max-content;
    padding-inline: 18px;
  }
}
@media (max-width: 640px) {
  .install-banner {
    right: 10px;
    bottom: 10px;
    width: calc(100vw - 20px);
    padding: 14px;
    border-radius: 18px;
  }
  .install-banner__actions {
    flex-direction: column;
  }
  .install-banner__button,
  .install-banner__dismiss {
    width: 100%;
  }
  .site-logo__title {
    font-size: 1.65rem;
  }
  .site-logo__image {
    height: 44px;
  }
  .site-logo__meta {
    font-size: 0.68rem;
  }
  .site-header__mainbar-inner {
    gap: 12px;
    min-height: 64px;
  }
  .site-header__menu-toggle > span:last-child {
    display: none;
  }
  .site-header__brands-track {
    min-height: 42px;
  }
  .site-header__brand-link {
    justify-content: center;
    padding-inline: 16px;
    min-width: max-content;
    font-size: 0.88rem;
  }
  .site-header__search-form {
    width: calc(100vw - 20px);
    max-width: 360px;
  }
}
@media (max-width: 480px) {
  .site-logo__meta {
    display: inline-block;
  }
  .site-logo__image {
    height: 52px;
  }
}
.site-footer {
  margin-top: 0;
  padding: 44px 0 24px;
  background: #0f1116;
  color: rgba(255, 255, 255, 0.78);
  border-top: 3px solid #FE7609;
}

.site-footer__content {
  display: grid;
  gap: 28px;
}
.site-footer__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  max-width: none;
}

.site-footer__brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
  align-items: flex-start;
  padding-bottom: 28px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.site-footer__logo {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  max-width: min(100%, 420px);
  min-height: 60px;
}
.site-footer__logo img {
  width: 220px;
  height: 72px;
  max-width: 100%;
  object-fit: contain;
  display: block;
}
.site-footer__logo strong {
  display: block;
  font-family: "Cairo", "Poppins", sans-serif;
  font-size: 2.5rem;
  line-height: 1;
  color: #ffffff;
}

.site-footer__intro {
  max-width: 640px;
}
.site-footer__intro p {
  font-size: 0.98rem;
  line-height: 1.8;
}

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

.site-footer__panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
}

.site-footer__panel h3 {
  margin: 0;
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-footer__muted {
  color: rgba(255, 255, 255, 0.58) !important;
}

.site-footer__pages {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer__pages a {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  font-weight: 600;
  line-height: 1.3;
}
.site-footer__pages a:hover {
  color: #ffffff;
}

.site-footer__expedient {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.site-footer__expedient p {
  line-height: 1.65;
}

.newsletter-form {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.newsletter-form input {
  min-height: 48px;
  min-width: 0;
  flex: 1 1 220px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: #ffffff;
}
.newsletter-form button {
  min-height: 48px;
  border: 0;
  border-radius: 999px;
  padding: 0 20px;
  background: #d33a2c;
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
}

.newsletter-message {
  margin-top: 12px;
  font-size: 0.9375rem;
}

.newsletter-message.success {
  color: #348e38;
}

.newsletter-message.error {
  color: #d33a2c;
}

.site-footer__social {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.site-footer__social a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border-radius: 10px;
  border: 1px solid var(--social-color, #152543);
  color: #ffffff;
  background: var(--social-color, #152543);
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
}
.site-footer__social a svg {
  width: 22px;
  height: 22px;
  display: block;
}
.site-footer__social a:hover {
  color: #ffffff;
  border-color: color-mix(in srgb, var(--social-color, #0031FF) 78%, black);
  background: color-mix(in srgb, var(--social-color, #0031FF) 78%, black);
}

.site-footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 28px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.62);
}
.site-footer__bottom a,
.site-footer__bottom strong {
  color: #ffffff;
}

.cookie-consent[hidden] {
  display: none !important;
}

.cookie-consent {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  z-index: 79;
  width: min(680px, 100vw - 32px);
  padding: 20px 22px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.985), rgba(248, 250, 255, 0.985));
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
  backdrop-filter: blur(18px);
}

.cookie-consent__body h3 {
  margin: 6px 0 10px;
  font-size: 1.12rem;
  line-height: 1.2;
  color: #111827;
}
.cookie-consent__body p {
  margin: 0;
  color: #526071;
  font-size: 0.92rem;
  line-height: 1.6;
}
.cookie-consent__body a {
  color: #2453ff;
  font-weight: 700;
}

.cookie-consent__eyebrow {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(36, 83, 255, 0.08);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #2453ff;
}

.cookie-consent__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 18px;
}

.cookie-consent__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 14px;
  background: #eef2ff;
  color: #1736b6;
  font-size: 0.92rem;
  font-weight: 700;
}

.cookie-consent__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 22px;
  border: 0;
  border-radius: 14px;
  background: linear-gradient(135deg, #2453ff 0%, #122ea8 100%);
  color: #ffffff;
  font-size: 0.94rem;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(36, 83, 255, 0.22);
  cursor: pointer;
}

@media (max-width: 900px) {
  .site-footer {
    padding-top: 36px;
  }
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
  .site-footer__brand,
  .site-footer__bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .site-footer__content {
    align-items: stretch;
  }
}
@media (max-width: 640px) {
  .site-footer {
    padding: 34px 0 20px;
  }
  .site-footer__panel {
    padding: 18px;
  }
  .site-footer__logo img {
    width: 180px;
    height: 58px;
  }
  .site-footer__bottom {
    gap: 10px;
    font-size: 0.84rem;
  }
  .cookie-consent {
    left: 50%;
    bottom: 10px;
    padding: 16px;
    border-radius: 18px;
    width: min(100vw - 20px, 680px);
  }
  .cookie-consent__actions {
    flex-direction: column;
    align-items: stretch;
  }
  .cookie-consent__link,
  .cookie-consent__button {
    width: 100%;
    justify-content: center;
    text-align: center;
  }
}
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 0.6875rem;
  font-weight: 800;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.badge-primary {
  background: rgba(217, 43, 43, 0.1);
  color: #d33a2c;
  border-color: rgba(217, 43, 43, 0.16);
}

.podcast-page {
  padding: 28px 0 84px;
  background: radial-gradient(circle at top center, rgba(255, 190, 120, 0.08), transparent 24%), linear-gradient(180deg, #111111 0%, #090909 100%);
  color: #f7f2eb;
}
.podcast-page .breadcrumbs {
  margin-bottom: 20px;
  color: rgba(247, 242, 235, 0.72);
}
.podcast-page .breadcrumbs a {
  color: #fff0d6;
}
.podcast-page .breadcrumbs a:hover {
  color: #ffd08b;
}
.podcast-page .breadcrumbs span {
  color: rgba(247, 242, 235, 0.72);
}

.podcast-page .container {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.podcast-page__hero-copy {
  max-width: 720px;
}

.podcast-page__kicker,
.podcast-page__eyebrow,
.podcast-page__card-kicker {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(255, 208, 139, 0.12);
  color: #ffd08b;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.podcast-page__hero-copy h1 {
  margin: 14px 0 12px;
  color: #fff0d6;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 0.94;
  font-weight: 700;
  letter-spacing: -0.05em;
}

.podcast-page__hero-copy p {
  margin: 0;
  max-width: 620px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.02rem;
  line-height: 1.75;
}

.podcast-page__featured {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, 0.72fr);
  gap: 24px;
  padding: 24px;
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

.podcast-page__player {
  overflow: hidden;
  border-radius: 22px;
  background: #050505;
  aspect-ratio: 16/9;
}

.podcast-page__player iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.podcast-page__featured-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.podcast-page__featured-content h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.9rem, 2.8vw, 3rem);
  line-height: 1;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.podcast-page__featured-content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  line-height: 1.78;
}

.podcast-page__button {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border-radius: 999px;
  background: #ffd08b;
  color: #241304;
  font-size: 0.92rem;
  font-weight: 700;
}

.podcast-page__heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.podcast-page__heading h2 {
  margin: 0;
  color: #fff0d6;
  font-size: 1.45rem;
  line-height: 1;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.podcast-page__heading span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.podcast-page__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.podcast-page__card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 14px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.035);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.05);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.podcast-page__card.is-active {
  background: rgba(255, 208, 139, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 208, 139, 0.22);
}

.podcast-page__card:hover {
  transform: translateY(-2px);
}

.podcast-page__card-media {
  display: block;
  overflow: hidden;
  border-radius: 18px;
  background: #1c1c1c;
  aspect-ratio: 16/10;
}

.podcast-page__card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.podcast-page__card-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.podcast-page__card-body h3 {
  margin: 0;
  color: #ffffff;
  font-size: 1.12rem;
  line-height: 1.35;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.podcast-page__card-link {
  color: #ffd08b;
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.podcast-page__empty {
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.03);
  color: rgba(255, 255, 255, 0.7);
}

.podcast-page__hero-copy h1,
.podcast-page__featured-content h2,
.podcast-page__card-body h3 {
  line-height: 1.2;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .podcast-page__featured,
  .podcast-page__grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 860px) {
  .podcast-page__heading {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 640px) {
  .podcast-page {
    padding: 22px 0 66px;
  }
  .podcast-page__featured {
    padding: 18px;
    border-radius: 24px;
  }
}

/*# sourceMappingURL=site-podcasts.css.map */
