main.blog-page {
    background: #eee7e2;
    min-height: calc(100vh - 80px);
    padding-bottom: 60px;
}

.blog-hero {
    background: #263238;
    color: #fff;
    padding: 48px 0 36px;
}

.blog-hero h1 {
    margin: 0;
    color: #ff6e3b;
    font-weight: 700;
}

.blog-hero p {
    margin-top: 10px;
    color: #fff;
    max-width: 780px;
    font-size: 1.9rem;
}

.blog-list {
    padding-top: 28px;
}

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

.blog-card {
    background: #fff;
    border: 1px solid #263238;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.blog-card-image-link {
    display: block;
}

.blog-card-image {
    width: 100%;
    max-height: 220px;
    object-fit: cover;
    border-bottom: 1px solid #d9d9d9;
}

.blog-card-body {
    padding: 18px;
}

.blog-card h2 {
    margin-top: 8px;
    margin-bottom: 10px;
    font-size: 2.5rem;
    line-height: 1.15;
}

.blog-card h2 a {
    color: #263238;
}

.blog-card h2 a:hover {
    color: #ff6e3b;
    text-decoration: none;
}

.blog-card p {
    font-size: 1.7rem;
    color: #263238;
}

.blog-card-meta {
    color: #6c7e8f;
    font-size: 1.3rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.blog-read-more {
    display: inline-block;
    margin-top: 10px;
    color: #ff6e3b;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 1.2rem;
    letter-spacing: 0.04rem;
}

.blog-post {
    padding-top: 26px;
}

.blog-back-link {
    display: inline-block;
    color: #263238;
    font-size: 1.4rem;
    margin-bottom: 16px;
}

.blog-back-link:hover {
    color: #ff6e3b;
    text-decoration: none;
}

.blog-post-header {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #263238;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    padding: 22px;
}

.blog-post-header h1 {
    margin-top: 0;
    margin-bottom: 10px;
    color: #263238;
    font-size: 4rem;
    line-height: 1.1;
}

.blog-post-cover {
    margin-top: 18px;
    width: 100%;
    border-radius: 6px;
}

.blog-post-content {
    background: #fff;
    border-radius: 8px;
    border: 1px solid #263238;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
    margin-top: 18px;
    padding: 26px;
    color: #263238;
    font-size: 1.8rem;
}

.blog-post-content h1,
.blog-post-content h2,
.blog-post-content h3,
.blog-post-content h4,
.blog-post-content h5,
.blog-post-content h6 {
    color: #263238;
    margin-top: 24px;
}

.blog-post-content p {
    font-size: 1.8rem;
}

.blog-post-content a {
    color: #263238;
    box-shadow: inset 0 -2px 0 #ff6e3b;
}

.blog-post-content a:hover {
    box-shadow: inset 0 -3px 0 #ff6e3b;
    text-decoration: none;
}

.blog-post-content img {
    max-width: 100%;
    border-radius: 6px;
}

.blog-post-content pre {
    background: #263238;
    border: none;
    color: #f6f7f7;
    padding: 16px;
}

@media only screen and (max-width: 767px) {
    .blog-hero {
        padding-top: 24px;
    }

    .blog-hero p {
        font-size: 1.6rem;
    }

    .blog-post-header h1 {
        font-size: 3rem;
    }

    .blog-post-content {
        padding: 18px;
        font-size: 1.7rem;
    }
}
