/* ===== Flatsome: Hero Banner + Logo Grid + Guide ===== */
.page-the-thao {
  color: #333333;
  background: #F5F7FA;
  font-family: 'Be Vietnam Pro', system-ui, -apple-system, sans-serif;
}

/* ---------- Hero Section ---------- */
.page-the-thao__hero-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 100%;
  padding: 10px 16px 24px;
  box-sizing: border-box;
  background: #FFFFFF;
}
.page-the-thao__hero-image-wrap {
  width: 100%;
  max-width: 1020px;
  overflow: hidden;
  border-radius: 12px;
}
.page-the-thao__hero-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1020 / 300;
  object-fit: cover;
}
.page-the-thao__hero-content {
  width: 100%;
  max-width: 900px;
  padding: 20px 8px 8px;
  text-align: left;
  box-sizing: border-box;
}
.page-the-thao__hero-title {
  font-size: clamp(1.2rem, 2.6vw, 1.6rem);
  font-weight: 800;
  line-height: 1.4;
  color: #E53935;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}
.page-the-thao__hero-desc {
  font-size: 1rem;
  line-height: 1.7;
  color: #333333;
  max-width: 720px;
  margin: 0 0 20px;
}
.page-the-thao__hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  max-width: 100%;
  box-sizing: border-box;
  overflow: hidden;
}
.page-the-thao__btn {
  display: inline-block;
  border-radius: 999px;
  padding: 12px 28px;
  font-weight: 700;
  font-size: 0.95rem;
  text-decoration: none;
  border: 2px solid transparent;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}
.page-the-thao__btn--primary {
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #FFFFFF;
}
.page-the-thao__btn--primary:hover {
  transform: scale(1.02);
  box-shadow: 0 6px 16px rgba(229, 57, 53, 0.35);
}
.page-the-thao__btn--secondary {
  background: #FFFFFF;
  color: #E53935;
  border-color: #E53935;
}
.page-the-thao__btn--secondary:hover {
  background: #FFF0EF;
}

/* ---------- Logo Grid 4 + 2 ---------- */
.page-the-thao__dogovor-section {
  background: #FFFFFF;
  padding: 32px 16px;
}
.page-the-thao__dogovor-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px 16px;
  justify-items: center;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
.page-the-thao__dogovor-logo-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 280px;
}
.page-the-thao__dogovor-logo-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 400 / 200;
  object-fit: contain;
  background: #F5F7FA;
  border-radius: 8px;
  border: 1px solid #E0E0E0;
}
.page-the-thao__dogovor-cta {
  padding: 8px 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  border: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
  text-align: center;
}
.page-the-thao__dogovor-cta:hover {
  transform: scale(1.03);
  box-shadow: 0 4px 12px rgba(229, 57, 53, 0.3);
}
/* 2 additional items centered on the second row */
.page-the-thao__dogovor-logo-item:nth-child(5) {
  grid-column: 2;
}
.page-the-thao__dogovor-logo-item:nth-child(6) {
  grid-column: 3;
}

/* ---------- Guide Section ---------- */
.page-the-thao__guide-section {
  background: #F5F7FA;
  padding: 40px 16px 56px;
}
.page-the-thao__guide-inner {
  max-width: 1000px;
  margin: 0 auto;
  width: 100%;
  box-sizing: border-box;
}
.page-the-thao__guide-title {
  text-align: center;
  color: #E53935;
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.4;
  margin: 0 0 12px;
}
.page-the-thao__guide-intro {
  text-align: center;
  color: #333333;
  font-size: 1rem;
  line-height: 1.7;
  max-width: 640px;
  margin: 0 auto 36px;
}
.page-the-thao__guide-block {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 24px;
}
.page-the-thao__guide-subtitle {
  color: #E53935;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  margin: 0 0 16px;
}
.page-the-thao__guide-figure {
  margin: 0 0 16px;
  width: 100%;
}
.page-the-thao__guide-figure img {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  aspect-ratio: 800 / 400;
  object-fit: cover;
  border-radius: 8px;
}
.page-the-thao__guide-block p {
  color: #333333;
  font-size: 1rem;
  line-height: 1.8;
  margin: 0;
}

/* ================= RESPONSIVE (<= 768px) ================= */
@media (max-width: 768px) {
  .page-the-thao {
    overflow-x: hidden;
  }
  .page-the-thao__hero-section {
    padding: 8px 8px 20px;
  }
  .page-the-thao__hero-image {
    aspect-ratio: 2 / 1;
  }
  .page-the-thao__hero-title {
    font-size: clamp(1.05rem, 4vw, 1.3rem);
  }
  .page-the-thao__hero-desc {
    font-size: 0.95rem;
  }
  .page-the-thao__hero-actions {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }
  .page-the-thao__btn {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
  }

  .page-the-thao__dogovor-section {
    padding: 24px 8px;
  }
  .page-the-thao__dogovor-inner {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .page-the-thao__dogovor-logo-item:nth-child(5),
  .page-the-thao__dogovor-logo-item:nth-child(6) {
    grid-column: auto;
  }
  .page-the-thao__dogovor-logo-img {
    aspect-ratio: 400 / 200;
  }
  .page-the-thao__dogovor-cta {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
  }

  .page-the-thao__guide-section {
    padding: 28px 8px 40px;
  }
  .page-the-thao__guide-title {
    font-size: 1.3rem;
  }
  .page-the-thao__guide-intro {
    font-size: 0.9rem;
  }
  .page-the-thao__guide-block {
    padding: 16px;
  }
  .page-the-thao__guide-subtitle {
    font-size: 1.1rem;
  }
  .page-the-thao__guide-figure,
  .page-the-thao__guide-figure img {
    max-width: 100%;
  }

  /* Prevent horizontal overflow */
  .page-the-thao img {
    max-width: 100% !important;
    height: auto !important;
  }
}

/* ================= RESPONSIVE (<= 1024px) ================= */
@media (max-width: 1024px) {
  .page-the-thao__dogovor-inner {
    grid-template-columns: repeat(3, 1fr);
  }
  .page-the-thao__dogovor-logo-item:nth-child(5),
  .page-the-thao__dogovor-logo-item:nth-child(6) {
    grid-column: auto;
  }
}