.content-layout-section {
    padding: 0 0 60px;
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 460px;
    gap: 28px;
    align-items: start;
}

.content-layout__main,
.content-layout__sidebar {
    min-width: 0;
}

.content-layout__main {
    display: grid;
    gap: 24px;
}

.content-layout__sidebar .content-box {
    width: 100%;
}

.content-box {
    padding: 26px 24px;
    border: 1px solid #d9edf2;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
}

.content-box h3 {
    margin: 0 0 12px;
    color: #0f172a;
    font-size: 22px;
    line-height: 1.25;
    font-weight: 800;
}

.content-box p {
    margin: 0;
    color: #475569;
    line-height: 1.75;
}



@media (max-width: 1300px) {
    .content-layout {
        grid-template-columns: minmax(0, 1fr) 400px;
        gap: 24px;
    }

    .about-box__grid {
        grid-template-columns: minmax(0, 1fr) 300px;
        gap: 22px;
    }
}

@media (max-width: 1100px) {
    .content-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .content-layout-section {
        padding: 0 0 42px;
    }

    .content-layout__main {
        gap: 18px;
    }

    .content-box {
        padding: 18px 16px;
        border-radius: 18px;
    }

    .content-box h3 {
        font-size: 20px;
    }

 
}

.home-news-box {
    padding: 28px;
}

.home-news-box__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    margin-bottom: 22px;
}

.home-news-box__actions {
    flex: 0 0 auto;
    padding-top: 0;
}

.home-news-box__intro {
    max-width: 760px;
}

.home-news-box__eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 14px;
    border-radius: 999px;
    background: #eaf8fc;
    color: #0891b2;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 12px;
}

.home-news-box__intro h3 {
    margin: 0 0 10px;
    color: #0f172a;
    font-size: clamp(24px, 3vw, 34px);
    line-height: 1.15;
}

.home-news-box__intro p {
    margin: 0;
    color: #475569;
    line-height: 1.75;
    font-size: 16px;
}

.home-news-box__actions {
    flex: 0 0 auto;
}

.home-news-box__all-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 0 18px;
    border-radius: 14px;
    background: linear-gradient(135deg, #0891b2 0%, #0ea5e9 100%);
    color: #ffffff;
    text-decoration: none;
    font-weight: 700;
    box-shadow: 0 12px 24px rgba(8, 145, 178, 0.18);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.home-news-box__all-link:hover {
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 18px 30px rgba(8, 145, 178, 0.22);
}

.home-news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.home-news-card {
    border: 1px solid #d9edf2;
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: 0 14px 35px rgba(15, 23, 42, 0.08);
    overflow: hidden;
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.home-news-card:hover {
    transform: translateY(-3px);
    border-color: #bfe5f5;
    box-shadow: 0 20px 36px rgba(15, 23, 42, 0.12);
}

.home-news-card__image-link {
    display: block;
    text-decoration: none;
}

.home-news-card__image {
    width: 100%;
    aspect-ratio: 16 / 10;
    display: block;
    object-fit: cover;
}

.home-news-card__body {
    padding: 18px 18px 20px;
}

.home-news-card__meta {
    margin-bottom: 10px;
    color: #0891b2;
    font-size: 13px;
    font-weight: 700;
}

.home-news-card__title {
    margin: 0;
    font-size: 20px;
    line-height: 1.35;
    font-weight: 800;
}

.home-news-card__title a {
    color: #0f172a;
    text-decoration: none;
}

.home-news-card__title a:hover {
    color: #0891b2;
}

@media (max-width: 992px) {
    .home-news-box__top {
        flex-direction: column;
        align-items: flex-start;
    }

    .home-news-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .home-news-box {
        padding: 20px;
    }

    .home-news-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .home-news-card {
        border-radius: 18px;
    }

    .home-news-card__body {
        padding: 16px;
    }

    .home-news-card__title {
        font-size: 18px;
    }
}