/* LAYOUT */
.layout-wrap {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 32px;
    align-items: start;
}

.sidebar-col {
    position: sticky;
    top: 24px;
    height: fit-content;
}

.content-col {
    min-width: 0;
}

/* HEADER / HERO */
.page-header {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    border-radius: 18px;
    padding: 40px;
    color: #fff;
    margin-bottom: 40px;
}

.page-header h1 {
    font-size: 42px;
    font-weight: 900;
}

.page-header p {
    font-size: 18px;
    opacity: .9;
}

/* PROMO */
.promo {
    background: linear-gradient(135deg, #16a34a, #22c55e);
    border-radius: 20px;
    padding: 40px;
    color: #fff;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 40px;
}

.promo img {
    width: 100%;
    max-width: 400px;
    border-radius: 12px;
}

/* RESPONSIVE */
@media (max-width: 992px) {
    .layout-wrap {
        grid-template-columns: 1fr;
    }

    .sidebar-col {
        position: relative;
        margin-bottom: 20px;
    }

    .promo {
        grid-template-columns: 1fr;
        text-align: center;
    }
}