.fap-hero-container {
    position: relative;
    width: 100%;

}

.fap-hero-image {
    display: block;
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
}

.fap-hero-text-container {
    position: absolute;
    top: 2em;
    left: 2em;
    right: 2rem;
    margin: 0;
    /*transform: translateY(-50%);*/
    color: #5A1E1E; /* Adjust color to match the image */
    font-family: Helvetica, sans-serif; /* Adjust font-family as needed */
    text-align: left;
}

.fap-hero-text-container p {
    font-size: 1rem;
    margin: 0;
}

/* Font scaling for 300px to 767px */
@media (min-width: 300px) {
    .fap-hero-text-container p {
        font-size: clamp(1rem, -0.3224rem + 7.0530vw, 1.763rem);
    }
}

@media (max-width: 767.99px) {
    .fap-hero-text-container br {
        display: none;
    }
}

/* Font scaling for 768px to 4095px */
@media (min-width: 768px) {
    .fap-hero-text-container {
        left: 7%; /* Adjusted for medium screens */
        width: 40%;
        top: 50%;
        transform: translateY(-50%);
    }
    .fap-hero-text-container p {
        font-size: clamp(1.2rem, 0.3438rem + 1.7839vw, 4.625rem);
    }
    .fap-hero-image {
        max-height: inherit;
    }
}

/* Font size for screens >= 4096px */
@media (min-width: 4096px) {
    .fap-hero-text-container {
        left: 10%; /* Adjusted for large screens */
    }
    .fap-hero-text {
        font-size: 5.625rem; /* 90px */
    }
}


