/* Article detail page — card (dark hero + body) + related + shop only */

.artd-page .container {
  width: min(1160px, calc(100% - 32px));
  margin-inline: auto;
}

.promo-bar {
  background: #eaeffa;
  color: #263457;
  border-bottom: 1px solid rgba(38, 52, 87, 0.13);
  font-weight: 500;
  font-size: 13px;
  padding: 10px 16px;
  text-align: center;
}

.artd-main-block {
  background: #f4f7f5;
  padding: 40px 0 48px;
}

/* Card: white, rounded, shadow — no heavy border */
.artd-card {
  max-width: 880px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.05);
  padding: 25px;
}

/* Photo hero variant (used by some articles like dog-walk-essentiaals) */


.artd-card.artd-card--photo .artd-body {
  padding: 28px 32px 36px;
}

.artd-photo-hero {
  position: relative;
  height: 400px;
  background: #f2f3f5;
  overflow: hidden;
}

.artd-photo-hero img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
}

.artd-photo-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    180deg,
    rgba(0, 0, 0, 0.05) 0%,
    rgba(0, 0, 0, 0.55) 100%
  );
}

.artd-photo-hero__label {
  position: absolute;
  left: 28px;
  right: 28px;
  bottom: 22px;
  z-index: 1;
  margin: 0;
  font-family: var(--theme-font-serif, Georgia), "Times New Roman", serif !important;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.02em;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

/* Hero: dark forest green, label bottom-left */
.artd-hero {
    min-height: 290px;
    background: #122620;
    display: flex;
    align-items: flex-end;
    padding: 28px 32px;
    box-sizing: border-box;
}

.artd-hero__label {
  margin: 0;
  font-family: var(--theme-font-serif, Georgia), "Times New Roman", serif !important;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 700;
  color: #ffffff;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.artd-body {
  padding: 28px 32px 36px;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

.artd-badge {
  display: inline-block;
  background: #f5f5f5;
  color: #2c2c2c;
  border: 1px solid #e0e0e0;
  border-radius: 999px;
  padding: 6px 14px;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 16px;
}

.artd-title {
  margin: 0 0 14px;
  font-family: var(--theme-font-serif, Georgia), "Times New Roman", serif !important;
  font-size: clamp(26px, 4vw, 40px) !important;
  font-weight: 700;
  color: #0a0a0a;
  line-height: 1.15;
  letter-spacing: -0.03em;
}

.artd-excerpt {
  margin: 0 0 18px;
  font-size: 17px;
  font-weight: 400;
  color: #3a3530;
  line-height: 1.55;
  font-family: 'Inter', system-ui, -apple-system, sans-serif !important;
}
.sub-heading-two{
  font-size: 20px !important;
  font-weight: 700 !important;
  color: #1a3a38 !important;
  margin: 0 0 10px !important;
  font-family: var(--theme-font-serif, Georgia), "Times New Roman", serif !important;
}
.artd-meta {
  margin: 0 0 28px;
  font-size: 13px;
  font-weight: 700;
  color: #7a7a7a;
}

.artd-meta__dot {
  margin: 0 0.35em;
  font-weight: 400;
  color: #b0b0b0;
}

.artd-content {
  font-size: 16px;
  line-height: 1.7;
  color: #3a3a3a;
}

.artd-content p {
  margin: 0 0 1.75em;
  font-size: 16px !important;
  line-height: 1.8 !important;
  color: #3a4a47 !important;
  border-bottom: 1px solid #ede8e0 !important;
  padding-bottom: 24px
}

.artd-content p:last-child {
  margin-bottom: 0;
  border-bottom: none !important;
  padding-bottom: 0px;
}

/* Related + shop */
.artd-extra {
  background: #f8f9f8;
  padding: 24px 0 56px;
}

.artd-related-title {
    font-family: var(--theme-font-serif, Georgia), "Times New Roman", serif !important;
    font-size: clamp(24px, 3.2vw, 38px) !important;
    font-weight: 800 !important;
    letter-spacing: -.03em !important;
    color: #263457 !important;
    line-height: 1.1 !important;
    margin-bottom: 28px !important;
}

.artd-page .mini-article-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-bottom: 26px;
}

.artd-page .mini-article-card {
  background: #fff;
  border: 1px solid #e8e2d9;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.06);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.artd-page .mini-article-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(38, 52, 87, 0.12);
}

.artd-page .mini-article-art {
  height: 130px;
  background: linear-gradient(135deg, #eef0f2, #d8dde0);
  overflow: hidden;
}

.artd-page .mini-article-art img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.artd-page .mini-article-body {
  padding: 14px 14px 16px;
  font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;
}

.artd-page .chip-inline {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 5px 12px;
  font-size: 12px;
  font-weight: 700;
  background: #eef2ff;
  border: 1px solid rgba(38, 52, 87, 0.16);
  color: #263457;
}

.artd-page .mini-article-body h4 {
  margin: 10px 0 8px;
  font-family: var(--theme-font-serif, Georgia), "Times New Roman", serif !important;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.artd-page .mini-article-body h4 a {
  color: #123a36;
  text-decoration: none;
}

.artd-page .mini-article-body h4 a:hover {
  text-decoration: underline;
}

.artd-page .mini-article-body p {
  margin: 0 0 12px;
  color: #566662;
  font-size: 13.5px;
  line-height: 1.5;
}

.artd-page .read-link {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  color: #16a34a;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 2px;
}

.artd-page .read-link:hover {
  color: #15803d;
}

.artd-back {
    display: inline-block;
    margin-bottom: 28px;
    font-size: 14px;
    font-weight: 700;
    color: #263457;
    text-decoration: underline;
    margin-top: 15px;
}

.artd-back:hover {
  color: #00b72f;
}

.artd-shop {
  background: #faf8f4;
  border: 1px solid #e8e2d9;
  border-radius: 22px;
  padding: 32px 36px 36px;
}

.artd-shop__title {
  font-family: var(--theme-font-serif, Georgia), "Times New Roman", serif !important;
  font-size: clamp(1.3rem, 2.5vw, 1.75rem);
  font-weight: 800;
  color: #141414;
  margin: 0 0 22px;
}

.artd-shop__links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 12px;
}

.artd-shop__link {
  display: inline-flex;
  align-items: center;
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 600;
  color: #1a1a1a;
  text-decoration: none;
  background: #fff;
  border: 1px solid #d8d8d8;
  border-radius: 999px;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.artd-shop__link:hover {
    background: #1a2b4b !important;
    color: #ffff !important;
}

@media (max-width: 640px) {
  .artd-hero {
    min-height: 180px;
    padding: 22px 20px;
  }

  .artd-photo-hero {
    height: 160px;
  }

  .artd-photo-hero img {
    height: 100%;
  }

  .artd-photo-hero__label {
    left: 20px;
    right: 20px;
    bottom: 16px;
  }

  .artd-body {
    padding: 22px 20px 28px;
  }

  .artd-shop {
    padding: 24px 20px 28px;
  }

  .artd-shop__link {
    flex: 1 1 auto;
    min-width: min(100%, 150px);
    justify-content: center;
    font-size: 13px;
    padding: 10px 14px;
  }

  .artd-page .mini-article-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .artd-page .mini-article-art {
    height: 150px;
  }
}