/* ── Headline-2 block — fully self-contained ─────────────────────────────── */

/* ── Base ───────────────────────────────────────────────────────────────── */

.hl2-block {
    position: relative;
    overflow: hidden;
    background-color: #0d0020;
}

/* ── Background SVG (Light Leak) ─────────────────────────────────────────── */
.hl2-block .hl-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;

    background-image: url("../../assets/images/headline-2-bg.svg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center top;
    width:100%;
    height: auto;
}

/* ── Breadcrumb ──────────────────────────────────────────────────────────── */

.hl2-block .hl-breadcrumb,
.hl2-block .hl2-inner {
    position: relative;
    z-index: 1;
}

.hl2-block .hl-breadcrumb {
    padding-top: 16px;
    padding-bottom: 8px;
}

.hl2-block .hl-bc-text {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    font-size: 12px;
    font-weight: 300;
    line-height: 16px;
    color: rgba(255, 255, 255, 0.75);
}

.hl2-block .hl-bc-text a,
.hl2-block .hl-bc-text span {
    font-size: 12px;
    font-weight: 300;
    line-height: 16px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

.hl2-block .hl-bc-text a:hover {
    color: var(--wp--preset--color--white);
    text-decoration: underline;
}

.hl2-block .hl-bc-home {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
}

.hl2-block .hl-bc-home:hover {
    color: var(--wp--preset--color--white);
}

.hl2-block .hl-bc-home-icon {
    flex-shrink: 0;
    vertical-align: middle;
}

@media (min-width: 768px) {
    .hl2-block .hl-bc-home-icon {
        display: none;
    }
}

.hl2-block .hl-bc-dyn .hl-bc-item--dyn:last-child {
    color: var(--wp--preset--color--white);
    font-weight: 400;
}

.hl2-block .hl-bc-text:not(:has(.hl-bc-dyn .hl-bc-item--dyn)) .hl-bc-item--page {
    color: var(--wp--preset--color--white);
    font-weight: 400;
}

.hl2-block .hl-bc-ellipsis {
    display: none;
    background: none;
    border: none;
    padding: 0;
    font-size: 12px;
    font-weight: 300;
    line-height: 16px;
    color: rgba(255, 255, 255, 0.75);
    cursor: pointer;
    font-family: inherit;
}

.hl2-block .hl-bc-ellipsis:hover {
    color: var(--wp--preset--color--white);
}

@media (max-width: 767px) {
    .hl2-block .hl-breadcrumb .container {
        overflow-x: auto;
        scrollbar-width: none;
    }

    .hl2-block .hl-breadcrumb .container::-webkit-scrollbar {
        display: none;
    }

    .hl2-block .hl-bc-text {
        flex-wrap: nowrap;
        white-space: nowrap;
        width: 100%;
    }

    .hl2-block .hl-bc-home-label {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
    }

    .hl2-block .hl-bc-text.is-collapsed .hl-bc-item--mid {
        display: none;
    }

    .hl2-block .hl-bc-text.is-collapsed .hl-bc-item--page {
        display: none;
    }

    .hl2-block .hl-bc-text.is-collapsed .hl-bc-dyn .hl-bc-item--dyn:not(:last-child) {
        display: none;
    }

    .hl2-block .hl-bc-text.is-collapsed .hl-bc-ellipsis {
        display: inline;
    }
}

/* ── Two-column inner ────────────────────────────────────────────────────── */

.hl2-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-top: 24px;
    padding-bottom: 40px;
}

/* ── Left: text content ──────────────────────────────────────────────────── */

.hl2-content {
    display: flex;
    flex-direction: column;
    gap: 16px;
    flex: 1;
    min-width: 0;
    max-width: 640px;
}

/* Label row */
.hl2-block .hl-label-row {
    display: flex;
    align-items: center;
    gap: 12px;
}

.hl2-block .hl-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    color: var(--wp--preset--color--white);
    opacity: 0.9;
}

.hl2-block .hl-icon svg {
    width: 20px;
    height: 20px;
}

.hl2-block .hl-label {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: var(--wp--preset--color--white);
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

/* Title */
.hl2-block .hl-title {
    margin: 0;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    color: var(--wp--preset--color--white);
}

/* Description */
.hl2-block .hl-desc {
    margin: 0;
    font-size: 16px;
    font-weight: 300;
    line-height: 24px;
    color: rgba(255, 255, 255, 0.9);
}

/* Buttons */
.hl2-block .hl-buttons {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.hl2-block .hl-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 32px;
    font-family: inherit;
    font-size: 14px;
    font-weight: 700;
    line-height: 20px;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.2s, background 0.2s, color 0.2s;
    white-space: nowrap;
    border: 1px solid transparent;
}

.hl2-block .hl-btn--secondary {
    background: transparent;
    border-color: var(--wp--preset--color--white);
    color: var(--wp--preset--color--white);
}

.hl2-block .hl-btn--secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--wp--preset--color--white);
}

.hl2-block .hl-btn--outline {
    background: transparent;
    border-color: rgba(255, 255, 255, 0.5);
    color: rgba(255, 255, 255, 0.8);
}

.hl2-block .hl-btn--outline:hover {
    border-color: var(--wp--preset--color--white);
    color: var(--wp--preset--color--white);
}

/* ── Right: decorative circles ──────────────────────────────────────────── */

.hl2-boxes {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

.hl2-box {
    position: relative;
    width: 294px;
    height: 294px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hl2-box+.hl2-box {
    margin-left: -78px;
}

/* Dashed rings */
.hl2-box-ring {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hl2-box-ring--outer {
    inset: 0;
    opacity: 0.5;
    border: 0;
    background: linear-gradient(180deg, #130328 0%, var(--wp--preset--color--purple-500) 100%);
}

.hl2-box-ring--inner {
    inset: 32px;
    border: 1.5px dashed rgba(255, 255, 255, 0.55);
    background: linear-gradient(180deg, #130328 0%, var(--wp--preset--color--purple-500) 100%);
}

.hl2-box+.hl2-box .hl2-box-ring--inner {
    border-color: rgba(255, 255, 255, 0.55);
}

/* Box body: icon + label */
.hl2-box-body {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    max-width: 127px;
    text-align: center;
}

.hl2-box--reverse .hl2-box-body {
    flex-direction: column-reverse;
}

.hl2-box-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.85);
    flex-shrink: 0;
}

.hl2-box-icon svg,
.hl2-box-icon img {
    width: 52px;
    height: 52px;
    display: block;
}

.hl2-box-label {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    color: rgba(255, 255, 255, 0.8);
}

/* ── Responsive ─────────────────────────────────────────────────────────── */

@media (max-width: 1199px) {
    .hl2-box {
        width: 240px;
        height: 240px;
    }

    .hl2-box+.hl2-box {
        margin-left: -60px;
    }

    .hl2-box-ring--inner {
        inset: 26px;
    }

    .hl2-block .hl-title {
        font-size: 32px;
    }
}

@media (max-width: 991px) {
    .hl2-boxes {
        display: none;
    }

    .hl2-inner {
        padding-bottom: 32px;
    }

    .hl2-content {
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .hl2-inner {
        padding-top: 16px;
        padding-bottom: 24px;
    }

    .hl2-block .hl-title {
        font-size: 28px;
    }

    .hl2-block .hl-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hl2-block .hl-btn {
        justify-content: center;
        text-align: center;
    }
}