/**
 * Hero Data Styles
 */

.hero-data {
    padding: 4rem 0;
}

.hero-data .columns-wrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: center;
}

.hero-data .text-column {
    flex: 1;
    min-width: 300px;
}

.hero-data .image-column {
    flex: 1;
    min-width: 300px;
}

.hero-data h2 {
    margin-bottom: 1.5rem;
    font-family: var(--font-heading-primary);
    font-weight: bold;
}

.hero-data p {
    margin-bottom: 1rem;
    font-family: var(--font-body-primary);
}

.hero-data .image-wrapper {
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-data .rounded-image {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.hero-data .btn {
    margin-top: 1rem;
    display: inline-block;
    padding: 7px;
    text-transform: uppercase;
    font-family: var(--font-heading-primary);
    border-radius: 4px;
    text-decoration: none;
    white-space: nowrap;
}

.hero-data .btn.btn-yellow {
    background-color: #e9e11f;
    color: #000000;
    border: 2px solid #e9e11f;
}

.hero-data .btn.btn-yellow:hover {
    background-color: #FFFFFF;
    color: #000000;
    border: 2px solid #e9e11f;
}

.hero-data .btn:focus {
    box-shadow: 0 0 8px 2px #ff6289;
    outline: none;
}

/* Data point card footnotes */
.data-point-footnote {
    font-size: 0.75rem;
    color: #aaaaaa;
    text-align: center;
    padding-top: 0.5rem;
    margin-top: 0.5rem;
    font-style: italic;
    display: block;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .hero-data .columns-wrapper {
        flex-direction: column;
    }
    
    .hero-data .text-column {
        order: 1;
    }
    
    .hero-data .image-column {
        order: 2;
    }
}
