/* Base Styles */
.page-blog-fishing-games-tips {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  padding-bottom: 50px;
}

.page-blog-fishing-games-tips__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section */
.page-blog-fishing-games-tips__hero-section {
  position: relative;
  padding-top: 10px; /* Small top padding as body handles header offset */
  text-align: center;
  color: #F2FFF6; /* Text Main */
  margin-bottom: 40px;
}

.page-blog-fishing-games-tips__hero-image-wrapper {
  width: 100%;
  overflow: hidden;
  position: relative;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.page-blog-fishing-games-tips__hero-image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-fishing-games-tips__hero-content {
  padding: 30px 20px;
  text-align: center;
  max-width: 900px;
  margin: 20px auto 0;
  background: linear-gradient(180deg, #11271B 0%, #0A4B2C 100%); /* Card BG to Deep Green */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  border: 1px solid #2E7A4E; /* Border */
}

.page-blog-fishing-games-tips__main-title {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  margin-bottom: 15px;
  line-height: 1.2;
  color: #F2C14E; /* Gold */
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
}

.page-blog-fishing-games-tips__intro-text {
  font-size: clamp(16px, 2vw, 19px);
  margin-bottom: 30px;
  color: #A7D9B8; /* Text Secondary */
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

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

.page-blog-fishing-games-tips__btn-primary,
.page-blog-fishing-games-tips__btn-secondary,
.page-blog-fishing-games-tips__btn-text {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 700;
  font-size: 17px;
  transition: all 0.3s ease;
  cursor: pointer;
  white-space: normal; /* Allow text wrapping */
  word-wrap: break-word; /* Allow text breaking */
  box-sizing: border-box;
  max-width: 100%;
}

.page-blog-fishing-games-tips__btn-primary {
  background: linear-gradient(180deg, #2AD16F 0%, #13994A 100%); /* Button gradient */
  color: #ffffff;
  border: none;
  box-shadow: 0 4px 10px rgba(17, 168, 78, 0.4);
}

.page-blog-fishing-games-tips__btn-primary:hover {
  background: linear-gradient(180deg, #13994A 0%, #2AD16F 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(17, 168, 78, 0.6);
}

.page-blog-fishing-games-tips__btn-secondary {
  background: #11271B; /* Card BG */
  color: #F2FFF6; /* Text Main */
  border: 2px solid #2E7A4E; /* Border */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.page-blog-fishing-games-tips__btn-secondary:hover {
  background: #0A4B2C; /* Deep Green */
  border-color: #57E38D; /* Glow */
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
}

.page-blog-fishing-games-tips__btn-text {
  background: transparent;
  color: #57E38D; /* Glow */
  border: 1px solid #57E38D;
  padding: 8px 15px;
  font-size: 15px;
  margin-top: 10px;
}

.page-blog-fishing-games-tips__btn-text:hover {
  background: rgba(87, 227, 141, 0.1);
  color: #F2FFF6;
}

/* Content Section */
.page-blog-fishing-games-tips__content-section {
  padding: 50px 0;
  background-color: #08160F; /* Background */
  color: #F2FFF6; /* Text Main */
}

.page-blog-fishing-games-tips__article-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
  background: #11271B; /* Card BG */
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
  border: 1px solid #2E7A4E; /* Border */
  padding-top: 30px;
  padding-bottom: 30px;
}

.page-blog-fishing-games-tips__section-title {
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 700;
  color: #F2C14E; /* Gold */
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
  position: relative;
}

.page-blog-fishing-games-tips__section-title::after {
  content: '';
  display: block;
  width: 80px;
  height: 3px;
  background: #57E38D; /* Glow */
  margin: 10px auto 0;
  border-radius: 2px;
}

.page-blog-fishing-games-tips__sub-title {
  font-size: clamp(20px, 2.5vw, 28px);
  font-weight: 600;
  color: #2AD16F; /* Button gradient start */
  margin-top: 30px;
  margin-bottom: 15px;
  padding-left: 10px;
  border-left: 4px solid #F2C14E; /* Gold */
}

.page-blog-fishing-games-tips p {
  margin-bottom: 15px;
  font-size: 17px;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-fishing-games-tips__list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 20px;
}

.page-blog-fishing-games-tips__list li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 17px;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-fishing-games-tips__list li::before {
  content: '▶'; /* Custom bullet point */
  position: absolute;
  left: 0;
  color: #57E38D; /* Glow */
  font-size: 14px;
  line-height: 1.6;
}

.page-blog-fishing-games-tips__image-figure {
  margin: 30px auto;
  text-align: center;
  max-width: 100%;
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  border: 1px solid #2E7A4E;
}

.page-blog-fishing-games-tips__content-image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 8px;
}

.page-blog-fishing-games-tips__image-figure figcaption {
  font-size: 15px;
  color: #A7D9B8; /* Text Secondary */
  padding: 10px 15px;
  background-color: #0A4B2C; /* Deep Green */
  border-top: 1px solid #1E3A2A; /* Divider */
}

/* Benefits Grid */
.page-blog-fishing-games-tips__benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
  margin-top: 40px;
  padding: 0 20px;
}

.page-blog-fishing-games-tips__benefit-card {
  background: #11271B; /* Card BG */
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
  border: 1px solid #2E7A4E; /* Border */
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-blog-fishing-games-tips__benefit-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.5);
}

.page-blog-fishing-games-tips__card-image {
  max-width: 100%;
  height: 200px; /* Fixed height for consistency */
  object-fit: cover;
  border-radius: 8px;
  margin-bottom: 20px;
  border: 1px solid #1E3A2A; /* Divider */
}

.page-blog-fishing-games-tips__card-title {
  font-size: 22px;
  font-weight: 600;
  color: #F2C14E; /* Gold */
  margin-bottom: 10px;
}

.page-blog-fishing-games-tips__benefit-card p {
  font-size: 16px;
  color: #A7D9B8; /* Text Secondary */
}

/* FAQ Section */
.page-blog-fishing-games-tips__faq-list {
  margin-top: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 20px;
}

details.page-blog-fishing-games-tips__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid #2E7A4E; /* Border */
  overflow: hidden;
  background: #11271B; /* Card BG */
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

details.page-blog-fishing-games-tips__faq-item summary.page-blog-fishing-games-tips__faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 20px;
  cursor: pointer;
  user-select: none;
  list-style: none;
  transition: background-color 0.3s ease;
  color: #F2FFF6; /* Text Main */
}

details.page-blog-fishing-games-tips__faq-item summary.page-blog-fishing-games-tips__faq-question::-webkit-details-marker {
  display: none;
}

details.page-blog-fishing-games-tips__faq-item summary.page-blog-fishing-games-tips__faq-question:hover {
  background: #0A4B2C; /* Deep Green */
}

.page-blog-fishing-games-tips__faq-qtext {
  flex: 1;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #F2C14E; /* Gold */
}

.page-blog-fishing-games-tips__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #57E38D; /* Glow */
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-blog-fishing-games-tips__faq-item .page-blog-fishing-games-tips__faq-answer {
  padding: 0 20px 20px;
  background: #0A4B2C; /* Deep Green */
  border-radius: 0 0 5px 5px;
  color: #A7D9B8; /* Text Secondary */
}

.page-blog-fishing-games-tips__faq-answer p {
  margin-bottom: 10px;
}

/* Call to Action Section */
.page-blog-fishing-games-tips__call-to-action {
  background: linear-gradient(90deg, #11A84E 0%, #22C768 100%); /* Main to Auxiliary */
  padding: 60px 0;
  text-align: center;
  color: #ffffff;
  margin-top: 50px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
  margin-left: 20px;
  margin-right: 20px;
}

.page-blog-fishing-games-tips__call-to-action .page-blog-fishing-games-tips__section-title {
  color: #ffffff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.2);
}

.page-blog-fishing-games-tips__call-to-action .page-blog-fishing-games-tips__section-title::after {
  background: #F2C14E; /* Gold */
}

.page-blog-fishing-games-tips__call-to-action p {
  font-size: 18px;
  max-width: 800px;
  margin: 0 auto 30px;
  color: #f0f0f0;
}

/* General Image Responsiveness */
.page-blog-fishing-games-tips img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Media Queries */
@media (max-width: 1024px) {
  .page-blog-fishing-games-tips__hero-content {
    padding: 25px 15px;
  }

  .page-blog-fishing-games-tips__main-title {
    font-size: clamp(26px, 4.5vw, 42px);
  }

  .page-blog-fishing-games-tips__intro-text {
    font-size: clamp(15px, 2.2vw, 18px);
  }

  .page-blog-fishing-games-tips__cta-buttons {
    gap: 15px;
  }

  .page-blog-fishing-games-tips__btn-primary,
  .page-blog-fishing-games-tips__btn-secondary {
    padding: 12px 25px;
    font-size: 16px;
  }

  .page-blog-fishing-games-tips__article-body {
    padding: 25px;
  }

  .page-blog-fishing-games-tips__section-title {
    font-size: clamp(22px, 3.5vw, 32px);
  }

  .page-blog-fishing-games-tips__sub-title {
    font-size: clamp(18px, 2.8vw, 24px);
  }

  .page-blog-fishing-games-tips p,
  .page-blog-fishing-games-tips__list li {
    font-size: 16px;
  }

  .page-blog-fishing-games-tips__benefits-grid {
    gap: 20px;
  }

  .page-blog-fishing-games-tips__card-title {
    font-size: 20px;
  }

  .page-blog-fishing-games-tips__faq-qtext {
    font-size: 17px;
  }
}

@media (max-width: 849px) {
  .page-blog-fishing-games-tips__hero-image {
    object-fit: contain !important; /* Prevent cropping on smaller screens */
    aspect-ratio: unset !important;
    height: auto !important;
  }
}

@media (max-width: 768px) {
  /* Hero Section */
  .page-blog-fishing-games-tips__hero-section {
    padding-top: 10px; /* Consistent small top padding */
    margin-bottom: 30px;
  }

  .page-blog-fishing-games-tips__hero-content {
    padding: 20px 15px;
    margin-top: 15px;
  }

  .page-blog-fishing-games-tips__main-title {
    font-size: clamp(24px, 7vw, 36px); /* Adjust clamp for mobile */
    margin-bottom: 10px;
  }

  .page-blog-fishing-games-tips__intro-text {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .page-blog-fishing-games-tips__cta-buttons {
    flex-direction: column; /* Stack buttons vertically */
    gap: 10px;
    padding-left: 15px;
    padding-right: 15px;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow: hidden;
  }

  .page-blog-fishing-games-tips__btn-primary,
  .page-blog-fishing-games-tips__btn-secondary,
  .page-blog-fishing-games-tips__btn-text,
  .page-blog-fishing-games-tips a[class*="button"],
  .page-blog-fishing-games-tips a[class*="btn"] {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding: 12px 15px;
    font-size: 16px;
  }

  /* Content Section */
  .page-blog-fishing-games-tips__content-section {
    padding: 30px 0;
  }

  .page-blog-fishing-games-tips__article-body {
    padding: 20px 15px;
    border-radius: 8px;
  }

  .page-blog-fishing-games-tips__section-title {
    font-size: clamp(20px, 6vw, 28px);
    margin-top: 30px;
    margin-bottom: 20px;
  }

  .page-blog-fishing-games-tips__sub-title {
    font-size: clamp(17px, 5vw, 22px);
    margin-top: 25px;
    margin-bottom: 10px;
    padding-left: 8px;
  }

  .page-blog-fishing-games-tips p,
  .page-blog-fishing-games-tips__list li {
    font-size: 15px;
    line-height: 1.5;
  }

  .page-blog-fishing-games-tips__list li {
    padding-left: 20px;
  }

  .page-blog-fishing-games-tips__image-figure {
    margin: 20px auto;
    border-radius: 8px;
  }

  .page-blog-fishing-games-tips__content-image {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }

  /* Benefits Grid */
  .page-blog-fishing-games-tips__benefits-grid {
    grid-template-columns: 1fr; /* Single column layout */
    gap: 20px;
    margin-top: 30px;
    padding: 0 15px;
  }

  .page-blog-fishing-games-tips__benefit-card {
    padding: 20px;
    border-radius: 8px;
  }

  .page-blog-fishing-games-tips__card-image {
    height: 180px;
    margin-bottom: 15px;
  }

  .page-blog-fishing-games-tips__card-title {
    font-size: 20px;
  }

  .page-blog-fishing-games-tips__benefit-card p {
    font-size: 15px;
  }

  /* FAQ Section */
  .page-blog-fishing-games-tips__faq-list {
    margin-top: 30px;
    padding: 0 15px;
  }

  details.page-blog-fishing-games-tips__faq-item summary.page-blog-fishing-games-tips__faq-question {
    padding: 15px;
  }

  .page-blog-fishing-games-tips__faq-qtext {
    font-size: 16px;
  }

  .page-blog-fishing-games-tips__faq-toggle {
    font-size: 20px;
    width: 24px;
    margin-left: 10px;
  }

  details.page-blog-fishing-games-tips__faq-item .page-blog-fishing-games-tips__faq-answer {
    padding: 0 15px 15px;
  }

  /* Call to Action Section */
  .page-blog-fishing-games-tips__call-to-action {
    padding: 40px 15px;
    margin-top: 30px;
    margin-left: 15px;
    margin-right: 15px;
    border-radius: 8px;
  }

  .page-blog-fishing-games-tips__call-to-action p {
    font-size: 16px;
    margin-bottom: 20px;
  }

  /* Generic mobile container padding */
  .page-blog-fishing-games-tips__container {
    padding-left: 15px !important;
    padding-right: 15px !important;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }

  /* Ensure no horizontal overflow for any content */
  .page-blog-fishing-games-tips {
    overflow-x: hidden;
  }
}