.sultana-hero {
    position: relative;
    overflow: hidden;
    padding: 2.5rem 1rem;
}

.sultana-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.sultana-hero__inner {
    position: relative;
    z-index: 1;
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}

.sultana-hero__tagline {
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin: 0 0 8px;
}

.sultana-hero__title {
    font-size: 26px;
    line-height: 1.3;
    margin: 0 0 10px;
    font-weight: 600;
}

.sultana-hero__subtitle {
    font-size: 16px;
    margin: 0 0 24px;
}

.sultana-hero__pillars {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1px;
    border: 1px solid var(--sultana-hero-border, #2a2a2a);
    background: var(--sultana-hero-border, #2a2a2a);
}

.sultana-hero__pillar {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 1.25rem 1rem;
    text-decoration: none;
    transition: opacity 0.15s ease;
}

.sultana-hero__pillar:hover,
.sultana-hero__pillar:focus-visible {
    opacity: 0.75;
}

.sultana-hero__pillar i {
    font-size: 26px;
}

.sultana-hero__pillar-label {
    font-weight: 600;
    font-size: 15px;
}

.sultana-hero__pillar-desc {
    font-size: 12px;
}

@media (min-width: 700px) {
    .sultana-hero {
        padding: 4rem 2rem;
    }

    .sultana-hero__title {
        font-size: 34px;
    }

    .sultana-hero__pillars {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .sultana-hero__pillar {
        padding: 2rem 1.25rem;
    }
}
