/* Styles for static content pages: About, Privacy, Contact, and new SEO pages */

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-nav {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px 6px;
  box-sizing: border-box;
}

.site-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.site-nav a {
  color: #eee4da;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  opacity: 0.85;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  opacity: 1;
  text-decoration: underline;
}

.breadcrumbs {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 10px 20px 0;
  box-sizing: border-box;
  font-size: 13px;
  color: #a09488;
}

.breadcrumbs a {
  color: #a09488;
}

.breadcrumbs a:hover {
  color: orange;
}

.page-content h3 {
  color: orange;
  font-size: 18px;
  margin-top: 20px;
  margin-bottom: 8px;
}

.page-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 30px;
}

.page-cta a {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 3px;
  text-decoration: none !important;
  font-weight: bold;
  font-size: 14px;
}

.page-cta a.primary {
  background: orange;
  color: #f9f6f2 !important;
}

.page-cta a.primary:hover {
  background: #9f8a75;
}

.page-cta a.secondary {
  background: transparent;
  border: 1px solid #6f6259;
  color: #eee4da !important;
}

.page-cta a.secondary:hover {
  border-color: orange;
  color: orange !important;
}

.breed-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 18px;
  margin: 20px 0 30px;
}

.breed-card {
  background: rgba(238, 228, 218, 0.07);
  border-radius: 6px;
  padding: 12px;
  text-align: center;
}

.breed-card img {
  width: 100%;
  height: auto;
  max-width: 120px;
  border-radius: 4px;
  display: block;
  margin: 0 auto 8px;
}

.breed-card .breed-tile-value {
  color: orange;
  font-weight: bold;
  font-size: 13px;
  margin-bottom: 4px;
}

.breed-card p {
  font-size: 13px;
  margin: 0;
}

.faq-item {
  margin-bottom: 24px;
}

.home-section {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 10px 20px 30px;
  box-sizing: border-box;
  color: #eee4da;
}

.home-section h2 {
  color: white;
  font-size: 24px;
  margin: 0 0 14px;
}

.home-section h3 {
  color: orange;
  font-size: 17px;
  margin: 0 0 6px;
}

.benefits-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 0 0 10px;
}

.benefit {
  flex: 1 1 150px;
  background: rgba(238, 228, 218, 0.07);
  border-radius: 6px;
  padding: 14px;
  text-align: center;
  font-weight: bold;
  font-size: 14px;
}

.explore-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
  gap: 14px;
}

.explore-cards a {
  display: block;
  background: rgba(238, 228, 218, 0.07);
  border-radius: 6px;
  padding: 16px;
  color: #f9f6f2;
  text-decoration: none;
  font-weight: bold;
  font-size: 14px;
  text-align: center;
}

.explore-cards a:hover {
  background: rgba(238, 228, 218, 0.14);
}

.blog-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin: 20px 0 30px;
}

.blog-list-item {
  background: rgba(238, 228, 218, 0.07);
  border-radius: 6px;
  padding: 16px 18px;
}

.blog-list-item .blog-date {
  color: #a09488;
  font-size: 12px;
  margin-bottom: 4px;
}

.blog-list-item a.blog-title-link {
  color: #f9f6f2;
  font-size: 17px;
  font-weight: bold;
  text-decoration: none;
}

.blog-list-item a.blog-title-link:hover {
  color: #f2b179;
  text-decoration: underline;
}

.blog-list-item p {
  margin: 6px 0 0;
  font-size: 14px;
  color: #eee4da;
}

.page-wrap {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

.page-header {
  padding-top: 30px;
  padding-bottom: 10px;
}

.page-logo {
  display: inline-block;
}

.page-logo img {
  height: 46px;
  display: block;
}

.page-back-link {
  display: inline-block;
  margin-top: 18px;
  margin-bottom: 6px;
  color: #f9f6f2;
  text-decoration: none;
  font-weight: bold;
  opacity: 0.85;
}

.page-back-link:hover {
  opacity: 1;
  text-decoration: underline;
}

.page-title {
  color: white;
  font-size: 36px;
  font-weight: bold;
  margin: 10px 0 6px;
}

.page-updated {
  color: #a09488;
  font-size: 14px;
  margin-bottom: 25px;
}

.page-content {
  color: #eee4da;
  line-height: 1.6;
  font-size: 17px;
  padding-bottom: 40px;
}

.page-content h2 {
  color: white;
  font-size: 22px;
  margin-top: 30px;
  margin-bottom: 10px;
}

.page-content p {
  margin: 0 0 16px;
}

.page-content ul {
  margin: 0 0 16px;
  padding-left: 22px;
}

.page-content li {
  margin-bottom: 8px;
}

.page-content a {
  color: orange;
}

.page-content a:hover {
  color: #f9c98e;
}

.page-content strong {
  color: white;
}

.contact-email-box {
  display: inline-block;
  margin-top: 6px;
  margin-bottom: 20px;
  padding: 12px 20px;
  background: orange;
  border-radius: 3px;
  color: #f9f6f2 !important;
  font-weight: bold;
  text-decoration: none !important;
}

.contact-email-box:hover {
  background: #9f8a75;
}
