/* Page: Tin tức - kèo bóng đá tv */

.page-tin-tuc {
  color: #333333;
  background: #F5F7FA;
  font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
}

/* HERO Section */
.page-tin-tuc__hero-section {
  padding-top: 10px;
  padding-bottom: 12px;
}

.page-tin-tuc__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto 16px;
}

.page-tin-tuc__hero-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 17/5;
  object-fit: cover;
  border-radius: 12px;
}

.page-tin-tuc__hero-content {
  text-align: center;
  padding: 0 16px;
}

.page-tin-tuc__main-title {
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.5px;
  color: #E53935;
  max-width: 800px;
  margin: 0 auto 8px;
}

.page-tin-tuc__hero-description {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #333333;
  max-width: 680px;
  margin: 0 auto;
}

/* Logo Grid */
.page-tin-tuc__logo-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px 16px;
  justify-items: center;
  max-width: 1200px;
  margin: 16px auto 32px;
  padding: 0 16px;
}

.page-tin-tuc__logo-item {
  background: #FFFFFF;
  border: 1px solid #E0E0E0;
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  width: 100%;
  max-width: 280px;
  box-sizing: border-box;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.page-tin-tuc__logo-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(229, 57, 53, 0.15);
}

.page-tin-tuc__logo-image {
  display: block;
  width: 100%;
  max-width: 200px;
  height: auto;
  aspect-ratio: 2/1;
  object-fit: contain;
}

.page-tin-tuc__logo-cta {
  display: inline-block;
  padding: 10px 22px;
  border-radius: 999px;
  background: linear-gradient(180deg, #FF5A4F 0%, #E53935 100%);
  color: #FFFFFF;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.page-tin-tuc__logo-cta:hover {
  opacity: 0.9;
}

.page-tin-tuc__logo-item:nth-child(5) {
  grid-column: 2;
}

.page-tin-tuc__logo-item:nth-child(6) {
  grid-column: 3;
}

/* Guide Section */
.page-tin-tuc__guide-section {
  background: #FFFFFF;
  border-top: 1px solid #E0E0E0;
}

.page-tin-tuc__guide-inner {
  max-width: 1000px;
  margin: 0 auto;
  padding: 16px 16px 48px;
}

.page-tin-tuc__guide-title {
  text-align: center;
  color: #E53935;
  font-weight: 800;
  letter-spacing: -0.3px;
  margin-bottom: 24px;
}

.page-tin-tuc__guide-figure {
  margin: 0;
}

.page-tin-tuc__guide-figure img {
  display: block;
  width: 100%;
  max-width: 800px;
  height: auto;
  aspect-ratio: 2/1;
  object-fit: cover;
  border-radius: 12px;
  margin: 0 auto;
}

.page-tin-tuc__guide-figure figcaption {
  text-align: center;
  font-size: 0.9rem;
  color: #666666;
  margin-top: 12px;
}

/* Tablet & Mobile */
@media (max-width: 1024px) {
  .page-tin-tuc__logo-grid {
    gap: 16px;
  }
}

@media (max-width: 768px) {
  .page-tin-tuc__hero-section {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .page-tin-tuc__hero-image {
    aspect-ratio: 2/1;
  }

  .page-tin-tuc__hero-content {
    text-align: left;
    padding: 0 12px;
  }

  .page-tin-tuc__logo-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    padding: 0 12px;
  }

  .page-tin-tuc__logo-item:nth-child(5),
  .page-tin-tuc__logo-item:nth-child(6) {
    grid-column: auto;
  }

  .page-tin-tuc__logo-cta,
  .page-tin-tuc__logo-item a {
    max-width: 100%;
    box-sizing: border-box;
    white-space: normal;
    word-wrap: break-word;
    font-size: 0.85rem;
    padding: 10px 14px;
  }

  .page-tin-tuc__logo-item {
    max-width: 180px;
    padding: 12px;
  }

  .page-tin-tuc__guide-inner {
    padding: 12px 12px 36px;
  }

  .page-tin-tuc__guide-title {
    font-size: 1.25rem;
  }

  .page-tin-tuc__guide-figure img {
    width: 100%;
    max-width: 100%;
    aspect-ratio: 2/1;
  }

  /* Mobile: constrain all content images in .page-tin-tuc */
  .page-tin-tuc img {
    max-width: 100% !important;
    height: auto !important;
  }

  .page-tin-tuc {
    max-width: 100%;
    overflow-x: hidden;
  }
}