/* style/blog-how-to-choose-a-reliable-fishing-app.css */
:root {
  --primary-color: #26A9E0;
  --secondary-color: #EA7C07;
  --text-color-dark: #333333;
  --text-color-light: #ffffff;
  --background-color-light: #ffffff;
  --border-color: #e0e0e0;
}

.page-blog-how-to-choose-a-reliable-fishing-app {
  font-family: 'Arial', sans-serif;
  line-height: 1.6;
  color: var(--text-color-dark);
  background-color: var(--background-color-light);
}

.page-blog-how-to-choose-a-reliable-fishing-app__container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Hero Section for Blog Article */
.page-blog-how-to-choose-a-reliable-fishing-app__hero-article {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 60px 20px;
  padding-top: 10px; /* Small top padding, header offset handled by body in shared.css */
  background: linear-gradient(180deg, var(--primary-color) 0%, rgba(255,255,255,0) 100%);
  color: var(--text-color-light);
}

.page-blog-how-to-choose-a-reliable-fishing-app__hero-image-container {
  width: 100%;
  max-width: 1000px; /* Max width for the image */
  margin-bottom: 30px;
}

.page-blog-how-to-choose-a-reliable-fishing-app__hero-image {
  width: 100%;
  height: auto;
  max-width: 100%;
  display: block;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.page-blog-how-to-choose-a-reliable-fishing-app__hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 900px;
}

.page-blog-how-to-choose-a-reliable-fishing-app__main-title {
  font-size: clamp(2.2rem, 4vw, 2.8rem); /* Responsive font size */
  font-weight: 700;
  line-height: 1.2;
  margin-top: 0;
  margin-bottom: 20px;
  color: var(--text-color-light);
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.page-blog-how-to-choose-a-reliable-fishing-app__description {
  font-size: 1.15rem;
  margin-bottom: 30px;
  color: var(--text-color-light);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.page-blog-how-to-choose-a-reliable-fishing-app__meta-info {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 20px;
}

.page-blog-how-to-choose-a-reliable-fishing-app__cta-button {
  display: inline-block;
  padding: 15px 40px;
  background: var(--secondary-color);
  color: var(--text-color-light);
  text-decoration: none;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-top: 20px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  max-width: 100%;
  box-sizing: border-box;
  white-space: normal;
  word-wrap: break-word;
}

.page-blog-how-to-choose-a-reliable-fishing-app__cta-button:hover {
  background: darken(var(--secondary-color), 10%);
  transform: translateY(-2px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.page-blog-how-to-choose-a-reliable-fishing-app__cta-button--inline {
  margin-top: 30px;
}

/* Content Section */
.page-blog-how-to-choose-a-reliable-fishing-app__content-section {
  padding: 50px 0;
  background-color: var(--background-color-light);
  color: var(--text-color-dark);
}

.page-blog-how-to-choose-a-reliable-fishing-app__section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 40px;
  margin-bottom: 25px;
  text-align: center;
}

.page-blog-how-to-choose-a-reliable-fishing-app__subsection-title {
  font-size: clamp(1.4rem, 2.8vw, 1.8rem);
  font-weight: 600;
  color: var(--text-color-dark);
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-blog-how-to-choose-a-reliable-fishing-app__text-block p {
  margin-bottom: 1em;
  font-size: 1rem;
  line-height: 1.7;
}

.page-blog-how-to-choose-a-reliable-fishing-app__text-block ul,
.page-blog-how-to-choose-a-reliable-fishing-app__text-block ol {
  margin-bottom: 1em;
  padding-left: 25px;
}

.page-blog-how-to-choose-a-reliable-fishing-app__text-block li {
  margin-bottom: 0.5em;
  font-size: 1rem;
  line-height: 1.7;
}

.page-blog-how-to-choose-a-reliable-fishing-app__image-inline {
  width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  max-width: 800px; /* Limit width for inline images */
}

/* FAQ Section */
.page-blog-how-to-choose-a-reliable-fishing-app__faq-section {
  padding: 50px 0;
  background-color: #f9f9f9;
}

.page-blog-how-to-choose-a-reliable-fishing-app__faq-title {
  font-size: clamp(1.8rem, 3.5vw, 2.4rem);
  font-weight: 700;
  color: var(--primary-color);
  margin-bottom: 40px;
  text-align: center;
}

.page-blog-how-to-choose-a-reliable-fishing-app__faq-list {
  max-width: 900px;
  margin: 0 auto;
}

details.page-blog-how-to-choose-a-reliable-fishing-app__faq-item {
  margin-bottom: 15px;
  border-radius: 5px;
  border: 1px solid var(--border-color);
  overflow: hidden;
  background: var(--background-color-light);
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

details.page-blog-how-to-choose-a-reliable-fishing-app__faq-item summary.page-blog-how-to-choose-a-reliable-fishing-app__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: var(--text-color-dark);
  font-weight: 600;
}

details.page-blog-how-to-choose-a-reliable-fishing-app__faq-item summary.page-blog-how-to-choose-a-reliable-fishing-app__faq-question::-webkit-details-marker {
  display: none;
}

details.page-blog-how-to-choose-a-reliable-fishing-app__faq-item summary.page-blog-how-to-choose-a-reliable-fishing-app__faq-question:hover {
  background: #f5f5f5;
}

.page-blog-how-to-choose-a-reliable-fishing-app__faq-qtext {
  flex: 1;
  font-size: 16px;
  line-height: 1.5;
  text-align: left;
}

.page-blog-how-to-choose-a-reliable-fishing-app__faq-toggle {
  font-size: 24px;
  font-weight: bold;
  color: #666;
  flex-shrink: 0;
  margin-left: 15px;
  width: 28px;
  text-align: center;
}

details.page-blog-how-to-choose-a-reliable-fishing-app__faq-item .page-blog-how-to-choose-a-reliable-fishing-app__faq-answer {
  padding: 0 20px 20px;
  background: #f9f9f9;
  border-radius: 0 0 5px 5px;
  color: var(--text-color-dark);
}

.page-blog-how-to-choose-a-reliable-fishing-app__faq-answer p {
  margin: 0;
  padding: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .page-blog-how-to-choose-a-reliable-fishing-app__main-title {
    font-size: clamp(2rem, 4.5vw, 2.6rem);
  }
  .page-blog-how-to-choose-a-reliable-fishing-app__description {
    font-size: 1.1rem;
  }
}

@media (max-width: 768px) {
  .page-blog-how-to-choose-a-reliable-fishing-app__hero-article {
    padding: 40px 15px;
    padding-top: 10px !important;
  }
  .page-blog-how-to-choose-a-reliable-fishing-app__hero-image-container {
    margin-bottom: 20px;
  }
  .page-blog-how-to-choose-a-reliable-fishing-app__main-title {
    font-size: clamp(1.8rem, 6vw, 2.2rem);
    margin-bottom: 15px;
  }
  .page-blog-how-to-choose-a-reliable-fishing-app__description {
    font-size: 1rem;
    margin-bottom: 20px;
  }
  .page-blog-how-to-choose-a-reliable-fishing-app__cta-button {
    padding: 12px 30px;
    font-size: 16px;
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    white-space: normal !important;
    word-wrap: break-word !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  .page-blog-how-to-choose-a-reliable-fishing-app__cta-button--inline {
    margin-top: 20px;
  }

  .page-blog-how-to-choose-a-reliable-fishing-app__content-section,
  .page-blog-how-to-choose-a-reliable-fishing-app__faq-section {
    padding: 30px 0;
  }
  .page-blog-how-to-choose-a-reliable-fishing-app__container {
    padding: 0 15px;
  }
  .page-blog-how-to-choose-a-reliable-fishing-app__section-title {
    font-size: clamp(1.6rem, 5vw, 2rem);
    margin-top: 30px;
    margin-bottom: 20px;
  }
  .page-blog-how-to-choose-a-reliable-fishing-app__subsection-title {
    font-size: clamp(1.2rem, 4vw, 1.5rem);
    margin-top: 25px;
    margin-bottom: 10px;
  }
  .page-blog-how-to-choose-a-reliable-fishing-app__text-block p,
  .page-blog-how-to-choose-a-reliable-fishing-app__text-block li {
    font-size: 0.95rem;
  }
  .page-blog-how-to-choose-a-reliable-fishing-app__image-inline {
    margin: 20px auto;
  }
  .page-blog-how-to-choose-a-reliable-fishing-app img {
    max-width: 100% !important;
    width: 100% !important;
    height: auto !important;
  }
  .page-blog-how-to-choose-a-reliable-fishing-app__section,
  .page-blog-how-to-choose-a-reliable-fishing-app__card,
  .page-blog-how-to-choose-a-reliable-fishing-app__container {
    max-width: 100% !important;
    width: 100% !important;
    box-sizing: border-box !important;
    padding-left: 15px;
    padding-right: 15px;
  }
  details.page-blog-how-to-choose-a-reliable-fishing-app__faq-item summary.page-blog-how-to-choose-a-reliable-fishing-app__faq-question { padding: 15px; }
  .page-blog-how-to-choose-a-reliable-fishing-app__faq-qtext { font-size: 15px; }
  details.page-blog-how-to-choose-a-reliable-fishing-app__faq-item .page-blog-how-to-choose-a-reliable-fishing-app__faq-answer { padding: 0 15px 15px; }
}

@media (max-width: 480px) {
  .page-blog-how-to-choose-a-reliable-fishing-app__main-title {
    font-size: clamp(1.6rem, 7vw, 2rem);
  }
  .page-blog-how-to-choose-a-reliable-fishing-app__description {
    font-size: 0.9rem;
  }
  .page-blog-how-to-choose-a-reliable-fishing-app__cta-button {
    font-size: 15px;
    padding: 10px 25px;
  }
  .page-blog-how-to-choose-a-reliable-fishing-app__section-title {
    font-size: clamp(1.4rem, 6vw, 1.8rem);
  }
  .page-blog-how-to-choose-a-reliable-fishing-app__subsection-title {
    font-size: clamp(1.1rem, 5vw, 1.3rem);
  }
}

/* Contrast Fixes - Ensure WCAG AA */
.page-blog-how-to-choose-a-reliable-fishing-app__dark-bg {
  background: var(--primary-color);
  color: var(--text-color-light);
}

.page-blog-how-to-choose-a-reliable-fishing-app__light-bg {
  background: var(--background-color-light);
  color: var(--text-color-dark);
}

.page-blog-how-to-choose-a-reliable-fishing-app__text-block {
  color: var(--text-color-dark);
}

/* Ensure no image filters are applied */
.page-blog-how-to-choose-a-reliable-fishing-app img {
  filter: none; /* Absolutely no CSS filters to change image color */
}