.page-fishing-games-tips-and-strategies {
  color: #333333; /* Dark text for light body background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
  padding-top: var(--header-offset, 120px); /* Ensure content is below fixed header */
}

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

.page-fishing-games-tips-and-strategies__hero-section {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  text-align: center;
  padding: 80px 0;
  background-color: #000080; /* Dark blue background for hero content */
}

.page-fishing-games-tips-and-strategies__hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  opacity: 0.6;
}

.page-fishing-games-tips-and-strategies__hero-content {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  background: rgba(0, 0, 128, 0.7); /* Semi-transparent dark blue overlay */
  border-radius: 10px;
}

.page-fishing-games-tips-and-strategies__hero-title {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #FFD700;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
  font-weight: bold;
}

.page-fishing-games-tips-and-strategies__hero-description {
  font-size: 1.3em;
  margin-bottom: 30px;
  color: #f0f0f0;
}

.page-fishing-games-tips-and-strategies__cta-button {
  display: inline-block;
  background-color: #FFD700;
  color: #000080;
  padding: 15px 30px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.1em;
  transition: background-color 0.3s ease, transform 0.3s ease;
  margin: 10px;
  min-width: 200px;
  text-align: center;
}

.page-fishing-games-tips-and-strategies__cta-button:hover {
  background-color: #e6c200;
  transform: translateY(-3px);
}

.page-fishing-games-tips-and-strategies__cta-button--secondary {
  background-color: #000080;
  color: #FFD700;
  border: 2px solid #FFD700;
}

.page-fishing-games-tips-and-strategies__cta-button--secondary:hover {
  background-color: #000066;
  border-color: #e6c200;
}

.page-fishing-games-tips-and-strategies__section-title {
  font-size: 2.5em;
  color: #000080;
  text-align: center;
  margin-bottom: 40px;
  position: relative;
  padding-bottom: 10px;
}

.page-fishing-games-tips-and-strategies__section-title::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background-color: #FFD700;
  border-radius: 2px;
}

.page-fishing-games-tips-and-strategies__paragraph {
  font-size: 1.1em;
  margin-bottom: 20px;
  text-align: justify;
}

.page-fishing-games-tips-and-strategies__introduction-section,
.page-fishing-games-tips-and-strategies__core-strategies,
.page-fishing-games-tips-and-strategies__advanced-techniques,
.page-fishing-games-tips-and-strategies__common-mistakes,
.page-fishing-games-tips-and-strategies__responsible-gaming,
.page-fishing-games-tips-and-strategies__conclusion-cta,
.page-fishing-games-tips-and-strategies__related-articles {
  padding: 60px 0;
}

.page-fishing-games-tips-and-strategies__core-strategies,
.page-fishing-games-tips-and-strategies__advanced-techniques {
  background-color: #f8f8f8;
}

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

.page-fishing-games-tips-and-strategies__card {
  background-color: #ffffff;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
}

.page-fishing-games-tips-and-strategies__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.page-fishing-games-tips-and-strategies__card-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  display: block;
}

.page-fishing-games-tips-and-strategies__card-title {
  font-size: 1.5em;
  color: #000080;
  margin: 20px 20px 10px;
  font-weight: bold;
}

.page-fishing-games-tips-and-strategies__card-text {
  font-size: 1em;
  color: #555555;
  padding: 0 20px 20px;
  flex-grow: 1;
  text-align: justify;
}

.page-fishing-games-tips-and-strategies__list {
  list-style: none;
  padding: 0 20px 20px;
  margin: 0;
}

.page-fishing-games-tips-and-strategies__list-item {
  margin-bottom: 10px;
  font-size: 1em;
  color: #555555;
  position: relative;
  padding-left: 25px;
  text-align: justify;
}

.page-fishing-games-tips-and-strategies__list-item::before {
  content: '▶';
  color: #FFD700;
  position: absolute;
  left: 0;
  top: 0;
  font-size: 0.8em;
}

.page-fishing-games-tips-and-strategies__list-bullet {
  list-style: disc;
  padding-left: 40px;
  font-size: 1.1em;
  color: #333333;
}

.page-fishing-games-tips-and-strategies__list-bullet .page-fishing-games-tips-and-strategies__list-item {
  padding-left: 0;
  margin-bottom: 10px;
  text-align: left;
}

.page-fishing-games-tips-and-strategies__list-bullet .page-fishing-games-tips-and-strategies__list-item::before {
  content: none;
}

.page-fishing-games-tips-and-strategies__text-link {
  color: #000080;
  text-decoration: underline;
  font-weight: bold;
}

.page-fishing-games-tips-and-strategies__text-link:hover {
  color: #FFD700;
}

.page-fishing-games-tips-and-strategies__cta-button--small {
  padding: 10px 20px;
  font-size: 1em;
  margin-top: 20px;
}

.page-fishing-games-tips-and-strategies__conclusion-cta {
  background-color: #000080;
  color: #ffffff;
  padding: 80px 0;
}

.page-fishing-games-tips-and-strategies__container--flex {
  display: flex;
  align-items: center;
  gap: 40px;
}

.page-fishing-games-tips-and-strategies__conclusion-content {
  flex: 1;
}

.page-fishing-games-tips-and-strategies__conclusion-cta .page-fishing-games-tips-and-strategies__section-title {
  color: #FFD700;
}

.page-fishing-games-tips-and-strategies__conclusion-cta .page-fishing-games-tips-and-strategies__section-title::after {
  background-color: #ffffff;
}

.page-fishing-games-tips-and-strategies__conclusion-cta .page-fishing-games-tips-and-strategies__paragraph {
  color: #f0f0f0;
}

.page-fishing-games-tips-and-strategies__button-group {
  margin-top: 30px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.page-fishing-games-tips-and-strategies__cta-button--primary-large {
  background-color: #FFD700;
  color: #000080;
  padding: 18px 35px;
  font-size: 1.2em;
  min-width: 250px;
}

.page-fishing-games-tips-and-strategies__cta-button--secondary-large {
  background-color: transparent;
  color: #FFD700;
  border: 2px solid #FFD700;
  padding: 18px 35px;
  font-size: 1.2em;
  min-width: 250px;
}

.page-fishing-games-tips-and-strategies__cta-button--primary-large:hover {
  background-color: #e6c200;
}

.page-fishing-games-tips-and-strategies__cta-button--secondary-large:hover {
  background-color: #FFD700;
  color: #000080;
}

.page-fishing-games-tips-and-strategies__conclusion-image {
  width: 400px;
  height: 300px;
  object-fit: contain;
  border-radius: 10px;
  flex-shrink: 0;
}

.page-fishing-games-tips-and-strategies__related-articles {
  background-color: #ffffff;
}

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

.page-fishing-games-tips-and-strategies__article-card {
  background-color: #f0f0f0;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-fishing-games-tips-and-strategies__article-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.page-fishing-games-tips-and-strategies__article-image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.page-fishing-games-tips-and-strategies__article-title {
  font-size: 1.3em;
  color: #000080;
  margin: 15px 20px 10px;
  font-weight: bold;
}

.page-fishing-games-tips-and-strategies__article-title a {
  color: #000080;
  text-decoration: none;
}

.page-fishing-games-tips-and-strategies__article-title a:hover {
  color: #FFD700;
  text-decoration: underline;
}

.page-fishing-games-tips-and-strategies__article-excerpt {
  font-size: 0.95em;
  color: #666666;
  padding: 0 20px 20px;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .page-fishing-games-tips-and-strategies__hero-title {
    font-size: 3em;
  }
  .page-fishing-games-tips-and-strategies__section-title {
    font-size: 2em;
  }
  .page-fishing-games-tips-and-strategies__conclusion-image {
    width: 300px;
    height: 225px;
  }
}

@media (max-width: 768px) {
  .page-fishing-games-tips-and-strategies__hero-title {
    font-size: 2.5em;
  }
  .page-fishing-games-tips-and-strategies__hero-description {
    font-size: 1.1em;
  }
  .page-fishing-games-tips-and-strategies__cta-button {
    width: 100%;
    margin: 10px 0;
  }
  .page-fishing-games-tips-and-strategies__container--flex {
    flex-direction: column;
    text-align: center;
  }
  .page-fishing-games-tips-and-strategies__conclusion-image {
    order: -1;
    margin-bottom: 30px;
  }
  .page-fishing-games-tips-and-strategies__button-group {
    flex-direction: column;
    align-items: center;
  }
  .page-fishing-games-tips-and-strategies__cta-button--primary-large,
  .page-fishing-games-tips-and-strategies__cta-button--secondary-large {
    width: 100%;
    min-width: unset;
  }
  .page-fishing-games-tips-and-strategies__section-title {
    font-size: 1.8em;
  }
  /* Content area image sizing for mobile */
  .page-fishing-games-tips-and-strategies img {
    max-width: 100%;
    height: auto;
  }
  /* Ensure no image is smaller than 200px display size */
  .page-fishing-games-tips-and-strategies__card-image,
  .page-fishing-games-tips-and-strategies__conclusion-image,
  .page-fishing-games-tips-and-strategies__article-image {
    min-width: 200px;
    min-height: 200px;
    width: 100%; /* Override fixed width for responsiveness */
    height: auto; /* Override fixed height for responsiveness */
  }
}

@media (max-width: 480px) {
  .page-fishing-games-tips-and-strategies__hero-title {
    font-size: 2em;
  }
  .page-fishing-games-tips-and-strategies__hero-description {
    font-size: 1em;
  }
  .page-fishing-games-tips-and-strategies__section-title {
    font-size: 1.5em;
  }
  .page-fishing-games-tips-and-strategies__card-title {
    font-size: 1.3em;
  }
  .page-fishing-games-tips-and-strategies__paragraph,
  .page-fishing-games-tips-and-strategies__card-text,
  .page-fishing-games-tips-and-strategies__list-item,
  .page-fishing-games-tips-and-strategies__list-bullet .page-fishing-games-tips-and-strategies__list-item,
  .page-fishing-games-tips-and-strategies__article-excerpt {
    font-size: 0.95em;
  }
}