.home-card {
    max-width: 1540px;
}

.home-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border: 1px solid var(--line);
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.46);
}

.home-panel {
    padding: 34px;
    min-height: 640px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.home-panel + .home-panel {
    border-left: 1px solid var(--line);
}

.home-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    width: fit-content;
    margin-bottom: 22px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.78);
    color: var(--soft);
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.home-panel .page-title {
    max-width: 640px;
}

.home-panel .page-lead {
    max-width: 640px;
}

.home-meta-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 8px 0 18px;
}

.home-footer {
    margin-top: 18px;
}

/* >= 1400 */
@media (min-width: 1400px) {
    .home-panel {
        min-height: 680px;
    }
}

/* <= 1199 */
@media (max-width: 1199.98px) {
    .home-split {
        grid-template-columns: 1fr;
    }

    .home-panel + .home-panel {
        border-left: 0;
        border-top: 1px solid var(--line);
    }

    .home-panel {
        min-height: auto;
    }
}

/* <= 767 */
@media (max-width: 767.98px) {
    .home-panel {
        padding: 24px;
    }
}

/* < 576 */
@media (max-width: 575.98px) {
    .home-panel {
        padding: 18px;
    }

    .home-badge {
        width: 100%;
        justify-content: center;
    }
}