/* ================================================
   SECTION: TEXT HERO
   ================================================ */
.section-text-hero {
    position: relative;
    background-size: cover;
    background-position: center;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-attachment: fixed;
}

.section-text-hero__overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
}

.section-text-hero__content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1088px;
    margin: 0 auto;
}


.section-text-hero__title {
    font-family: var(--aniro-font-heading);
    font-size: 64px;
    font-weight: 900;
    color: var(--aniro-color-white);
    text-transform: uppercase;
    line-height: 1.2;
}

.section-text-hero__divider {
    width: var(--aniro-divider-width);
    height: var(--aniro-divider-height);
    background: var(--aniro-color-primary);
    margin: 0 auto;
}

.section-text-hero__subtitle-wrapper {
    background: var(--aniro-color-white);
    padding: 60px 20px 40px;
    text-align: center;
}

.section-text-hero__subtitle {
    font-family: var(--aniro-font-heading);
    font-size: 40px;
    font-weight: 900;
    color: var(--aniro-color-black);
    text-transform: uppercase;
    margin: 0 0 12px;
    line-height: 1.2;
}

.section-text-hero__tiles {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
    justify-content: center;
}

.section-text-hero__tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 119px;
    height: 119px;
    box-sizing: border-box;
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.20) 17.62%, rgba(153, 153, 153, 0.20) 51.89%);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    text-decoration: none;
    transition: background 0.3s ease, transform 0.3s ease;
    overflow: hidden;
}

.section-text-hero__tile:hover {
    background: linear-gradient(155deg, rgba(255, 255, 255, 0.25) 17.62%, rgba(153, 153, 153, 0.25) 51.89%);
    transform: translateY(-2px);
}

.section-text-hero__tile-bg {
    width: 50px;
    height: 50px;
    object-fit: contain;
    display: block;
    margin: 0;
}

.section-text-hero__tile-label {
    color: #FFF;
    text-align: center;
    font-family: "Exo 2", sans-serif;
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    text-transform: uppercase;
}

@media (max-width: 1024px){
    .section-text-hero__title {
        font-size: 45px;
    }
}

@media (max-width: 480px){
    .section-text-hero__title {
        font-size: 30px;
    }
}