/* CSS Variables - Design Tokens from Figma */
:root {
  /* Colors */
  --blue-900: #B6D2E0;
  --grey-900: #2D2F33;
  --grey-700: #63656A;
  --black: #000000;
  --white: #FFFFFF;
  --green-700: #9DCA60;
  --green-600: #BFDC95;
  --lime-900: #D3F26A;
  --red-900: #FFC4BF;
  --violet-900: #d4bfff;
  --red-100: #FFEBEA;
  --yellow-900: #FFF49B;
  --light-grey: #DADADA;
  --text-dark: #1D1D1D;

  /* Typography */
  --font-unbounded: 'Unbounded', sans-serif;
  --font-golos: 'Golos Text', sans-serif;
  --font-gilroy: 'Gilroy', sans-serif;
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-golos);
  font-size: 16px;
  line-height: 1.5;
  color: var(--black);
  background-color: rgba(255, 255, 255, 0.95);
}

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

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

ul {
  list-style: none;
}

/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Button */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 10px;
  border-radius: 30px;
  font-family: var(--font-golos);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  cursor: pointer;
  transition: opacity 0.3s ease;
}

.btn:hover {
  opacity: 0.9;
}

.btn-primary {
  background-color: var(--green-700);
  color: var(--black);
  min-width: 200px;
  height: 64px;
}

.btn-dark {
  background-color: var(--black);
  color: var(--white);
  width: 293px;
  height: 64px;
}

/* Top Banner */
.top-banner {
  background-color: var(--blue-900);
  padding: 6px 0;
  text-align: center;
}

.top-banner p {
  font-family: var(--font-golos);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--black);
}

/* Header */
.header {
  padding: 20px 0;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  column-gap: 40px;
  row-gap: 20px;
}

.logos {
  display: flex;
  align-items: center;
  gap: 30px;
}

.logo-otk {
  height: 62px;
  width: auto;
}

.logo-moscow {
  height: 67px;
  width: auto;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: 38px;
}

.nav {
  display: flex;
  align-items: center;
  gap: 41px;
}

.nav a {
  font-family: var(--font-golos);
  font-weight: 600;
  font-size: 20px;
  line-height: 40px;
  color: var(--text-dark);
  transition: opacity 0.3s ease;
}

.nav a:hover {
  opacity: 0.7;
}

.header .btn-primary {
  width: 184px;
}

/* Hero Section */
.hero {
  padding: 40px 0 80px;
}

.hero-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.hero-left h1 {
  font-family: var(--font-unbounded);
  font-weight: 500;
  font-size: 72px;
  line-height: 82px;
  color: var(--grey-900);
  margin-bottom: 24px;
}

.hero-description {
  font-family: var(--font-unbounded);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
  color: var(--black);
  margin-bottom: 40px;
  max-width: 485px;
}

.hero-image-bottom {
  width: 100%;
  max-width: 602px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.hero-right {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero .btn-primary {
  width: 337px;
}

.hero-image-top {
  width: 100%;
  max-width: 685px;
  height: auto;
  border-radius: 8px;
  object-fit: cover;
}

.hero-text-right {
  font-family: var(--font-unbounded);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
  color: var(--black);
}

.hero-text-right p {
  margin-bottom: 16px;
}

/* What Awaits Section */
.what-awaits {
  background-color: var(--blue-900);
  padding: 64px 0;
}

.what-awaits h2 {
  font-family: var(--font-unbounded);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 48px;
}

.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature {
  text-align: center;
  position: relative;
}

.feature-icon {
  margin: 0 auto 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
}

.feature-icon img {
  width: 100%;
  height: 100%;
}

.feature-icon-professional {
  width: 78px;
  height: 108px;
  left: 50%;
  top: -19px;
  transform: translateX(-50%) rotate(90deg);
}

.feature-icon-space {
  width: 140px;
  height: 81px;
  left: 50%;
  top: -6px;
  transform: translateX(-50%);
}

.feature-icon-respect {
  width: 130px;
  height: 113px;
  left: 50%;
  top: -22px;
  transform: translateX(-50%);
}

.feature h3 {
  font-family: var(--font-unbounded);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 16px;
  position: relative;
  margin-top: 6px;
}

.feature p {
  font-family: var(--font-unbounded);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
  color: var(--black);
  position: relative;
}

/* Meeting Topics Section */
.meeting-topics {
  padding: 72px 0;
}

.meeting-topics h2 {
  font-family: var(--font-unbounded);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 40px;
}

.topics-list {
  display: flex;
  flex-direction: column;
  gap: 23px;
  max-width: 1132px;
  margin-left: 70px;
}

.topics-list li {
  display: flex;
  align-items: flex-start;
  gap: 27px;
  font-family: var(--font-unbounded);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
  color: var(--black);
}

.topics-list .arrow {
  display: inline-block;
  width: 41px;
  height: 30px;
  flex-shrink: 0;
  font-size: 0;
  color: transparent;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 43 30' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M42.414 16.1421C43.195 15.3611 43.195 14.0948 42.414 13.3137L29.686 0.585787C28.905 -0.195262 27.639 -0.195262 26.858 0.585787C26.077 1.36684 26.077 2.63317 26.858 3.41421L38.172 14.7279L26.858 26.0416C26.077 26.8227 26.077 28.089 26.858 28.8701C27.639 29.6511 28.905 29.6511 29.686 28.8701L42.414 16.1421ZM0 16.7279L41 16.7279V12.7279L0 12.7279V16.7279Z' fill='black'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin-top: 3px;
}

/* Registration Section */
.registration {
  background-color: var(--green-600);
  padding: 64px 0;
}

.registration-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.registration-left h2 {
  font-family: var(--font-unbounded);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 48px;
}

.event-details {
  display: flex;
  gap: 29px;
  margin-bottom: 40px;
}

.details-column {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.detail-item h4 {
  font-family: var(--font-unbounded);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 13px;
}

.detail-item p {
  font-family: var(--font-unbounded);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
  color: var(--black);
}

.speakers h4 {
  font-family: var(--font-unbounded);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 24px;
}

.speaker {
  display: flex;
  gap: 24px;
  margin-bottom: 24px;
}

.speaker-photo {
  width: 114px;
  height: 114px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}

.speaker-info h5 {
  font-family: var(--font-unbounded);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.speaker-info p {
  font-family: var(--font-golos);
  font-weight: 500;
  font-size: 18px;
  line-height: 1.5;
  color: var(--text-dark);
}

.registration-right {
  position: relative;
}

.decoration-image {
  margin-bottom: 24px;
}

.hearts-decoration {
  max-width: 385px;
  width: 385px;
  height: 304px;
}

.btn-top {
  position: absolute;
  top: 26px;
  right: 0;
}

.important-card {
  background-color: var(--white);
  border-radius: 32px;
  padding: 40px 44px;
  margin-top: 40px;
}

.important-card strong {
  font-family: var(--font-unbounded);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  display: block;
  margin-bottom: 8px;
}

.important-card p {
  font-family: var(--font-unbounded);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
  color: var(--text-dark);
}

/* Statistics Section */
.statistics {
  padding: 55px 0 72px;
}

.statistics h2 {
  font-family: var(--font-unbounded);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 48px;
}

.stats-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  margin-bottom: 32px;
}

.stats-column h4 {
  font-family: var(--font-unbounded);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
  color: var(--black);
  margin-bottom: 32px;
}

.stats-row {
  display: flex;
  gap: 68px;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.stat-number {
  font-family: var(--font-unbounded);
  font-weight: 400;
  font-size: 48px;
  line-height: 1.2;
  color: var(--black);
  position: relative;
  isolation: isolate;
}

.stat-number::before {
  content: '';
  position: absolute;
  width: 78px;
  height: 108px;
  left: 0;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 78 108' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M39.9829 108H0V38.1683C0 17.0687 17.0287 0 38.017 0H78V69.8317C78.0277 90.9035 60.9989 108 39.9829 108Z' fill='%23FFEBEA'/%3E%3C/svg%3E");
  background-size: 100% 100%;
  z-index: -1;
}

.stat-label {
  font-family: var(--font-unbounded);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
  color: var(--black);
}

.stats-source {
  font-family: var(--font-golos);
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  color: var(--grey-700);
}

.stats-source a {
  text-decoration: underline;
  color: var(--grey-700);
}

.stats-source a:hover {
  opacity: 0.8;
}

/* Podcasts Section */
.podcasts {
  padding: 64px 0;
}

.podcasts h2 {
  font-family: var(--font-unbounded);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: var(--text-dark);
  text-align: center;
  margin-bottom: 32px;
}

.podcast-content {
  display: flex;
  gap: 59px;
  align-items: center;
}

.podcast-image {
  width: 422px;
  height: 422px;
  border-radius: 8px;
  object-fit: cover;
  flex-shrink: 0;
}

.podcast-info h3 {
  font-family: var(--font-unbounded);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.podcast-info > p {
  font-family: var(--font-unbounded);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
  color: var(--text-dark);
  margin-bottom: 32px;
}

.podcast-platforms {
  display: flex;
  gap: 17px;
  align-items: center;
}

.platform {
  display: flex;
  align-items: center;
  gap: 17px;
}

.platform-icon {
  width: 56px;
  height: 56px;
  border-radius: 13px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.platform-icon.yandex {
  background-color: #212121;
}

.platform-icon img {
  width: 50px;
  height: 50px;
  object-fit: cover;
}

.platform span {
  font-family: var(--font-unbounded);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: var(--text-dark);
}

.quotes {
  background-color: var(--violet-900);
  padding: 64px 0;
  overflow: hidden;
}


/* Stories Section */
.stories {
  background-color: var(--red-900);
  padding: 64px 0;
  overflow: hidden;
}

.stories-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}

.stories-header h2 {
  font-family: var(--font-unbounded);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: var(--text-dark);
}

.stories-nav {
  display: flex;
  align-items: center;
  gap: 16px;
}

.stories-nav button {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s ease;
}

.stories-nav button:hover {
  opacity: 0.6;
}

.stories-nav button.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}

.stories-slider {
  overflow: visible;
}

.stories-slider .swiper-slide {
  width: 368px;
  opacity: 0.5;
  transition: opacity 0.3s ease;
}

.stories-slider .swiper-slide-fully-visible {
  opacity: 1;
}

.story-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-image {
  width: 100%;
  height: 440px;
  object-fit: cover;
  border-radius: 8px;
}

.story-card h3 {
  font-family: var(--font-unbounded);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
  color: var(--black);
}

/* Help Section */
.help-section {
  background-color: var(--blue-900);
  padding: 64px 0;
  overflow: hidden;
}

.help-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

.help-text {
  max-width: 815px;
}

.help-text h2 {
  font-family: var(--font-unbounded);
  font-weight: 700;
  font-size: 48px;
  line-height: 1.2;
  color: var(--black);
  margin-bottom: 16px;
}

.help-text > p {
  font-family: var(--font-unbounded);
  font-weight: 400;
  font-size: 24px;
  line-height: 1.5;
  color: var(--black);
  margin-bottom: 32px;
}

.help-section .btn-dark {
  width: 331px;
}

.help-decoration {
  position: absolute;
  right: 0;
  top: 12px;
}

.help-hearts {
  width: 458px;
  height: 362px;
}

/* Footer */
.footer {
  padding: 53px 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.footer-logo img {
  height: 62px;
  width: auto;
}

.footer-contacts {
  display: flex;
  gap: 32px;
}

.contact-item {
  display: flex;
  flex-direction: column;
}

.phone {
  font-family: var(--font-unbounded);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  color: var(--text-dark);
}

.phone-label {
  font-family: var(--font-golos);
  font-weight: 500;
  font-size: 14px;
  line-height: 35px;
  color: var(--text-dark);
}

.footer-social {
  display: flex;
  gap: 22px;
  align-items: center;
}

.social-link {
  display: block;
  transition: opacity 0.3s ease;
}

.social-link:hover {
  opacity: 0.7;
}

.social-link img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Responsive Design */

/* --- Tablet (≤1200px) --- */
@media (max-width: 1200px) {
  .hero-content {
    gap: 40px;
  }

  .hero-left h1 {
    font-size: 56px;
    line-height: 64px;
  }

  .nav a {
    font-size: 16px;
  }

  .nav {
    gap: 24px;
  }
}

/* --- Tablet narrow (≤992px) --- */
@media (max-width: 992px) {
  .header-content {
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-group {
    width: 100%;
    justify-content: center;
    margin-top: 8px;
    flex-wrap: wrap;
    gap: 16px;
  }

  .nav {
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
  }

  .hero-content {
    grid-template-columns: 1fr;
  }

  .hero .btn-primary {
    width: 100%;
  }

  .features {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .registration-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .btn-top {
    position: static;
    margin-bottom: 24px;
  }

  .btn-dark {
    width: 100%;
    max-width: 293px;
  }

  .hearts-decoration {
    max-width: 280px;
    height: auto;
  }

  .decoration-image {
    display: none;
  }

  .stats-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .podcast-content {
    flex-direction: column;
  }

  .podcast-image {
    width: 100%;
    max-width: 422px;
  }

  .help-decoration {
    position: static;
  }

  .help-hearts {
    width: 300px;
    height: auto;
  }

  .help-content {
    align-items: center;
  }

  .footer-content {
    flex-direction: column;
    gap: 32px;
    align-items: center;
  }

  .footer-contacts {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
  }

  .footer-social {
    justify-content: center;
  }
}

/* --- Mobile (≤768px) --- */
@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }

  /* Typography scaling */
  h2 {
    font-size: 28px !important;
    line-height: 1.3 !important;
  }

  .hero-left h1 {
    font-size: 36px;
    line-height: 42px;
  }

  .hero-description,
  .hero-text-right,
  .feature p,
  .topics-list li,
  .detail-item p,
  .speaker-info h5,
  .stat-label,
  .podcast-info > p,
  .story-card h3,
  .help-text > p,
  .important-card p {
    font-size: 16px;
  }

  .feature h3,
  .detail-item h4,
  .speakers h4,
  .podcast-info h3,
  .platform span,
  .phone {
    font-size: 18px;
  }

  .stat-number {
    font-size: 32px;
  }

  .nav a {
    font-size: 14px;
    line-height: 32px;
  }

  /* Header */
  .header {
    padding: 12px 0;
  }

  .logos {
    gap: 12px;
  }

  .logo-otk {
    height: 36px;
  }

  .logo-moscow {
    height: 40px;
  }

  .header .btn-primary {
    display: none;
  }

  /* Hero */
  .hero {
    padding: 24px 0 48px;
  }

  .hero-description {
    font-size: 16px;
    margin-bottom: 24px;
  }

  .hero .btn-primary {
    width: 100%;
    max-width: 100%;
    height: 56px;
  }

  /* What Awaits */
  .what-awaits {
    padding: 40px 0;
  }

  .what-awaits h2 {
    margin-bottom: 32px;
  }

  .feature-icon-professional {
    width: 60px;
    height: 83px;
  }

  .feature-icon-space {
    width: 100px;
    height: 58px;
  }

  .feature-icon-respect {
    width: 90px;
    height: 78px;
  }

  /* Meeting Topics */
  .meeting-topics {
    padding: 40px 0;
  }

  .topics-list {
    margin-left: 0;
    gap: 16px;
  }

  .topics-list li {
    gap: 16px;
  }

  .topics-list .arrow {
    width: 28px;
    height: 20px;
    margin-top: 2px;
  }

  /* Registration */
  .registration {
    padding: 40px 0;
  }

  .registration-left h2 {
    margin-bottom: 32px;
  }

  .btn-dark {
    max-width: 100%;
    width: 100%;
    height: 56px;
  }

  .help-section .btn-dark {
    width: 100%;
    max-width: 100%;
  }

  .important-card {
    padding: 24px;
    border-radius: 20px;
  }

  .speaker-photo {
    width: 80px;
    height: 80px;
  }

  .speaker {
    gap: 16px;
  }

  .event-details {
    flex-direction: column;
    gap: 16px;
  }

  /* Statistics */
  .statistics {
    padding: 40px 0;
  }

  .stats-row {
    flex-direction: column;
    gap: 24px;
  }

  .stat-number::before {
    width: 60px;
    height: 83px;
  }

  /* Podcasts */
  .podcasts {
    padding: 40px 0;
  }

  .podcast-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1;
  }

  .podcast-info > p {
    margin-bottom: 24px;
  }

  .podcast-platforms {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }

  .platform-icon {
    width: 44px;
    height: 44px;
  }

  .platform-icon img {
    width: 40px;
    height: 40px;
  }

  /* Stories */
  .stories {
    padding: 40px 0;
  }

  .stories-header {
    flex-direction: column;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 24px;
  }

  .stories-slider .swiper-slide {
    width: 280px;
  }

  .story-image {
    height: 300px;
  }

  .story-card .btn-primary {
    min-width: auto;
    width: 100%;
    height: 48px;
    font-size: 16px;
  }

  .stories-nav button svg {
    width: 32px;
    height: 22px;
  }

  /* Help */
  .help-section {
    padding: 40px 0;
  }

  .help-content {
    flex-direction: column;
    text-align: left;
  }

  .help-decoration {
    display: none;
  }

  .help-text > p {
    margin-bottom: 24px;
  }

  /* Footer */
  .footer {
    padding: 32px 0;
  }

  .footer-logo img {
    height: 48px;
  }

  .phone {
    font-size: 18px;
  }

  .phone-label {
    font-size: 13px;
    line-height: 1.4;
  }

  .contact-item {
    text-align: left;
    align-items: flex-start;
  }

  .social-link img {
    width: 36px;
    height: 36px;
  }
}

/* --- Small mobile (≤480px) --- */
@media (max-width: 480px) {
  h2 {
    font-size: 24px !important;
  }

  .hero-left h1 {
    font-size: 28px;
    line-height: 34px;
  }

  /* Header */
  .logos {
    gap: 8px;
  }

  .logo-otk {
    height: 28px;
  }

  .logo-moscow {
    height: 32px;
  }

  .nav-group {
    gap: 10px;
    align-items: center;
  }

  .nav {
    gap: 12px;
  }

  .nav a {
    font-size: 13px;
  }

  .header .btn-primary {
    display: none;
  }

  /* Buttons full width */
  .btn {
    font-size: 16px;
  }

  .btn-primary {
    min-width: auto;
    width: 100%;
    height: 52px;
  }

  .speaker-photo {
    width: 72px;
    height: 72px;
  }

  /* Topics */
  .topics-list li {
    font-size: 14px;
  }

  .topics-list .arrow {
    width: 24px;
    height: 17px;
  }

  /* Stories */
  .stories-slider .swiper-slide {
    width: 240px;
  }

  .story-image {
    height: 240px;
  }

  .story-card h3 {
    font-size: 14px;
  }

  /* Stats */
  .stat-number {
    font-size: 28px;
  }

  .stat-number::before {
    width: 50px;
    height: 69px;
  }

  .stat-label {
    font-size: 14px;
  }

  /* Important card */
  .important-card {
    padding: 20px;
  }

  .important-card p {
    font-size: 14px !important;
  }

  /* Podcast */
  .podcast-info h3 {
    font-size: 16px;
  }

  .podcast-info > p {
    font-size: 14px;
  }

  .platform span {
    font-size: 14px;
  }

  /* Footer */
  .footer-content {
    align-items: flex-start;
  }

  .contact-item {
    text-align: left;
  }

  .phone {
    font-size: 16px;
  }
}
