.blog-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

.blog-hero {
    padding: 48px 0 32px;
    text-align: center;
}

.blog-hero__title {
    font-size: 32px;
    font-weight: 700;
    color: #152238;
}

.blog-hero__subtitle {
    margin-top: 12px;
    font-size: 16px;
    color: #4b5563;
}

.blog-filter {
    margin: 24px auto 32px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.blog-filter__link {
    display: inline-flex;
    align-items: center;
    padding: 10px 18px;
    border-radius: 999px;
    border: 1px solid #d1d5db;
    background: #ffffff;
    color: #374151;
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}

.blog-filter__link:hover,
.blog-filter__link:focus {
    border-color: #0eaa00;
    color: #0eaa00;
}

.blog-filter__link.is-active {
    background: #0eaa00;
    border-color: #0eaa00;
    color: #ffffff;
}

.blog-section {
    background: #f6f6f6;
    padding: 0 0 60px;
}

.blog-grid {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.blog-card {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(21, 34, 56, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(21, 34, 56, 0.12);
}

.blog-card__media {
    position: relative;
    overflow: hidden;
    border-radius: 20px 20px 0 0;
    background: #f7f9fc;
    aspect-ratio: 16 / 9;
    margin-bottom: 18px;
}

.blog-card__pin {
    position: absolute;
    top: 14px;
    left: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(14, 170, 0, 0.92);
    color: #ffffff;
    box-shadow: 0 8px 18px rgba(14, 170, 0, 0.3);
    font-size: 18px;
    pointer-events: none;
}

.blog-card__image-link,
.blog-card__video {
    display: block;
    width: 100%;
    height: 100%;
}

.blog-card__image-link img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-card__video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.blog-card__body {
    display: flex;
    flex-direction: column;
    gap: 12px;
    padding: 20px 22px 24px;
    flex: 1;
}

.blog-card__category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    background: rgba(14, 170, 0, 0.12);
    color: #0eaa00;
    text-transform: uppercase;
}

.blog-card__title {
    font-size: 20px;
    font-weight: 700;
    color: #152238;
    line-height: 1.4;
}

.blog-card__excerpt {
    color: #4b5563;
    font-size: 15px;
    line-height: 1.7;
    flex: 1;
}

.blog-card__meta {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 13px;
    color: #6b7280;
}

.blog-card__read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    font-weight: 600;
    color: #0eaa00;
    text-decoration: none;
}

.blog-card__read-more:hover {
    text-decoration: underline;
}

.blog-empty {
    text-align: center;
    padding: 60px 20px;
    color: #6b7280;
    font-size: 16px;
}

.blog-detail-wrapper {
    background: #f6f6f6;
    padding: 40px 16px 80px;
}

.blog-detail {
    max-width: 900px;
    margin: 0 auto;
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 18px 40px rgba(21, 34, 56, 0.12);
    padding: 40px 48px;
}

.blog-detail__category {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #0eaa00;
    background: rgba(14, 170, 0, 0.12);
    padding: 6px 14px;
    border-radius: 999px;
}

.blog-detail__title {
    margin-top: 20px;
    font-size: 34px;
    line-height: 1.3;
    color: #152238;
}

.blog-detail__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 18px;
    color: #6b7280;
    font-size: 14px;
}

.blog-detail__media {
    margin: 32px 0;
    border-radius: 18px;
    overflow: hidden;
    background: #f7f9fc;
}

.blog-detail__media img {
    width: 100%;
    display: block;
    object-fit: cover;
}

.blog-detail__media--video {
    background: #000;
    aspect-ratio: 16 / 9;
}

.blog-detail__media--video iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.blog-detail__content {
    font-size: 17px;
    line-height: 1.8;
    color: #374151;
}

.blog-detail__content p {
    margin-bottom: 18px;
}

.blog-detail__content img {
    max-width: 100%;
    border-radius: 12px;
    margin: 18px 0;
}

.blog-detail__content figure {
    margin: 24px 0;
    text-align: center;
}

.blog-detail__content figure img {
    width: 100%;
    height: auto;
    border-radius: 12px;
}

.blog-detail__content figure figcaption {
    font-size: 14px;
    color: #6b7280;
    margin-top: 8px;
}

.blog-detail__content iframe {
    display: block;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
    border-radius: 12px;
    margin: 24px 0;
    background: #000;
}

.blog-detail__content table {
    width: 100%;
    border-collapse: collapse;
    margin: 24px 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    overflow: hidden;
}

.blog-detail__content table caption {
    font-weight: 600;
    padding: 12px 16px;
    background: #f3f6fb;
    text-align: left;
}

.blog-detail__content table th,
.blog-detail__content table td {
    border: 1px solid #e5e7eb;
    padding: 12px 16px;
    text-align: left;
}

.blog-detail__content table th {
    background: #f3f6fb;
    font-weight: 600;
}

.blog-sidebar {
    max-width: 900px;
    margin: 48px auto 0;
}

.blog-sidebar__title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #152238;
}

.blog-sidebar__list {
    display: grid;
    gap: 14px;
}

.blog-sidebar__item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding: 14px 18px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 24px rgba(21, 34, 56, 0.08);
}

.blog-sidebar__item a {
    text-decoration: none;
    color: #152238;
    font-weight: 600;
}

.blog-sidebar__item a:hover {
    color: #0eaa00;
}

.blog-sidebar__date {
    font-size: 13px;
    color: #6b7280;
}

@media (max-width: 768px) {
    .blog-hero {
        padding: 32px 0 24px;
    }

    .blog-hero__title {
        font-size: 26px;
    }

    .blog-card__body {
        padding: 18px;
    }

    .blog-card__title {
        font-size: 18px;
    }

    .blog-detail {
        padding: 32px 24px;
    }

    .blog-detail__title {
        font-size: 28px;
    }
}

@media (max-width: 480px) {
    .blog-card__body {
        padding: 16px;
    }

    .blog-card__title {
        font-size: 17px;
    }

    .blog-detail {
        padding: 28px 20px;
    }

    .blog-detail__title {
        font-size: 24px;
    }
}

.blog-section-title {
    font-size: 24px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: #152238;
}

.blog-next {
    max-width: 900px;
    width: 100%;
    margin: 40px auto 0;
}

.blog-next__card {
    display: block;
    position: relative;
    padding: 24px 28px;
    border-radius: 24px;
    background: linear-gradient(135deg, rgba(15, 140, 7, 0.08), rgba(15, 140, 7, 0.02));
    border: 1px solid rgba(15, 140, 7, 0.12);
    text-decoration: none;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-next__card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 30px rgba(21, 34, 56, 0.12);
}

.blog-next__heading {
    font-size: 20px;
    font-weight: 700;
    color: #0f140d;
    margin-bottom: 10px;
}

.blog-next__excerpt {
    color: #4b5563;
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.6;
}

.blog-next__meta {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #0eaa00;
    font-weight: 600;
}

.blog-products {
    max-width: 900px;
    width: 100%;
    margin: 56px auto 0;
}

.blog-products__grid {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.blog-product-card {
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 12px 24px rgba(21, 34, 56, 0.1);
    overflow: hidden;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.blog-product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(21, 34, 56, 0.12);
}

.blog-product-card__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
}

.blog-product-card__thumb {
    width: 100%;
    padding-top: 62%;
    position: relative;
    background: #f7f9fc;
}

.blog-product-card__thumb img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.blog-product-card__body {
    flex: 1;
    padding: 18px 20px 22px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.blog-product-card__title {
    font-size: 16px;
    font-weight: 600;
    color: #152238;
    line-height: 1.4;
}

.blog-product-card__price {
    display: flex;
    align-items: baseline;
    gap: 10px;
}

.blog-product-card__price-current {
    font-size: 17px;
    font-weight: 700;
    color: #0eaa00;
}

.blog-product-card__price-old {
    font-size: 14px;
    color: #94a3b8;
    text-decoration: line-through;
}

@media (max-width: 768px) {
    .blog-section-title {
        font-size: 22px;
        margin-top: 32px;
    }

    .blog-next__card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .blog-products__grid {
        gap: 18px;
    }

    .blog-product-card__body {
        padding: 16px;
    }
}

.blog-next__content {
    display: flex;
    flex-direction: column;
    gap: 12px;
}
