/* ══════════════════════════════════════════════
   HOME PAGE — Gun Dogs Hub
══════════════════════════════════════════════ */

/* ── Hero Section ── */
.hero-section {
    position: relative;
    min-height: 73vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 50%, #1a3a2a 100%);
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('/img/hero-hunters-dogs.jpg') center/cover no-repeat;
    opacity: 0.15;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(160deg, rgba(27, 67, 50, 0.92) 0%, rgba(45, 90, 71, 0.85) 40%, rgba(27, 67, 50, 0.8) 70%, rgba(185, 151, 91, 0.6) 100%);
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    color: var(--white);
    max-width: 540px;
    margin: 0;
    text-align: left;
    padding: 1rem;
}

.hero-content h1 {
    font-size: clamp(2.0rem, 5vw, 2.0rem);
    font-weight: 900;
    margin-bottom: 0.5rem;
    color: var(--white);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
    letter-spacing: -0.02em;
    line-height: 1.15;
}

.hero-content .subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    margin-bottom: 0.6rem;
    color: var(--secondary-color);
    font-weight: 600;
    line-height: 1.4;
    font-family: 'Inter', sans-serif;
    letter-spacing: 0.5px;
}

.hero-content .description {
    font-size: 1rem;
    margin-bottom: 1.2rem;
    color: rgba(255, 255, 255, 0.95);
    max-width: 720px;
    margin-left: 0;
    margin-right: 0;
    line-height: 1.8;
    text-align: left;
    word-wrap: break-word;
    text-align-last: center;
    hyphens: auto;
    padding: 0 1rem;
}

.hero-row {
    position: relative;
    z-index: 3;
}

.hero-image-card {
    position: relative;
    width: 100%;
    height: 320px;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.45);
    background: url('/img/hero-hunters-dogs.jpg') center/cover no-repeat;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 20% 20%, rgba(255, 255, 255, 0.05), transparent 40%), rgba(0, 0, 0, 0.35);
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: center;
    gap: 1.25rem;
    margin-bottom: 1.2rem;
    padding: 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.hero-badge svg {
    flex-shrink: 0;
    color: var(--secondary-color);
    stroke: currentColor;
}

@media (max-width: 768px) {
    .hero-badges {
        gap: 1rem;
        flex-direction: row;
        justify-content: center;
        align-items: center;
    }

    .hero-badge {
        font-size: 0.85rem;
    }
}

@media (max-width: 480px) {
    .hero-badges {
        gap: 0.75rem;
    }

    .hero-badge {
        font-size: 0.8rem;
    }
}

.hero-micro-trust {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.9);
    margin: 0.15rem 0 0;
}

/* ── Stats Section ── */

/* ── Search Bar Section ── */
.search-bar-section {
    margin-top: -2.25rem;
    padding: 0 0 2.25rem;
}

.search-bar-form {
    background: #ffffff;
    border-radius: 16px;
    padding: 1.25rem 1.5rem 1.25rem;
    box-shadow: 0 18px 40px rgba(15, 35, 28, 0.12);
    border: 1px solid #e5ebe7;
    position: relative;
    z-index: 4;
}

.search-bar-row {
    --bs-gutter-x: 1rem;
}

.search-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: #506158;
    margin-bottom: 0.25rem;
}

.search-input {
    font-size: 0.9rem;
}

.search-input-wrap {
    position: relative;
}

.search-input-icon {
    position: absolute;
    left: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 0.95rem;
    opacity: 0.8;
    pointer-events: none;
}

.search-input-wrap .search-input {
    padding-left: 2.1rem;
}

.search-submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    padding-inline: 0.75rem;
    height: 100%;
}

.popular-searches {
    margin-top: 0.75rem;
    font-size: 0.85rem;
    color: #5c6b63;
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
}

.popular-searches .popular-label {
    font-weight: 600;
}

.popular-searches a {
    color: #245c3f;
    text-decoration: none;
    position: relative;
}

.popular-searches a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 1px;
    background: rgba(36, 92, 63, 0.35);
}

.popular-searches a:hover {
    color: #173c29;
}

@media (max-width: 768px) {
    .search-bar-section {
        margin-top: 0;
        padding-top: 1.5rem;
    }

    .search-bar-form {
        padding: 1.25rem 1.1rem 1.1rem;
    }
}
.stats-section {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--accent-color) 60%, #1a3a2a 100%);
    color: var(--white);
    padding: 0;
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        90deg,
        transparent,
        transparent 200px,
        rgba(255,255,255,0.02) 200px,
        rgba(255,255,255,0.02) 201px
    );
}

.stat-item {
    text-align: center;
    padding: 1.5rem 0.5rem;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    right: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: rgba(255, 255, 255, 0.15);
}

.row > div:last-child .stat-item::after {
    display: none;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--secondary-color), #d4af37, #e8c967);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
        font-family: 'Inter', sans-serif;
    line-height: 1;
}

/* ── Trust Section ── */
.trust-section {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
}

.trust-header .section-title {
    margin-bottom: 0.5rem;
}

.trust-header .section-subtitle {
    max-width: 640px;
    margin: 0 auto 2.5rem auto;
}

.trust-badges-row {
    margin-bottom: 2.5rem;
}

.trust-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 1.5rem 1.25rem;
    box-shadow: 0 8px 24px rgba(15, 35, 28, 0.06);
    border: 1px solid #edf1ee;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.trust-icon {
    width: 40px;
    height: 40px;
    border-radius: 999px;
    background: rgba(27, 67, 50, 0.06);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.25rem;
}

.trust-emoji {
    font-size: 1.35rem;
}

.trust-card h3 {
    font-size: 1rem;
    margin: 0;
    color: #1f3d2b;
    font-weight: 600;
}

.trust-card p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.6;
    color: #4a5b52;
}

.how-it-works {
    margin-top: 1rem;
}

.how-steps-row {
    margin-top: 1.75rem;
}

.how-step-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 1.75rem 1.5rem 1.6rem;
    box-shadow: 0 8px 24px rgba(15, 35, 28, 0.06);
    border: 1px solid #edf1ee;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.how-step-number {
    position: absolute;
    top: 1rem;
    right: 1.25rem;
    font-size: 2.4rem;
    font-weight: 800;
    color: rgba(31, 61, 43, 0.08);
}

.how-step-card h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    color: #1f3d2b;
    font-weight: 600;
}

.how-step-card p {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.6;
    color: #4a5b52;
}

/* ── Trusted Breeders ── */
.trusted-breeders-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.trusted-breeder-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 1.5rem 1.4rem 1.45rem;
    box-shadow: 0 8px 24px rgba(15, 35, 28, 0.06);
    border: 1px solid #edf1ee;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.trusted-breeder-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 0.25rem;
}

.trusted-breeder-header h3 {
    font-size: 1rem;
    margin: 0;
    color: #1f3d2b;
    font-weight: 600;
}

.trusted-badge-verified {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.25rem 0.6rem;
    border-radius: 999px;
    background: rgba(24, 119, 62, 0.08);
    color: #157347;
    font-size: 0.75rem;
    font-weight: 600;
}

.trusted-badge-verified svg {
    stroke: currentColor;
}

.trusted-breeder-location {
    margin: 0;
    font-size: 0.9rem;
    color: #5c6b63;
}

.trusted-breeder-text {
    margin: 0 0 0.75rem 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: #4a5b52;
}

.trusted-breeder-card .btn-sm {
    padding: 0.45rem 0.9rem;
    font-size: 0.85rem;
}

/* ── Testimonials ── */
.testimonial-card {
    background: #ffffff;
    border-radius: 14px;
    padding: 1.75rem 1.6rem 1.6rem;
    box-shadow: 0 8px 24px rgba(15, 35, 28, 0.06);
    border: 1px solid #edf1ee;
    height: 100%;
}

.testimonial-text {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #3c4a43;
    margin-bottom: 0.9rem;
}

.testimonial-meta {
    font-size: 0.85rem;
    color: #6b7a72;
}

/* ── CTA Section ── */
.cta-section {
    background: linear-gradient(135deg, #12251a 0%, #1b4332 40%, #0b1720 100%);
    color: #ffffff;
    padding: 3.5rem 0;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.75rem;
}

.cta-text h2 {
    font-size: clamp(1.9rem, 3vw, 2.3rem);
    margin-bottom: 0.5rem;
}

.cta-text p {
    margin: 0;
    font-size: 0.98rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-btn {
    padding-inline: 1.9rem;
}

@media (max-width: 768px) {
    .trust-section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }

    .trust-card,
    .how-step-card {
        padding: 1.4rem 1.25rem 1.4rem;
    }

    .how-step-number {
        font-size: 2rem;
    }

    .trusted-breeders-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta-inner {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .trusted-breeders-grid {
        grid-template-columns: minmax(0, 1fr);
    }
}

.stat-label {
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: rgba(255, 255, 255, 0.75);
}

/* ── Popular Breeds (Home) ── */
.breeds-grid-home {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.breed-card-home {
    background: var(--white);
    border-radius: var(--border-radius);
    overflow: hidden;
    border: 1px solid var(--border-color);
    box-shadow: var(--shadow);
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
    display: block;
}

.breed-card-home:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(185, 151, 91, 0.3);
    text-decoration: none;
    color: inherit;
}

.breed-card-home .breed-img-wrap {
    position: relative;
    height: 240px;
    overflow: hidden;
}

.breed-card-home .breed-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.breed-card-home:hover .breed-img-wrap img {
    transform: scale(1.06);
}

.breed-card-home .breed-img-wrap .breed-count-badge {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;
    background: linear-gradient(135deg, var(--secondary-color), #d4af37);
    color: var(--white);
    padding: 0.3rem 0.75rem;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 700;
    font-family: 'Inter', sans-serif;
    display: flex;
    align-items: center;
    gap: 0.3rem;
    letter-spacing: 0.4px;
    text-transform: uppercase;
    box-shadow: 0 2px 8px rgba(185, 151, 91, 0.35);
}

.breed-card-home .breed-card-content {
    padding: 1.15rem 1.25rem;
}

.breed-card-home .breed-card-content h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0 0 0.4rem;
    line-height: 1.35;
}

.breed-card-home .breed-card-content .breed-listing-count {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.78rem;
    color: var(--text-light);
    font-weight: 500;
}

.breed-card-home .breed-card-content .breed-listing-count svg {
    color: var(--secondary-color);
    flex-shrink: 0;
}

.breed-card-home .breed-card-content .breed-view-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-top: 0.6rem;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--secondary-color);
    transition: var(--transition);
}

.breed-card-home:hover .breed-view-link {
    color: var(--primary-color);
}

.breed-card-home:hover .breed-view-link svg {
    transform: translateX(3px);
}

.breed-view-link svg {
    transition: var(--transition);
}

/* ── Feature Cards (Why Choose Us) ── */
.feature-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--white);
    border-radius: var(--border-radius);
    box-shadow: var(--shadow);
    transition: var(--transition);
    height: 100%;
    border: 1px solid var(--border-color);
    position: relative;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary-color), #d4af37);
    border-radius: 0 0 3px 3px;
    transition: width 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: rgba(185, 151, 91, 0.2);
}

.feature-card:hover::before {
    width: 60%;
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.75rem;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 2rem;
    position: relative;
    transition: var(--transition);
}

.feature-icon::after {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    border: 2px dashed rgba(185, 151, 91, 0.3);
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--secondary-color), #d4af37);
    transform: scale(1.05);
}

.feature-card:hover .feature-icon::after {
    border-color: rgba(185, 151, 91, 0.5);
    transform: rotate(45deg);
}

.feature-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 0.85rem;
}

.feature-description {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 0.95rem;
}

/* ── FAQ Section (Home) ── */
.faq-list-home {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.faq-item-home {
    background: var(--white);
    border-radius: 10px;
    border: 1px solid var(--border-color);
    box-shadow: 0 1px 4px rgba(27, 67, 50, 0.04);
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item-home:hover {
    border-color: rgba(185, 151, 91, 0.25);
    box-shadow: 0 2px 12px rgba(27, 67, 50, 0.06);
}

.faq-item-home.active {
    border-color: rgba(185, 151, 91, 0.35);
    box-shadow: 0 4px 16px rgba(27, 67, 50, 0.08);
}

.faq-q-home {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.25rem;
    cursor: pointer;
    gap: 1rem;
    transition: background 0.2s ease;
}

.faq-q-home:hover {
    background: rgba(248, 249, 250, 0.6);
}

.faq-q-home .faq-q-inner {
    display: flex;
    align-items: center;
    gap: 0.85rem;
    flex: 1;
    min-width: 0;
}

.faq-q-home .faq-num {
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--secondary-color);
    background: rgba(185, 151, 91, 0.1);
    padding: 0.25rem 0.5rem;
    border-radius: 5px;
    flex-shrink: 0;
}

.faq-q-home h3 {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 0;
    line-height: 1.4;
}

.faq-toggle-home {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    border-radius: 8px;
    transition: all 0.3s ease;
    background: var(--light-bg);
}

.faq-item-home.active .faq-toggle-home {
    background: var(--primary-color);
    color: var(--white);
    transform: rotate(45deg);
}

.faq-a-home {
    display: none;
    padding: 0 1.25rem 1.25rem 3.85rem;
    animation: faqFadeIn 0.3s ease;
}

.faq-item-home.active .faq-a-home {
    display: block;
}

.faq-a-home p {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: #4a5568;
    line-height: 1.7;
    margin: 0;
}

.faq-more-link {
    text-align: center;
    margin-top: 2rem;
}

.faq-more-link a {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--secondary-color);
    text-decoration: none;
    transition: var(--transition);
}

.faq-more-link a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* ── SEO Article ── */
.seo-article {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.seo-article-card {
    overflow: hidden;
}

.seo-article-body {
    text-align: left;
}

.seo-article-body h2,
.seo-article-body h3 {
    color: #173f35;
    font-weight: 700;
    letter-spacing: 0;
    text-align: left;
    margin: 2rem 0 1rem;
}

.seo-article-body h2 {
    font-size: 1.9rem;
}

.seo-article-body h3 {
    font-size: 1.35rem;
}

.seo-article-body p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #2c3e50;
    margin: 0;
}

.seo-article-body p + p,
.seo-article-body p + ul,
.seo-article-body p + ol,
.seo-article-body ul + p,
.seo-article-body ol + p,
.seo-article-body h2 + p,
.seo-article-body h3 + p {
    margin-top: 1.5rem;
}

.seo-article-body ul,
.seo-article-body ol {
    margin: 1.25rem 0 0 1.5rem;
    padding: 0;
}

.seo-article-body li {
    color: #2c3e50;
    font-size: 1.08rem;
    line-height: 1.8;
    margin-bottom: 0.6rem;
}

.seo-article-body blockquote {
    margin: 1.5rem 0;
    padding: 1.25rem 1.5rem;
    border-left: 4px solid #d9b24f;
    background: #f8f5ed;
    border-radius: 10px;
}

.seo-article-toggle-wrap {
    margin-top: 1.5rem;
}
.seo-article p {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

.seo-article a {
    color: #b7902d;
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.seo-article p + p {
    margin-top: 1.5rem;
}

.seo-article-read-more {
    white-space: nowrap;
}
.seo-article p strong {
    color: var(--text-dark);
    font-weight: 600;
}

/* ══════════════════════════════════════════════
   RESPONSIVE — Home
══════════════════════════════════════════════ */
@media (max-width: 991px) {
    .breeds-grid-home {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.25rem;
    }

    .stat-item::after {
        display: none;
    }

    .stat-number {
        font-size: 2.2rem;
    }

    .stat-label {
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 75vh;
    }

    .hero-content {
        padding: 1.5rem;
    }

    .hero-content .description {
        font-size: 0.95rem;
    }

    .breeds-grid-home {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .stat-item {
        padding: 1.2rem 0.75rem;
    }

    .stat-number {
        font-size: 2.0rem;
        margin-bottom: 0.35rem;
    }

    .stat-label {
        font-size: 0.8rem;
        letter-spacing: 1.2px;
    }

    .breed-card-home .breed-img-wrap {
        height: 160px;
    }

    .faq-q-home h3 {
        font-size: 0.88rem;
    }

    .faq-a-home {
        padding: 0 1rem 1rem 3.1rem;
    }
}

@media (max-width: 480px) {
    .hero-section {
        min-height: 70vh;
    }

    .breeds-grid-home {
        grid-template-columns: 1fr;
    }

    .stats-section .row {
        margin-left: 0;
        margin-right: 0;
    }

    .stats-section .row > [class*='col-'] {
        padding-left: 0;
        padding-right: 0;
    }

    .stat-item {
        padding: 1rem 0.5rem;
    }

    .stat-number {
        font-size: 1.8rem;
        margin-bottom: 0.25rem;
    }

    .stat-label {
        font-size: 0.78rem;
        letter-spacing: 1px;
        line-height: 1.25;
    }

    .faq-q-home .faq-num {
        display: none;
    }

.faq-a-home {
        padding: 0 1rem 1rem 1rem;
    }
}

/* Reuse dogs-for-sale card design on home without sidebar layout */
section.section-modern.dfs .content.home-latest-content {
    display: block !important;
    grid-template-columns: 1fr !important;
}


