/* style/fishing-games-tips-strategies.css */
/* body đã padding-top: var(--header-offset) từ shared.css; trang này không cần thêm padding-top cho main hoặc hero section nữa để tránh double padding. */
.page-fishing-games-tips-strategies {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333333; /* Mặc định chữ màu tối trên nền sáng */
  background-color: var(--bg-color, #ffffff); /* Kế thừa từ body hoặc mặc định trắng */
}

.page-fishing-games-tips-strategies__hero-section {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Chỉ một khoảng cách nhỏ để không bị che bởi header */
  background-color: #f8f8f8;
}

.page-fishing-games-tips-strategies__hero-image-wrapper {
  width: 100%;
  max-width: 1200px;
  margin-bottom: 30px;
}

.page-fishing-games-tips-strategies__hero-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  object-fit: cover;
}

.page-fishing-games-tips-strategies__hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
}

.page-fishing-games-tips-strategies__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Responsive font size */
  color: #26A9E0;
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-fishing-games-tips-strategies__subtitle {
  font-size: 1.2rem;
  color: #555555;
  margin-bottom: 30px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-fishing-games-tips-strategies__cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.page-fishing-games-tips-strategies__btn-primary,
.page-fishing-games-tips-strategies__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1rem;
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
  box-sizing: border-box;
  max-width: 100%;
  white-space: normal;
  word-wrap: break-word;
}

.page-fishing-games-tips-strategies__btn-primary {
  background-color: #26A9E0;
  color: #ffffff;
  border: 2px solid #26A9E0;
}

.page-fishing-games-tips-strategies__btn-primary:hover {
  background-color: #1e87c0;
  border-color: #1e87c0;
}

.page-fishing-games-tips-strategies__btn-secondary {
  background-color: #ffffff;
  color: #26A9E0;
  border: 2px solid #26A9E0;
}

.page-fishing-games-tips-strategies__btn-secondary:hover {
  background-color: #f0f8ff;
  color: #1e87c0;
  border-color: #1e87c0;
}

.page-fishing-games-tips-strategies__section {
  padding: 60px 20px;
  background-color: #ffffff;
}

.page-fishing-games-tips-strategies__dark-section {
  background-color: #26A9E0;
  color: #ffffff;
}

.page-fishing-games-tips-strategies__dark-section .page-fishing-games-tips-strategies__section-title,
.page-fishing-games-tips-strategies__dark-section h3 {
  color: #ffffff;
}

.page-fishing-games-tips-strategies__container {
  max-width: 1200px;
  margin: 0 auto;
}

.page-fishing-games-tips-strategies__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  color: #26A9E0;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
}

.page-fishing-games-tips-strategies__content-image {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
  margin: 30px auto;
  object-fit: cover;
}

.page-fishing-games-tips-strategies__list {
  list-style: disc inside;
  margin-bottom: 30px;
  padding-left: 20px;
}

.page-fishing-games-tips-strategies__list li {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.page-fishing-games-tips-strategies__card-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.page-fishing-games-tips-strategies__card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  padding: 25px;
  text-align: center;
  transition: transform 0.3s ease;
  color: #333333;
}

.page-fishing-games-tips-strategies__dark-section .page-fishing-games-tips-strategies__card {
  background-color: rgba(255, 255, 255, 0.1);
  color: #ffffff;
}

.page-fishing-games-tips-strategies__card:hover {
  transform: translateY(-10px);
}

.page-fishing-games-tips-strategies__card-image {
  width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  display: block;
}

.page-fishing-games-tips-strategies__card-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #26A9E0;
}

.page-fishing-games-tips-strategies__dark-section .page-fishing-games-tips-strategies__card-title {
  color: #ffffff;
}

.page-fishing-games-tips-strategies__text-block {
  font-size: 1.1rem;
  margin-top: 30px;
  text-align: center;
}

.page-fishing-games-tips-strategies__faq-list {
  margin-top: 30px;
}

.page-fishing-games-tips-strategies__faq-item {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  margin-bottom: 15px;
  overflow: hidden;
}

.page-fishing-games-tips-strategies__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 25px;
  font-size: 1.2rem;
  font-weight: bold;
  color: #26A9E0;
  cursor: pointer;
  background-color: #ffffff;
  border-bottom: 1px solid #e0e0e0;
}

.page-fishing-games-tips-strategies__faq-item[open] .page-fishing-games-tips-strategies__faq-question {
  border-bottom: 1px solid #e0e0e0;
}

.page-fishing-games-tips-strategies__faq-question::-webkit-details-marker {
  display: none;
}

.page-fishing-games-tips-strategies__faq-question::marker {
  display: none;
}

.page-fishing-games-tips-strategies__faq-toggle {
  font-size: 1.5rem;
  line-height: 1;
  color: #26A9E0;
  transition: transform 0.3s ease;
}

.page-fishing-games-tips-strategies__faq-item[open] .page-fishing-games-tips-strategies__faq-toggle {
  transform: rotate(45deg);
}

.page-fishing-games-tips-strategies__faq-answer {
  padding: 20px 25px;
  font-size: 1.05rem;
  color: #555555;
}

/* Responsive Styles */
@media (max-width: 992px) {
  .page-fishing-games-tips-strategies__main-title {
    font-size: clamp(2rem, 5vw, 3rem);
  }

  .page-fishing-games-tips-strategies__subtitle {
    font-size: 1.1rem;
  }

  .page-fishing-games-tips-strategies__card-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  }
}

@media (max-width: 768px) {
  .page-fishing-games-tips-strategies__hero-section,
  .page-fishing-games-tips-strategies__section {
    padding: 40px 15px;
  }

  .page-fishing-games-tips-strategies__main-title {
    font-size: clamp(1.8rem, 6vw, 2.5rem);
  }

  .page-fishing-games-tips-strategies__subtitle {
    font-size: 1rem;
  }

  .page-fishing-games-tips-strategies__cta-buttons {
    flex-direction: column;
    gap: 15px;
  }

  .page-fishing-games-tips-strategies__btn-primary,
  .page-fishing-games-tips-strategies__btn-secondary {
    width: 100% !important;
    max-width: 100% !important;
    padding: 12px 20px;
    font-size: 1rem;
    white-space: normal !important;
    word-wrap: break-word !important;
  }

  .page-fishing-games-tips-strategies__section-title {
    font-size: clamp(1.6rem, 5vw, 2.2rem);
    margin-bottom: 30px;
  }

  .page-fishing-games-tips-strategies__list,
  .page-fishing-games-tips-strategies__faq-answer {
    font-size: 0.95rem;
  }

  .page-fishing-games-tips-strategies__faq-question {
    font-size: 1.05rem;
    padding: 15px 20px;
  }

  /* Responsive images */
  .page-fishing-games-tips-strategies img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
    display: block !important;
  }

  .page-fishing-games-tips-strategies__hero-image-wrapper,
  .page-fishing-games-tips-strategies__container,
  .page-fishing-games-tips-strategies__card-grid,
  .page-fishing-games-tips-strategies__faq-list {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
    overflow: hidden !important;
  }
  
  .page-fishing-games-tips-strategies__card-image {
    height: auto !important; /* Allow height to adjust for smaller screens */
  }

  .page-fishing-games-tips-strategies__hero-section {
    padding-top: 10px !important; /* Ensure small top padding */
  }
}