 footer{
        font-family: 'Raleway', sans-serif;
    }
        h1 {
          font-family: 'Montserrat', sans-serif;
          font-weight: 700; /* Bold */
        }
        header{
        font-family: 'Montserrat', sans-serif;
    }
        body {
            font-family: serif;
            color: #5D4037;
        }
        .logo {
            font-size: 24px;
            font-weight: bold;
            color: #8D6E63;
        }
        .language a {
            color: #5D4037;
            text-decoration: none;
            margin-right: 10px;
        }

.blog-hero {
    padding: 4rem 0 2.5rem;
    text-align: center;
}

.blog-hero .eyebrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    font-size: 0.82rem;
    letter-spacing: 0.28em;
    font-weight: 700;
    text-transform: uppercase;
    color: #8d6e63;
}

.blog-hero h1 {
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(2.6rem, 4vw, 3.8rem);
    font-weight: 800;
    line-height: 1.03;
    margin-bottom: 1rem;
}

.blog-hero p.lead {
    max-width: 760px;
    margin: 0 auto;
    color: #5a4537;
    line-height: 1.85;
    font-size: 1.05rem;
}

.blog-grid {
    padding-bottom: 3rem;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid rgba(70, 50, 35, 0.12);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 18px 35px rgba(46, 29, 18, 0.09);
    transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
    min-height: 100%;
}

.blog-card:hover {
    transform: translateY(-6px);
    border-color: rgba(70, 50, 35, 0.2);
    box-shadow: 0 24px 48px rgba(46, 29, 18, 0.14);
}

.card-image {
    position: relative;
    height: 520px;
    overflow: hidden;
    background: #e9e1d7;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

@media (max-width: 992px) {
    .card-image {
        height: 460px;
    }
}

@media (max-width: 768px) {
    .card-image {
        height: 420px;
    }
}

@media (max-width: 576px) {
    .card-image {
        height: 340px;
    }
}

@media (max-width: 576px) {
    .card-image {
        height: 260px;
    }
}

.blog-card-body {
    padding: 1.8rem 1.6rem 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.blog-card-meta {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.75rem;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    color: #8b6d54;
}

.blog-card-meta span {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size:x-large;
}

.blog-card-meta span:last-child {
    margin-left: auto;
}

.blog-badge {
    padding: 0.45rem 0.85rem;
    border-radius: 999px;
    background: #f3e7dd;
    color: #8a6b53;
    font-weight: 700;
    letter-spacing: 0.02em;
}

.blog-card-body h2 {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.2rem;
    line-height: 1.22;
    margin: 0 0 1rem;
    color: #2f231c;
}

.blog-card-body p {
    color: #5e4b3f;
    line-height: 1.8;
    margin-bottom: 1.75rem;
    font-size: 0.98rem;
}

.blog-card-footer {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.blog-card-footer .blog-cta {
    padding: 0.95rem 1.5rem;
    border-radius: 999px;
    background: #5d483b;
    color: #fff;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s ease;
}

.blog-card-footer .blog-cta:hover {
    background: #80634d;
}

.blog-read-time {
    font-size: 0.92rem;
    color: #7a5f4f;
}

.blog-footer-note {
    text-align: center;
    margin-top: 2rem;
    font-size: 0.95rem;
    color: #6a5448;
}

footer {
        background-color: #8D6E63;
        color: white;
        padding: 10px 0;
    }
    footer a {
        color: white;
        text-decoration: none;
        margin-right: 15px;
    }
 footer{
        font-family: 'Raleway', sans-serif;
    }
     

@media (max-width: 991px) {
    .blog-card {
        border-radius: 22px;
    }

    .blog-card-body {
        padding: 1.5rem;
    }
}

@media (max-width: 576px) {
    .blog-hero {
        padding: 2.5rem 0 1.5rem;
    }

    .blog-card {
        border-radius: 20px;
    }
}
