.gpt-page-hero {
    position: relative;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-top: var(--gpt-ptb-top-offset, -35px);
    min-height: var(--gpt-ptb-height, 260px);
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.gpt-page-hero__overlay {
    position: absolute;
    inset: 0;
    background: var(--gpt-ptb-overlay-color, rgba(0,0,0,0.45));
    z-index: 1;
}

.gpt-page-hero--no-overlay .gpt-page-hero__overlay {
    background: transparent !important;
}

.gpt-page-hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    padding: 50px 20px;
    text-align: center;
}

.gpt-page-hero__title-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.gpt-page-hero__slash {
    font-family: "Barlow Semi Condensed", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-weight: 800;
    font-size: calc(var(--gpt-ptb-title-size, 36px) * 1.2); /* slightly bigger than text */
    color: var(--gpt-ptb-accent-color, #0dc524);
    transform: skewX(-12deg);
    line-height: 1;
    display: flex;
    align-items: center;
}

.gpt-page-hero__title-text {
    margin: 0;
    font-family: "Barlow Semi Condensed", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: var(--gpt-ptb-title-size, 36px);
    line-height: 1;
    font-weight: 800;
    color: var(--gpt-ptb-title-color, #ffffff);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: geometricPrecision;
}

/* Responsive tweaks */
@media (max-width: 768px) {
    .gpt-page-hero {
        min-height: calc(var(--gpt-ptb-height, 260px) * 0.8);
        margin-top: var(--gpt-ptb-top-offset, -35px);
    }
    .gpt-page-hero__inner {
        padding: 40px 16px;
    }
    .gpt-page-hero__title-text {
        font-size: calc(var(--gpt-ptb-title-size, 36px) * 0.8);
        letter-spacing: 0.05em;
        white-space: normal;
    }
    .gpt-page-hero__slash {
        font-size: calc(var(--gpt-ptb-title-size, 36px) * 0.96);
    }
}
