/* ===================== Blog pages ===================== */

.blog-hero {
    background: linear-gradient(180deg, #f8f5ef 0%, #fdfaf3 100%);
    border-bottom: 1px solid #ece6d6;
    padding: 64px 0 56px;
}

.blog-eyebrow {
    display: inline-block;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 12px;
    color: #8a7a55;
    font-weight: 600;
    margin-bottom: 12px;
}

.blog-hero-title {
    font-size: clamp(2rem, 5vw, 3.4rem);
    font-weight: 700;
    color: #1f1d18;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.blog-hero-intro {
    color: #5b554a;
    max-width: 640px;
    margin: 0 auto;
    font-size: 1.05rem;
    line-height: 1.7;
}

.blog-section {
    padding: 70px 0;
    background: #ffffff;
}

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.blog-card {
    background: #fff;
    border: 1px solid #ece6d6;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .25s ease, box-shadow .25s ease;
    box-shadow: 0 4px 18px rgba(20, 16, 8, 0.04);
}

.blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(20, 16, 8, 0.08);
}

.blog-card-img {
    aspect-ratio: 16 / 10;
    background: #f3ead4;
    overflow: hidden;
    display: block;
}

.blog-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}

.blog-card:hover .blog-card-img img {
    transform: scale(1.05);
}

.blog-card-body {
    padding: 22px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    flex: 1 1 auto;
}

.blog-card-meta {
    font-size: 12px;
    color: #8a7a55;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-card-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #1f1d18;
    line-height: 1.35;
    margin: 0;
}

.blog-card-title a {
    color: inherit;
    text-decoration: none;
}

.blog-card-title a:hover {
    color: #b07e46;
}

.blog-card-excerpt {
    color: #5b554a;
    font-size: .95rem;
    line-height: 1.6;
    flex: 1 1 auto;
}

.blog-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #b07e46;
    font-weight: 600;
    text-decoration: none;
    font-size: .95rem;
    margin-top: 6px;
}

.blog-card-link:hover {
    color: #8a5d2c;
}

.blog-empty {
    text-align: center;
    color: #8a7a55;
    padding: 60px 0;
    font-size: 1.05rem;
}

.blog-pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
}

/* ===================== Single Blog ===================== */

.blog-single {
    padding: 60px 0 80px;
    background: #ffffff;
}

.blog-single-breadcrumb {
    color: #8a7a55;
    font-size: 13px;
    margin-bottom: 18px;
}

.blog-single-breadcrumb a {
    color: #8a7a55;
    text-decoration: none;
}

.blog-single-breadcrumb a:hover {
    color: #b07e46;
}

.blog-single-breadcrumb .sep {
    margin: 0 8px;
    color: #c5b58c;
}

.blog-single-title {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    color: #1f1d18;
    line-height: 1.25;
    margin-bottom: 14px;
}

.blog-single-meta {
    color: #8a7a55;
    font-size: 13px;
    margin-bottom: 26px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.blog-single-cover {
    width: 100%;
    aspect-ratio: 16 / 8;
    background: #f3ead4;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 32px;
}

.blog-single-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-single-content {
    color: #2e2a23;
    font-size: 1.05rem;
    line-height: 1.85;
    max-width: 780px;
    margin: 0 auto;
}

.blog-single-content h2 {
    font-size: 1.6rem;
    color: #1f1d18;
    margin: 32px 0 14px;
    font-weight: 700;
}

.blog-single-content h3 {
    font-size: 1.25rem;
    color: #1f1d18;
    margin: 26px 0 12px;
    font-weight: 700;
}

.blog-single-content p {
    margin-bottom: 18px;
}

.blog-single-content ul,
.blog-single-content ol {
    margin: 0 0 18px 0;
    padding-inline-start: 22px;
}

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

.blog-single-content strong {
    color: #1f1d18;
}

.blog-related {
    background: #fdfaf3;
    padding: 60px 0;
    border-top: 1px solid #ece6d6;
}

.blog-related-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1f1d18;
    margin-bottom: 28px;
    text-align: center;
}
