.blog-page .navbar.scrolled {
    background: rgba(10, 10, 10, 0.95);
}

.blog-nav-active {
    color: var(--secondary-color);
}

.blog-nav-active::after {
    width: 100%;
}

.blog-page .policy-hero {
    padding-top: 120px;
}

.blog-main {
    padding-bottom: 100px;
}

.blog-list-grid {
    gap: 26px;
}

.blog-post-card {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.blog-post-thumb {
    display: block;
    border-radius: 14px;
    overflow: hidden;
}

.blog-post-thumb img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.blog-post-thumb:hover img {
    transform: scale(1.04);
}

.blog-post-meta {
    color: #8b7355;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.3px;
    text-transform: uppercase;
}

.blog-post-card h2 {
    font-size: clamp(1.7rem, 3vw, 2.25rem);
}

.blog-post-card h2 a:hover {
    color: var(--secondary-color);
}

.blog-post-card p {
    color: #555;
}

.blog-read-btn {
    margin-top: auto;
    align-self: flex-start;
    padding: 11px 20px;
    background: #111111 !important;
    color: #ffffff !important;
    border: 2px solid #111111 !important;
    box-shadow: none !important;
}

.blog-read-btn:hover,
.blog-read-btn:focus-visible {
    background: #000000 !important;
    color: #ffffff !important;
    border-color: #000000 !important;
    transform: translateY(-2px);
}

.blog-empty {
    text-align: left;
}

.blog-post-image-wrap {
    width: 100%;
}

.blog-post-image-wrap img {
    width: 100%;
    max-height: 68vh;
    object-fit: cover;
    display: block;
}

.blog-article-card {
    padding: 38px 36px;
}

.blog-article-content {
    max-width: 760px;
}

.blog-article-content h2 {
    margin: 30px 0 14px;
    font-size: clamp(1.8rem, 3vw, 2.5rem);
    color: var(--text-dark);
}

.blog-article-content p {
    margin-bottom: 16px;
    color: #4f4f4f;
    line-height: 1.9;
}

.blog-article-content ul {
    margin: 0 0 22px 20px;
    display: grid;
    gap: 10px;
}

.blog-article-content li {
    color: #4f4f4f;
}

.blog-back-inline {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.blog-back-inline:hover {
    color: var(--secondary-color);
}

.blog-back-row {
    margin-top: 20px;
}

.blog-back-link {
    color: var(--secondary-color);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.blog-back-link:hover {
    color: #a98a54;
}

@media (max-width: 900px) {
    .blog-list-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .blog-page .policy-hero {
        padding-top: 102px;
    }

    .blog-main {
        padding-bottom: 70px;
    }

    .blog-post-thumb img {
        height: 190px;
    }

    .blog-post-image-wrap img {
        max-height: 42vh;
    }

    .blog-article-card {
        padding: 28px 22px;
    }
}
