/* ===========================
   Blog-Specific Styles
   Her Summer Beauty
   =========================== */

/* Site Footer */
.site-footer {
    background: #3d3935;
    padding: 40px 30px;
    border-top: 2px solid #c9a962;
}

.footer-inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.footer-nav a {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.7);
    text-decoration: none;
    transition: color 0.2s;
}

.footer-nav a:hover {
    color: #c9a962;
}

.footer-disclosure {
    font-family: Georgia, serif;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
    line-height: 1.6;
    margin-bottom: 15px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-copyright {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    letter-spacing: 1px;
}

/* Navigation (active) */
.nav-inner a.nav-active {
    color: #c9a962;
}

/* Breadcrumbs */
.breadcrumb {
    max-width: 800px;
    margin: 0 auto;
    padding: 15px 20px 0;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 12px;
    color: #999;
}

.breadcrumb a {
    color: #999;
    text-decoration: none;
    transition: color 0.2s;
}

.breadcrumb a:hover {
    color: #c9a962;
}

.breadcrumb .separator {
    margin: 0 8px;
    color: #ccc;
}

.breadcrumb .current {
    color: #666;
}

/* Blog Index - Hero Feature Card */
.blog-hero-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #faf8f5;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    margin-bottom: 40px;
    transition: box-shadow 0.2s;
}

.blog-hero-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.blog-hero-card .card-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
}

.blog-hero-card .card-body {
    padding: 30px 35px;
}

.blog-hero-card .card-tag {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c9a962;
    margin-bottom: 10px;
    display: block;
}

.blog-hero-card .card-title {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.blog-hero-card .card-excerpt {
    font-family: Georgia, serif;
    font-size: 16px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 15px;
}

.blog-hero-card .card-meta {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 12px;
    color: #999;
}

/* Blog Index - Article Card Grid */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.blog-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.blog-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.blog-card .card-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.blog-card .card-body {
    padding: 20px 22px;
}

.blog-card .card-tag {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c9a962;
    margin-bottom: 8px;
    display: block;
}

.blog-card .card-title {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 10px;
    line-height: 1.3;
}

.blog-card .card-excerpt {
    font-family: Georgia, serif;
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
}

.blog-card .card-meta {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 11px;
    color: #999;
}

/* Related Articles Section */
.related-articles {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px solid #1a1a1a;
}

.related-articles h2 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 30px;
    color: #1a1a1a;
}

.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.related-card {
    display: block;
    text-decoration: none;
    color: inherit;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.related-card:hover {
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.related-card .card-image {
    width: 100%;
    height: 150px;
    object-fit: cover;
    background: #f5f3f0;
}

.related-card .card-body {
    padding: 15px 18px;
}

.related-card .card-title {
    font-family: 'Playfair Display', serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.3;
    margin-bottom: 8px;
}

.related-card .card-meta {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 11px;
    color: #999;
}

/* Pinterest Save Button */
.pinterest-save {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #E60023;
    text-decoration: none;
    padding: 8px 16px;
    border: 1px solid #E60023;
    border-radius: 20px;
    margin: 15px 0 25px;
    transition: all 0.2s;
}

.pinterest-save:hover {
    background: #E60023;
    color: #fff;
}

.pinterest-save svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
}

/* Inline Product Card (for articles) */
.inline-product-card {
    background: #faf8f5;
    border: 2px solid #c9a962;
    border-radius: 4px;
    padding: 30px;
    margin: 35px 0;
    text-align: center;
    box-shadow: 0 4px 20px rgba(201, 169, 98, 0.15);
}

.inline-product-card .product-label {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c9a962;
    margin-bottom: 12px;
}

.inline-product-card .product-name {
    font-family: 'Bodoni Moda', Georgia, serif;
    font-size: 24px;
    font-weight: 400;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.inline-product-card .product-desc {
    font-family: Georgia, serif;
    font-size: 15px;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.inline-product-card .product-cta {
    display: inline-block;
    background: #1a1a1a;
    color: #c9a962;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 14px 32px;
    text-decoration: none;
    border: 2px solid #c9a962;
    transition: all 0.3s ease;
}

.inline-product-card .product-cta:hover {
    background: #c9a962;
    color: #1a1a1a;
}

/* Homepage Hero Section */
.homepage-hero {
    background: #3d3935;
    padding: 60px 30px;
    text-align: center;
    border-bottom: 2px solid #c9a962;
}

.homepage-hero .hero-tagline {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #c9a962;
    margin-bottom: 15px;
}

.homepage-hero .hero-heading {
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.3;
}

.homepage-hero .hero-subheading {
    font-family: Georgia, serif;
    font-size: 18px;
    color: rgba(255,255,255,0.7);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 28px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.section-header p {
    font-family: Georgia, serif;
    font-size: 16px;
    color: #888;
}

/* Featured Listicle Link */
.featured-listicle {
    display: block;
    background: linear-gradient(135deg, #faf8f5 0%, #f5f3f0 100%);
    border: 2px solid #c9a962;
    border-radius: 4px;
    padding: 30px 35px;
    text-decoration: none;
    color: inherit;
    margin-bottom: 40px;
    text-align: center;
    transition: box-shadow 0.2s;
}

.featured-listicle:hover {
    box-shadow: 0 4px 20px rgba(201, 169, 98, 0.2);
}

.featured-listicle .fl-label {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #c9a962;
    margin-bottom: 8px;
}

.featured-listicle .fl-title {
    font-family: 'Playfair Display', serif;
    font-size: 22px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.featured-listicle .fl-desc {
    font-family: Georgia, serif;
    font-size: 15px;
    color: #666;
}

/* Ordered List Styling for How-To Articles */
.content ol {
    margin: 25px 0;
    padding-left: 0;
    counter-reset: step-counter;
    list-style: none;
}

.content ol li {
    counter-increment: step-counter;
    position: relative;
    padding-left: 50px;
    margin-bottom: 25px;
    font-family: Georgia, serif;
    font-size: 16px;
    line-height: 1.7;
    color: #1a1a1a;
}

.content ol li::before {
    content: counter(step-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background: #c9a962;
    color: #fff;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    font-weight: 700;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Unordered List Styling */
.content ul {
    margin: 25px 0;
    padding-left: 0;
    list-style: none;
}

.content ul li {
    position: relative;
    padding-left: 25px;
    margin-bottom: 12px;
    font-family: Georgia, serif;
    font-size: 16px;
    line-height: 1.7;
    color: #1a1a1a;
}

.content ul li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    color: #2d6a4f;
    font-weight: bold;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin: 10px 0 50px;
    flex-wrap: wrap;
}

.page-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    padding: 0 14px;
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: #1a1a1a;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    text-decoration: none;
    cursor: pointer;
    transition: all 0.2s;
}

.page-btn:hover {
    border-color: #c9a962;
    color: #c9a962;
}

.page-btn.page-active {
    background: #1a1a1a;
    color: #c9a962;
    border-color: #1a1a1a;
    cursor: default;
}

.page-ellipsis {
    font-family: 'Source Sans Pro', sans-serif;
    font-size: 14px;
    color: #999;
    padding: 0 4px;
}

/* Responsive - Blog Specific */
@media (max-width: 900px) {
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .related-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .related-card .card-image {
        height: 180px;
    }

    .blog-hero-card .card-body {
        padding: 20px 22px;
    }

    .blog-hero-card .card-title {
        font-size: 22px;
    }

    .blog-hero-card .card-image {
        height: 200px;
    }

    .homepage-hero {
        padding: 40px 20px;
    }

    .homepage-hero .hero-heading {
        font-size: 28px;
    }

    .homepage-hero .hero-subheading {
        font-size: 16px;
    }

    .footer-nav {
        gap: 15px;
    }

    .inline-product-card {
        padding: 25px 20px;
    }

    .inline-product-card .product-name {
        font-size: 20px;
    }

    .section-header h2 {
        font-size: 24px;
    }

    .featured-listicle {
        padding: 25px 20px;
    }

    .featured-listicle .fl-title {
        font-size: 20px;
    }

    .content ol li {
        font-size: 15px;
        padding-left: 45px;
    }

    .content ul li {
        font-size: 15px;
    }
}

@media (max-width: 480px) {
    .blog-hero-card .card-title {
        font-size: 20px;
    }

    .blog-card .card-title {
        font-size: 18px;
    }

    .related-card .card-title {
        font-size: 15px;
    }

    .homepage-hero .hero-heading {
        font-size: 24px;
    }

    .inline-product-card .product-cta {
        padding: 12px 24px;
        font-size: 12px;
    }
}
