body {
    color: #222831;
    background: #ffffff;
}

.blog-navbar {
    box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
}

.blog-navbar .navbar-brand img {
    object-fit: contain;
}

.blog-hero {
    min-height: 620px;
    display: flex;
    align-items: center;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(19, 22, 28, .88), rgba(19, 22, 28, .58), rgba(19, 22, 28, .18)),
        url("../img/banner.jpg") center/cover no-repeat;
    padding: 120px 0 80px;
}

.blog-kicker,
.post-category {
    display: inline-block;
    color: #7a5a00;
    background: #fed136;
    border-radius: 4px;
    padding: 6px 10px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.blog-hero .blog-kicker {
    margin-bottom: 22px;
}

.blog-hero h1 {
    max-width: 800px;
    font-size: 48px;
    line-height: 1.1;
    margin-bottom: 22px;
}

.blog-hero p {
    max-width: 650px;
    font-size: 19px;
    margin-bottom: 34px;
    color: rgba(255, 255, 255, .9);
}

.blog-featured {
    padding: 80px 0;
}

.featured-image,
.post-card img,
.post-cover {
    width: 100%;
    object-fit: cover;
}

.featured-image {
    height: 360px;
    border-radius: 8px;
}

.blog-featured h2 {
    font-size: 36px;
    margin: 18px 0;
}

.post-meta {
    color: #6c757d;
    font-size: 14px;
}

.post-card {
    overflow: hidden;
    border: 1px solid #e7e9ee;
    border-radius: 8px;
    background: #fff;
    transition: transform .2s ease, box-shadow .2s ease;
}

.post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 34px rgba(22, 28, 45, .11);
}

.post-card img {
    height: 210px;
}

.post-card-body {
    padding: 24px;
}

.post-card h3 {
    font-size: 21px;
    line-height: 1.3;
    margin: 14px 0 12px;
}

.post-card h3 a {
    color: #222831;
}

.post-card h3 a:hover {
    color: #b98b00;
    text-decoration: none;
}

.post-card p {
    color: #596170;
    margin-bottom: 18px;
}

.empty-state {
    padding: 50px;
    border: 1px dashed #cfd5df;
    border-radius: 8px;
    background: #fff;
}

.category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.category-list a {
    color: #222831;
    border: 1px solid #d7dbe3;
    border-radius: 4px;
    padding: 12px 16px;
    background: #fff;
    font-weight: 700;
}

.category-list a:hover {
    color: #7a5a00;
    border-color: #fed136;
    text-decoration: none;
}

.post-page {
    padding-top: 80px;
}

.post-header {
    color: #fff;
    background: #212529;
    padding: 90px 0 70px;
}

.post-header h1 {
    max-width: 900px;
    font-size: 46px;
    line-height: 1.12;
    margin: 20px 0;
}

.post-header p {
    max-width: 760px;
    color: rgba(255, 255, 255, .82);
    font-size: 19px;
}

.post-cover {
    height: 430px;
    margin: 45px 0;
    border-radius: 8px;
}

.post-content {
    max-width: 760px;
    margin: 0 auto;
    font-size: 18px;
}

.post-content p {
    margin-bottom: 24px;
}

.post-actions {
    max-width: 760px;
    margin: 40px auto 80px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.contact-page {
    padding-top: 90px;
}

.contact-page h1 {
    font-size: 42px;
    margin-bottom: 18px;
}

.contact-list {
    display: grid;
    gap: 14px;
    margin-top: 30px;
}

.contact-list a {
    color: #222831;
    font-weight: 700;
}

.contact-list i {
    color: #b98b00;
    width: 28px;
}

.contact-form {
    border: 1px solid #e2e6ed;
    border-radius: 8px;
    padding: 28px;
    background: #fff;
    box-shadow: 0 12px 28px rgba(22, 28, 45, .08);
}

.blog-footer {
    border-top: 1px solid #e7e9ee;
    background: #f8f9fa;
}

@media (max-width: 767px) {
    .blog-hero {
        min-height: 560px;
        padding-top: 120px;
    }

    .blog-hero h1,
    .post-header h1 {
        font-size: 34px;
    }

    .blog-hero p,
    .post-header p {
        font-size: 17px;
    }

    .featured-image,
    .post-cover {
        height: 260px;
    }

    .post-card img {
        height: 190px;
    }
}
