/* style/blog-new-fishing-games-review.css */
/* 
  Body background color comes from shared.css: var(--background-color) which is #08160F.
  This is a dark background, so text should be light (#F2FFF6 or #ffffff).
*/

.page-blog-new-fishing-games-review {
  color: #F2FFF6; /* Text Main */
  background-color: #08160F; /* Background */
  font-family: Arial, sans-serif;
  line-height: 1.6;
}

/* Hero Section */
.page-blog-new-fishing-games-review__hero-section {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding as per requirement */
  text-align: center;
  overflow: hidden; /* Ensure content doesn't overflow */
}

.page-blog-new-fishing-games-review__hero-image-wrapper {
  width: 100%;
  max-width: 100%;
  margin-bottom: 30px; /* Space between image and content */
}

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

.page-blog-new-fishing-games-review__hero-content {
  max-width: 900px;
  width: 100%; /* Ensure width: 100% for flex items */
  padding: 0 20px;
  box-sizing: border-box;
}

.page-blog-new-fishing-games-review__main-title {
  font-size: clamp(2.2rem, 4vw, 3.5rem); /* Use clamp for H1 font size */
  color: #F2C14E; /* Gold */
  margin-bottom: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.page-blog-new-fishing-games-review__description {
  font-size: 1.1rem;
  color: #A7D9B8; /* Text Secondary */
  margin-bottom: 30px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-new-fishing-games-review__cta-buttons {
  display: flex;
  flex-wrap: wrap; /* Allow buttons to wrap on smaller screens */
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
  width: 100%; /* Ensure container takes full width */
  max-width: 600px; /* Limit button group width */
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

/* Buttons */
.page-blog-new-fishing-games-review__btn-primary,
.page-blog-new-fishing-games-review__btn-secondary {
  display: inline-block;
  padding: 15px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  text-align: center;
  max-width: 100%; /* Ensure buttons adapt to screen width */
  box-sizing: border-box;
  white-space: normal; /* Allow text to wrap */
  word-wrap: break-word; /* Allow text to break words */
}

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