.baka-blog-foundation-page .entry-header,
.baka-blog-foundation-page .entry-title {
    display: none !important;
}

.baka-blog-foundation-page .site-content,
.baka-blog-foundation-page .ast-container,
.baka-blog-foundation-page .content-area,
.baka-blog-foundation-page .site-main,
.baka-blog-foundation-page article.page,
.baka-blog-foundation-page .entry-content {
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.baka-blog-archive {
    width: min(1200px, 100%);
    margin: 0 auto;
    padding: 56px 24px 72px;
    box-sizing: border-box;
}

.baka-blog-hero {
    max-width: 860px;
    margin: 0 auto 38px;
    text-align: center;
}

.baka-blog-eyebrow {
    margin: 0 0 10px;
    color: #1eb7aa;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
}

.baka-blog-hero h1,
.baka-article-header h1 {
    display: block !important;
    margin: 0;
    color: #1a1a1a;
    font-size: clamp(2rem, 4vw, 3.25rem);
    line-height: 1.14;
}

.baka-blog-intro {
    margin: 18px auto 0;
    color: #555;
    font-size: 1.05rem;
    line-height: 1.75;
}

.baka-blog-categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-top: 26px;
}

.baka-blog-categories a {
    padding: 8px 14px;
    border: 1px solid #e8e8e8;
    border-radius: 999px;
    color: #333;
    text-decoration: none;
}

.baka-blog-categories a:hover {
    border-color: #1eb7aa;
    color: #179b8f;
}

.baka-blog-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.baka-blog-card {
    min-width: 0;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    background: #fff;
    box-shadow: 0 3px 14px rgba(0, 0, 0, .04);
}

.baka-blog-card-image,
.baka-blog-card-image img {
    display: block;
    width: 100%;
}

.baka-blog-card-image img {
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.baka-blog-card-body {
    padding: 20px;
}

.baka-blog-card time {
    color: #888;
    font-size: .82rem;
}

.baka-blog-card h2 {
    margin: 8px 0 10px;
    font-size: 1.2rem;
    line-height: 1.4;
}

.baka-blog-card h2 a {
    color: #1a1a1a;
    text-decoration: none;
}

.baka-blog-card p {
    color: #666;
    line-height: 1.65;
}

.baka-blog-readmore {
    color: #179b8f;
    font-weight: 700;
    text-decoration: none;
}

.baka-blog-pagination ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 38px 0 0;
    padding: 0;
    list-style: none;
}

.baka-blog-pagination a,
.baka-blog-pagination span {
    display: block;
    padding: 8px 12px;
    border: 1px solid #e8e8e8;
    text-decoration: none;
}

.baka-blog-pagination .current {
    border-color: #1eb7aa;
    background: #1eb7aa;
    color: #fff;
}

.single-post .entry-header {
    display: none !important;
}

.baka-article-header {
    margin: 0 0 28px;
}

.baka-author-box {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
    padding: 12px 16px;
    border-left: 3px solid #1eb7aa;
    border-radius: 4px;
    background: #f8f6f3;
    color: #666;
    font-size: .9rem;
}

.baka-product-carousel {
    clear: both;
    margin-top: 48px;
}

.baka-product-carousel h2 {
    margin-bottom: 20px;
}

.baka-related-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.baka-carousel-item {
    min-width: 0;
}

.baka-carousel-item a,
.baka-carousel-item img,
.baka-carousel-item span {
    display: block;
}

.baka-carousel-item a {
    color: #333;
    text-decoration: none;
}

.baka-carousel-item img {
    width: 100%;
    height: auto;
}

.baka-carousel-item span {
    margin-top: 9px;
    line-height: 1.4;
}

@media (max-width: 900px) {
    .baka-blog-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .baka-related-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .baka-blog-archive {
        padding: 36px 16px 56px;
    }

    .baka-blog-grid {
        grid-template-columns: 1fr;
    }

    .baka-blog-card-image img {
        aspect-ratio: 16 / 10;
    }

    .baka-related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

