/* --------------------------------------------------------------------------
   Section 1 — Hero Block
   -------------------------------------------------------------------------- */
.y0326-hero {
    position: relative;
    background-color: #111323;
    background-image: url(images/hero-bg-line.svg);
    background-size: cover;
    background-position: center right;
    overflow: hidden;
    padding-top: 80px;
    padding-bottom: 80px;
    min-height: 650px;
    display: flex;
    align-items: center;
}
/* Inner two-column layout */
.y0326-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 48px;
}

/* ---- Left: Content ---- */
.y0326-hero__content {
    max-width: 600px;
}

.y0326-hero__heading {
    font-size: 3.72rem;
    line-height: 1.2;
    margin: 0 0 24px;
}

.y0326-hero__subtext {
    font-weight: 500;
    margin-bottom: 30px;
}

.y0326-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: center;
}

/* ---- Buttons ---- */
.y0326-btn--outline {
    background-color: transparent;
    color: #fff;
    border: 1px solid #fff;
}

.y0326-btn--outline:hover {
    color: #687086;
    background-color: #fff;
}

/* ---- Right: Media / Dashboard ---- */
.y0326-hero__media {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.y0326-hero__media-wrapper {
    position: relative;
    z-index: 2;
    border-radius: 8px;
    overflow: hidden;
    width: 100%;
    max-width: 640px;
    padding: 0 30px 20px 0;
}

.y0326-hero__dashboard-img {
    display: block;
    width: 100%;
    height: auto;
}

/* Decorative blue corner chevrons */
.y0326-hero__deco {
    position: absolute;
    z-index: 1;
    pointer-events: none;
}

.y0326-hero__deco--1 {
    width: 294px;
    height: 286px;
    bottom: -20px;
    right: -30px;
    background: url(images/blue-lines-bg.svg) no-repeat right bottom;
}
/* ---- Responsive ---- */
@media (max-width: 991px) {
    .y0326-hero__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .y0326-hero__content {
        max-width: 100%;
        text-align: center;
    }

    .y0326-hero__subtext {
        max-width: 100%;
    }

    .y0326-hero__actions {
        justify-content: center;
    }

    .y0326-hero__media {
        justify-content: center;
    }
        .y0326-hero__deco--1 {
            right: 0;
        }
}

@media (max-width: 767px) {
    .y0326-hero__content,
    .y0326-hero__content p {
        text-align: left;
    }
    .y0326-hero__heading.hero__title {
        text-align: left;
    }
    .y0326-hero {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .y0326-hero__actions {
        flex-direction: column;
        align-items: stretch;
    }
    .y0326-btn {
        text-align: center;
    }
        .y0326-hero__deco--1 {
            height: 180px;
            width: 160px;
            bottom: 0;
            background-size: contain;
        }
}