/**
 * Maverick About Hero Block Styles
 */

.maverick-about-hero-block {
    position: relative;
    overflow: hidden;
}

/* Main Wrapper */

/* Headline Section */
.mah-headline-section {
    text-align: center;
    margin-bottom: 80px;
}

.mah-eyebrow {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mah-main-headline {
    font-size: 4rem;
    font-weight: 600;
    line-height: 1.1;
    margin: 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

/* Content Grid */
.mah-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

/* Left Column - Content */
.mah-content-column {
    padding-right: 40px;
}

.mah-section-label {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--tertiary) !important;
}

/* Key Points */
.mah-key-points {
    margin-bottom: 40px;
}

.mah-key-point {
    font-size: 2.5rem;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 0px;
}

.mah-key-point:last-child {
    margin-bottom: 0;
}



/* Description */
.mah-description {
    font-size: 16px;
    line-height: 1.6;
    opacity: 0.8;
    position: relative;
    padding-left: 20px;
}

.mah-description::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--secondary);
}

.mah-description p {
    margin-bottom: 20px;
}

.mah-description p:last-child {
    margin-bottom: 0;
}

/* Right Column - Image */
.mah-image-column {
    position: relative;
}

.mah-image-wrapper {
    position: relative;
    margin-bottom: 30px;
}

.mah-hero-image {
    width: 100%;
    height: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

/* CTA Link */
.mah-cta-wrapper {
    text-align: right;
}

.mah-cta-link {
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.mah-cta-link i {
    margin-left: 10px;
    transition: transform 0.3s ease;
}

.mah-cta-link:hover i {
    transform: translateX(5px);
}

.mah-cta-link:hover {
    opacity: 0.7;
}

/* AOS Enabled Styling */
.maverick-about-hero-block.aos-enabled {
    /* Add any special styling for AOS enabled blocks */
}

/* Tablet Styles */
@media (max-width: 1199px) {
    .mah-wrapper {
        padding: 0 20px;
    }

    .mah-content-grid {
        gap: 60px;
    }

    .mah-main-headline {
        font-size: 3.5rem;
    }

    .mah-key-point {
        font-size: 2.2rem;
    }

    .mah-content-column {
        padding-right: 20px;
    }
}

/* Mobile Styles */
@media (max-width: 991px) {
    .mah-wrapper {
        padding: 0 20px;
    }

    .mah-headline-section {
        margin-bottom: 60px;
    }

    .mah-main-headline {
        font-size: 2.5rem;
    }

    .mah-content-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .mah-content-column {
        padding-right: 0;
        order: 2;
    }

    .mah-image-column {
        order: 1;
    }

    .mah-key-point {
        font-size: 1.8rem;
    }

    .mah-cta-wrapper {
        text-align: left;
        margin-top: 30px;
    }

    .mah-description {
        padding-left: 15px;
    }
}

/* Small Mobile */
@media (max-width: 576px) {
    .mah-wrapper {
        padding: 0 15px;
    }

    .mah-headline-section {
        margin-bottom: 40px;
    }

    .mah-main-headline {
        font-size: 2rem;
    }

    .mah-eyebrow {
        font-size: 16px;
    }

    .mah-section-label {
        font-size: 16px;
    }

    .mah-key-point {
        font-size: 1.5rem;
        margin-bottom: 12px;
    }

    .mah-content-grid {
        gap: 40px;
    }

    .mah-description {
        font-size: 15px;
        padding-left: 12px;
    }

    .mah-hero-image {}
}