.home .page-shell {
    padding-bottom: 0;
}

.section-grid,
.footer-layout {
    display: grid;
    gap: 28px;
}

.section-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: end;
}

.section-grid h2,
.entry-hero h1,
.archive-layout h1,
.feature-card h3,
.content-card h2 {
    font-size: clamp(1.8rem, 3.5vw, 3.3rem);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 22px;
    margin-top: 28px;
}

.feature-card,
.content-card {
    padding: 28px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 14px 38px rgba(17, 38, 59, 0.06);
}

.feature-card h3 {
    margin-bottom: 14px;
    font-size: 1.5rem;
}

.home-news-head {
    margin-top: 40px;
    margin-bottom: 32px;
    display: flex;
    justify-content: center;
}

.home-news-head-title {
    margin: 0;
    text-align: center;
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 700;
    line-height: 1.05;
}

.home-news-layout {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    margin-top: 0;
    align-items: stretch;
}

.home-news-card {
    border: none;
    border-radius: 0;
    background: #fff;
    box-shadow: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.home-news-card-media {
    display: block;
    aspect-ratio: 16 / 9;
    background: linear-gradient(135deg, #d7e1ec 0%, #edf2f7 100%);
}

.home-news-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.home-news-card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 16px;
    padding: 26px 0 40px;
    border-bottom: 1px solid #cbcbcb;
}

.home-news-card-body h3 {
    margin: 0;
    font-size: clamp(1.25rem, 1.9vw, 1.65rem);
    font-weight: 700;
    line-height: 1.2;
}

.home-news-card-body h3 a {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    color: #000;
    transition: color 0.25s ease;
}

.home-news-card-body h3 a:hover {
    color: #006cac;
}

.home-news-card-body p {
    margin: 0;
}

.home-news-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    font-size: 0.84rem;
    font-weight: 400;
    letter-spacing: 0;
    text-transform: none;
    color: #006cac;
}

.home-news-card-link::after {
    content: ">>";
    letter-spacing: -0.08em;
}

.home-news-card-link:hover {
    color: #000;
}

.home-news-footer {
    display: flex;
    justify-content: center;
    margin-top: 30px;
}

.home-news-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 54px;
    padding: 20px 45px;
    background: transparent;
    border: 1px solid #10263a;
    color: #0b0b0b;
    font-size: 0.9rem;
    font-weight: 500;
    transition: 0.3s linear;
}

.home-news-button:hover {
    background: #080808;
    color: #fff;
    zoom: 1;
    transition: 0.3s linear;
}

.home-news-card.is-empty {
    background: #fff;
}

.support-list-card {
    display: grid;
    gap: 26px;
    background: linear-gradient(
        180deg,
        rgba(255, 255, 255, 0.88),
        rgba(236, 230, 219, 0.88)
    );
}

.support-list-card ul {
    display: grid;
    gap: 12px;
}

.support-list-card li {
    position: relative;
    padding-left: 20px;
    color: var(--text);
}

.support-list-card li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
}

.home-contact {
    width: 100%;
}

.home-contact .fullblock {
    width: 100%;
    background-color: #13293f;
    background-image: url("../images/common/home-contact-bg.jpg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.home-contact .container {
    width: min(1360px, calc(100% - 24px));
    margin: 0 auto;
    padding: 135px 0;
}

.home-contact .row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
    align-items: center;
}

.home-contact .title {
    margin: 0 0 12px;
    color: #fff;
    font-size: clamp(1.8rem, 3.5vw, 3.3rem);
    line-height: 1.08;
    text-transform: none;
}

.home-contact p {
    margin: 0;
    max-width: 820px;
    color: rgba(255, 255, 255, 0.92);
}

.home-contact .more {
    display: flex;
    justify-content: flex-end;
}

.home-contact .more a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 20px 65px 20px 45px;
    border-radius: 0;
    background: transparent;
    border: 1px solid #fff;
    color: #fff;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    zoom: 1;
    transition:
        color 0.3s linear,
        background-color 0.3s linear;
}

.home-contact .more a:hover {
    background: #fff;
    color: #000;
    transform: none;
}

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

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

    .home-news-card-media {
        aspect-ratio: 21 / 10;
    }

    .home-contact .container {
        padding: 88px 0;
    }
}

@media (max-width: 860px) {
    .section-grid {
        grid-template-columns: 1fr;
    }

    .feature-grid {
        grid-template-columns: 1fr;
    }

    .home-news-layout {
        grid-template-columns: 1fr;
    }

    .home-news-card-body {
        padding: 22px;
    }
}

@media (max-width: 560px) {
    .feature-card,
    .content-card {
        padding: 22px;
    }

    .home-news-head-title {
        font-size: 38px;
    }

    .home-contact .container {
        width: min(1360px, calc(100% - 16px));
        padding: 22px 0;
    }
}
