.site-blog {
    min-height: 70vh;
    color: #173c3c;
    background: #f7faf9;
}

.site-blog__hero {
    padding: 72px 0 62px;
    text-align: center;
    background: linear-gradient(135deg, #e4f5f0, #eef8f7 58%, #fff);
}

.site-blog__hero span {
    display: inline-block;
    margin-bottom: 10px;
    color: #119fae;
    font-weight: 700;
}

.site-blog__hero h1 {
    margin: 0 0 14px;
    color: #153f42;
    font-size: clamp(2rem, 4vw, 3.4rem);
    font-weight: 900;
}

.site-blog__hero p {
    margin: 0;
    color: #5e7474;
    font-size: 1.08rem;
}

.site-blog__categories {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 36px;
}

.site-blog__categories a {
    padding: 10px 17px;
    border: 1px solid #dce9e6;
    border-radius: 999px;
    color: #486565;
    background: #fff;
    transition: .2s;
}

.site-blog__categories a:hover,
.site-blog__categories a.active {
    border-color: #119fae;
    color: #fff;
    background: #119fae;
}

.site-blog__categories small {
    margin-right: 5px;
    opacity: .7;
}

.site-blog__grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.site-blog-card {
    overflow: hidden;
    border: 1px solid #e4ecea;
    border-radius: 20px;
    background: #fff;
    box-shadow: 0 10px 30px rgba(26, 79, 78, .07);
    transition: transform .2s, box-shadow .2s;
}

.site-blog-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(26, 79, 78, .12);
}

.site-blog-card__media {
    display: block;
    aspect-ratio: 16 / 10;
    background: #dfeeea;
}

.site-blog-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.site-blog-card__placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #edf8f6, #e0f1f4);
}

.site-blog-card__placeholder img {
    width: min(55%, 170px);
    height: auto;
    object-fit: contain;
    opacity: .5;
}

.site-blog-card__body {
    padding: 22px;
}

.site-blog-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 12px;
}

.site-blog-card__tags a {
    color: #119fae;
    font-size: .82rem;
    font-weight: 700;
}

.site-blog-card h2,
.site-blog-card h3 {
    margin: 0 0 10px;
    font-size: 1.18rem;
    font-weight: 800;
    line-height: 1.75;
}

.site-blog-card h2 a,
.site-blog-card h3 a {
    color: #173c3c;
}

.site-blog-card p {
    color: #687b7b;
    line-height: 1.9;
}

.site-blog-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding-top: 14px;
    border-top: 1px solid #edf2f1;
    color: #829494;
    font-size: .84rem;
}

.site-blog__pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 34px;
}

.site-blog__pagination a,
.site-blog__pagination > span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 44px;
    padding: 9px 18px;
    border: 1px solid #d8e7e5;
    border-radius: 11px;
    color: #176f76;
    background: #fff;
    text-decoration: none;
    font-weight: 700;
}

.site-blog__pagination a:hover {
    color: #fff;
    border-color: #119fae;
    background: #119fae;
}

.site-blog__pagination .disabled {
    color: #a4b2b2;
    background: #f3f6f6;
}

.site-blog__pagination .site-blog__pagination-status {
    color: #536b6b;
    border-color: transparent;
    background: transparent;
}

.site-blog__empty {
    grid-column: 1 / -1;
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    background: #fff;
}

.site-blog-show__header {
    max-width: 900px;
    margin: 0 auto 34px;
    text-align: center;
}

.site-blog-show__brand {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 18px;
    color: #173c3c;
    font-weight: 800;
}

.site-blog-show__brand img {
    width: 108px;
    height: 34px;
    object-fit: contain;
}

.site-blog-show__header .site-blog-card__tags,
.site-blog-show__header .site-blog-card__meta {
    justify-content: center;
}

.site-blog-show__header .site-blog-card__meta {
    border: 0;
}

.site-blog-show__header h1 {
    color: #173c3c;
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.55;
}

.site-blog-show__cover {
    display: block;
    width: min(100%, 1050px);
    max-height: 620px;
    margin: 0 auto 35px;
    border-radius: 26px;
    object-fit: cover;
}

.site-blog-show__lead {
    max-width: 850px;
    margin: 0 auto 26px;
    padding: 22px 25px;
    border-right: 4px solid #119fae;
    border-radius: 14px;
    background: #eaf7f4;
    font-size: 1.12rem;
    line-height: 2;
}

.site-blog-show__content {
    max-width: 850px;
    margin: auto;
    padding: clamp(22px, 5vw, 54px);
    border-radius: 22px;
    background: #fff;
    font-size: 1.04rem;
    line-height: 2.15;
}

.site-blog-show__content h2,
.site-blog-show__content h3 {
    margin: 38px 0 15px;
    color: #173c3c;
    font-weight: 900;
}

.site-blog-show__content img {
    max-width: 100%;
    height: auto;
    margin: 22px auto;
    border-radius: 15px;
}

.site-blog-show__content a {
    color: #119fae;
    text-decoration: underline;
}

.site-blog-show__related {
    padding: 50px 0 70px;
    background: #eef7f5;
}

.site-blog-show__related > div > h2 {
    margin-bottom: 28px;
    text-align: center;
    font-weight: 900;
}

.site-blog-comments {
    padding: 20px 0 65px;
}

.site-blog-comments__inner {
    max-width: 850px;
    margin: auto;
}

.site-blog-comments__heading {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 18px;
}

.site-blog-comments__heading h2 {
    margin: 0;
    color: #173c3c;
    font-weight: 900;
}

.site-blog-comments__heading span {
    color: #829494;
}

.site-blog-comments__success {
    margin-bottom: 16px;
    padding: 14px 18px;
    border: 1px solid #b8e2d8;
    border-radius: 12px;
    color: #176b59;
    background: #eaf8f4;
}

.site-blog-comment-form {
    display: grid;
    gap: 16px;
    margin-bottom: 32px;
    padding: 24px;
    border: 1px solid #e4ecea;
    border-radius: 18px;
    background: #fff;
}

.site-blog-comment-form label {
    display: block;
    margin-bottom: 7px;
    color: #294c4c;
    font-weight: 700;
}

.site-blog-comment-form input,
.site-blog-comment-form textarea {
    width: 100%;
    padding: 12px 14px;
    border: 1px solid #d8e5e2;
    border-radius: 11px;
    color: #173c3c;
    background: #fbfdfc;
}

.site-blog-comment-form textarea {
    resize: vertical;
}

.site-blog-comment-form input:focus,
.site-blog-comment-form textarea:focus {
    border-color: #119fae;
    outline: 3px solid rgba(17, 159, 174, .12);
}

.site-blog-comment-form button {
    width: fit-content;
    padding: 11px 24px;
    border: 0;
    border-radius: 10px;
    color: #fff;
    background: #119fae;
    font-weight: 800;
}

.site-blog-comment-form small {
    color: #829494;
}

.site-blog-comment-form__honeypot {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
}

.site-blog-comment-form__error {
    margin: 6px 0 0;
    color: #b42318;
    font-size: .84rem;
}

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

.site-blog-comment {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 13px;
    padding: 20px;
    border: 1px solid #e4ecea;
    border-radius: 15px;
    background: #fff;
}

.site-blog-comment__avatar {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    color: #0f7982;
    background: #daf1ed;
    font-weight: 900;
}

.site-blog-comment header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
    margin-bottom: 8px;
}

.site-blog-comment time {
    color: #91a0a0;
    font-size: .82rem;
}

.site-blog-comment p {
    margin: 0;
    color: #5e7474;
    line-height: 1.9;
}

.site-blog-comments__empty {
    padding: 20px;
    border-radius: 12px;
    color: #708383;
    text-align: center;
    background: #eef7f5;
}

@media (max-width: 991px) {
    .site-blog__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .site-blog__hero {
        padding: 50px 15px;
    }

    .site-blog__grid {
        grid-template-columns: 1fr;
    }

    .site-blog-show__content {
        border-radius: 14px;
    }

    .site-blog-card__body {
        padding: 18px;
    }

    .site-blog__pagination {
        gap: 6px;
    }

    .site-blog__pagination a,
    .site-blog__pagination > span {
        min-height: 40px;
        padding: 8px 12px;
        font-size: .86rem;
    }
}
