/* style/resources-daga-breeds.css */
.page-resources-daga-breeds {
  font-family: 'Arial', sans-serif;
  color: #333333;
  line-height: 1.6;
  background-color: #f8f8f8;
}

.page-resources-daga-breeds__container {
  max-width: 800px; /* Content width for readability */
  margin: 0 auto;
  padding: 0 20px;
}

.page-resources-daga-breeds__hero {
  background-color: #0A6847; /* Primary color */
  color: #ffffff;
  padding: 60px 0;
  text-align: center;
}

.page-resources-daga-breeds__back-link {
  display: inline-block;
  margin-bottom: 20px;
  color: #FFD700; /* Secondary color for emphasis */
  text-decoration: none;
  font-weight: bold;
  transition: color 0.3s ease;
}

.page-resources-daga-breeds__back-link:hover {
  color: #e0b000;
}

.page-resources-daga-breeds__title {
  font-size: 2.5em;
  margin-bottom: 15px;
  color: #ffffff;
  line-height: 1.2;
}

.page-resources-daga-breeds__subtitle {
  font-size: 1.1em;
  margin-bottom: 30px;
  opacity: 0.9;
}

.page-resources-daga-breeds__hero-image {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  margin-top: 20px;
}

.page-resources-daga-breeds__content-section {
  padding: 40px 0;
}

.page-resources-daga-breeds__article-content p {
  margin-bottom: 1em;
  font-size: 1.05em;
  color: #333333;
}

.page-resources-daga-breeds__article-content a {
  color: #0A6847; /* Primary color for links */
  text-decoration: none;
  font-weight: bold;
}

.page-resources-daga-breeds__article-content a:hover {
  text-decoration: underline;
  color: #074a33;
}

.page-resources-daga-breeds__heading {
  font-size: 2em;
  color: #0A6847; /* Primary color for headings */
  margin-top: 40px;
  margin-bottom: 20px;
  border-bottom: 2px solid #FFD700; /* Secondary color for accent */
  padding-bottom: 10px;
}

.page-resources-daga-breeds__sub-heading {
  font-size: 1.5em;
  color: #0A6847;
  margin-top: 30px;
  margin-bottom: 15px;
}

.page-resources-daga-breeds__image {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 30px auto;
  border-radius: 8px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-resources-daga-breeds__article-content ul,
.page-resources-daga-breeds__article-content ol {
  margin-bottom: 1em;
  padding-left: 25px;
  color: #333333;
}

.page-resources-daga-breeds__article-content li {
  margin-bottom: 0.5em;
  font-size: 1.05em;
}

.page-resources-daga-breeds__cta-block {
  background-color: #f0f8f0; /* Light variant of primary color for background */
  border-left: 5px solid #0A6847;
  padding: 25px;
  margin: 40px 0;
  border-radius: 8px;
  text-align: center;
}

.page-resources-daga-breeds__cta-block p {
  font-size: 1.1em;
  margin-bottom: 20px;
  color: #0A6847;
  font-weight: bold;
}

.page-resources-daga-breeds__btn {
  display: inline-block;
  padding: 12px 25px;
  margin: 10px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1em;
  transition: background-color 0.3s ease, color 0.3s ease;
}

.page-resources-daga-breeds__btn--primary {
  background-color: #0A6847; /* Primary color */
  color: #ffffff;
  border: 2px solid #0A6847;
}

.page-resources-daga-breeds__btn--primary:hover {
  background-color: #074a33;
  border-color: #074a33;
}

.page-resources-daga-breeds__btn--secondary {
  background-color: #FFD700; /* Secondary color */
  color: #0A6847; /* Primary color for text */
  border: 2px solid #FFD700;
}

.page-resources-daga-breeds__btn--secondary:hover {
  background-color: #e0b000;
  border-color: #e0b000;
  color: #074a33;
}

.page-resources-daga-breeds__return-link-wrapper {
  text-align: center;
  margin-top: 50px;
  padding-top: 20px;
  border-top: 1px dashed #cccccc;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .page-resources-daga-breeds__title {
    font-size: 2em;
  }
  .page-resources-daga-breeds__heading {
    font-size: 1.7em;
  }
  .page-resources-daga-breeds__sub-heading {
    font-size: 1.3em;
  }
  .page-resources-daga-breeds__btn {
    display: block;
    margin: 10px auto;
    max-width: 250px;
  }
}

@media (max-width: 480px) {
  .page-resources-daga-breeds__title {
    font-size: 1.8em;
  }
  .page-resources-daga-breeds__heading {
    font-size: 1.5em;
  }
  .page-resources-daga-breeds__sub-heading {
    font-size: 1.2em;
  }
  .page-resources-daga-breeds__hero {
    padding: 40px 0;
  }
  .page-resources-daga-breeds__cta-block {
    padding: 15px;
  }
  .page-resources-daga-breeds__article-content p,
  .page-resources-daga-breeds__article-content li {
    font-size: 1em;
  }
}