.content-page {
    min-height: 70vh;
    background: #fbfaf5;
    color: #173f35;
    font-family: Inter, Arial, Helvetica, sans-serif;
    overflow-x: hidden;
}

.content-shell {
    width: min(1440px, calc(100% - 48px));
    margin: 0 auto;
    padding: 34px 0 72px;
}

.content-breadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
    color: #5e675f;
    font-size: 14px;
}

.content-breadcrumb a {
    color: #2f5b45;
    font-weight: 700;
    text-decoration: none;
}

.content-breadcrumb a:hover {
    color: #678d39;
}

.content-hero {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 26px;
    padding: 28px;
    border: 1px solid rgba(24, 61, 51, 0.14);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 10px 24px rgba(24, 61, 51, 0.07);
}

.content-eyebrow {
    display: block;
    color: #678d39;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

.content-hero h1 {
    margin: 8px 0 0;
    color: #183d33;
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 900;
    line-height: 1.15;
}

.content-hero p {
    margin: 8px 0 0;
    color: #4f5d52;
    font-size: 15px;
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 28px;
    align-items: start;
}

.content-main,
.content-sidebar-card,
.contact-card,
.intro-card {
    border: 1px solid rgba(24, 61, 51, 0.14);
    border-radius: 24px;
    background: #fff;
    box-shadow: 0 8px 22px rgba(24, 61, 51, 0.08);
}

.content-main,
.intro-card,
.contact-card {
    padding: 26px;
}

.content-sidebar {
    display: grid;
    gap: 18px;
}

.content-sidebar-card {
    padding: 20px;
}

.content-sidebar-card h2 {
    margin: 0 0 14px;
    color: #183d33;
    font-size: 18px;
    font-weight: 900;
}

.news-grid-modern {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.news-card-modern {
    display: grid;
    min-width: 0;
    overflow: hidden;
    border: 1px solid rgba(24, 61, 51, 0.14);
    border-radius: 22px;
    color: inherit;
    background: #fff;
    text-decoration: none;
    box-shadow: 0 8px 22px rgba(24, 61, 51, 0.08);
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.news-card-modern:hover {
    color: inherit;
    border-color: rgba(103, 141, 57, 0.36);
    box-shadow: 0 14px 30px rgba(24, 61, 51, 0.14);
    transform: translateY(-4px);
}

.news-card-modern img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    background: #f5f1e7;
}

.news-card-body {
    display: grid;
    gap: 10px;
    padding: 17px;
}

.news-card-body time,
.news-meta {
    color: #6f766f;
    font-size: 13px;
    font-weight: 700;
}

.news-card-body h2 {
    display: -webkit-box;
    min-height: 52px;
    margin: 0;
    overflow: hidden;
    color: #183d33;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.45;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.news-card-body p {
    display: -webkit-box;
    margin: 0;
    overflow: hidden;
    color: #4f5d52;
    font-size: 14px;
    line-height: 1.6;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.content-action {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 40px;
    margin-top: 4px;
    padding: 0 18px;
    border-radius: 999px;
    color: #fff;
    background: #183d33;
    font-size: 13px;
    font-weight: 800;
}

.sidebar-news-list {
    display: grid;
    gap: 14px;
}

.sidebar-news-item {
    display: grid;
    grid-template-columns: 78px minmax(0, 1fr);
    gap: 12px;
    color: inherit;
    text-decoration: none;
}

.sidebar-news-item img {
    width: 78px;
    height: 62px;
    border-radius: 12px;
    object-fit: cover;
    background: #f5f1e7;
}

.sidebar-news-item span {
    display: -webkit-box;
    overflow: hidden;
    color: #183d33;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.4;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.simple-link-list {
    display: grid;
    gap: 8px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.simple-link-list a {
    display: block;
    padding: 9px 0;
    border-bottom: 1px solid rgba(24, 61, 51, 0.08);
    color: #243f36;
    font-size: 14px;
    font-weight: 800;
    line-height: 1.35;
    text-decoration: none;
}

.simple-link-list a:hover {
    color: #678d39;
}

.pagination-modern {
    display: flex;
    justify-content: center;
    gap: 7px;
    flex-wrap: wrap;
    margin: 28px 0 0;
}

.pagination-modern .page-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    border: 1px solid rgba(24, 61, 51, 0.16);
    border-radius: 999px;
    color: #183d33;
    background: #fff;
    font-weight: 800;
    text-decoration: none;
}

.pagination-modern .active .page-link,
.pagination-modern .page-link:hover {
    border-color: #183d33;
    color: #fff;
    background: #183d33;
}

.pagination-modern .disabled .page-link {
    color: #737c74;
    background: #f5f2ea;
}

.article-card {
    overflow: hidden;
}

.article-cover {
    width: 100%;
    height: auto;
    margin-bottom: 22px;
    border-radius: 18px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 12px 0 0;
    color: #6f766f;
    font-size: 14px;
    font-weight: 700;
}

.article-content {
    color: #243f36;
    font-size: 16px;
    line-height: 1.8;
}

.article-content img,
.intro-content img {
    max-width: 100%;
    height: auto;
    border-radius: 16px;
}

.article-content table,
.intro-content table {
    max-width: 100%;
    overflow-x: auto;
    display: block;
}

.intro-content {
    color: #243f36;
    font-size: 16px;
    line-height: 1.75;
}

.contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
    gap: 24px;
}

.contact-info-list {
    display: grid;
    gap: 14px;
    margin-top: 18px;
}

.contact-info-item {
    padding: 16px;
    border: 1px solid rgba(24, 61, 51, 0.12);
    border-radius: 18px;
    background: #fbfaf5;
}

.contact-info-item span {
    display: block;
    color: #678d39;
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
}

.contact-info-item strong,
.contact-info-item p {
    margin: 5px 0 0;
    color: #183d33;
    font-size: 15px;
    line-height: 1.5;
}

.contact-form-modern {
    display: grid;
    gap: 14px;
}

.form-field label {
    display: block;
    margin-bottom: 7px;
    color: #183d33;
    font-size: 14px;
    font-weight: 800;
}

.form-field input,
.form-field textarea {
    width: 100%;
    border: 1px solid rgba(24, 61, 51, 0.16);
    border-radius: 16px;
    padding: 12px 14px;
    color: #183d33;
    background: #fff;
    font-size: 15px;
    outline: none;
}

.form-field input:focus,
.form-field textarea:focus {
    border-color: #678d39;
    box-shadow: 0 0 0 4px rgba(103, 141, 57, 0.14);
}

.content-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    width: fit-content;
    border: 0;
    border-radius: 999px;
    padding: 0 24px;
    color: #fff;
    background: #183d33;
    font-size: 15px;
    font-weight: 900;
}

.content-button:hover {
    background: #678d39;
}

@media (max-width: 1180px) {
    .content-shell {
        width: calc(100% - 32px);
        padding-top: 26px;
    }

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

@media (max-width: 991.98px) {
    .content-shell {
        width: min(100% - 22px, 760px);
        padding: 20px 0 56px;
    }

    .content-layout,
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .content-sidebar {
        order: 2;
    }

    .content-hero {
        display: grid;
        padding: 22px;
    }
}

@media (max-width: 640px) {
    .content-shell {
        width: min(100% - 16px, 430px);
        padding-bottom: 44px;
    }

    .content-hero,
    .content-main,
    .intro-card,
    .contact-card,
    .content-sidebar-card {
        border-radius: 18px;
        padding: 16px;
    }

    .content-hero h1 {
        font-size: 26px;
    }

    .news-grid-modern {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .news-card-body h2 {
        min-height: 0;
        font-size: 16px;
    }

    .article-content,
    .intro-content {
        font-size: 15px;
    }

    .content-button {
        width: 100%;
    }
}

@media (max-height: 760px) and (min-width: 992px) {
    .content-shell {
        padding-top: 20px;
        padding-bottom: 44px;
    }

    .content-hero {
        padding: 20px;
        margin-bottom: 20px;
    }

    .content-main,
    .intro-card,
    .contact-card {
        padding: 20px;
    }
}
