/* Hero Section */
.layout-hero_section .aspect-horizontal-ratio .img-text-overlay,
.layout-hero_section .aspect-potrait-ratio .img-text-overlay {
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: var(--color-white);
    text-align: center;
    width: 80%;
    z-index: 2;

}
@media (min-width: 1200px) {
    .layout-hero_section .aspect-potrait-ratio .img-text-overlay {
        width: 30%;
    }
}
@media (min-width: 1400px) {
    .layout-hero_section .aspect-potrait-ratio .img-text-overlay {
        top: 45%;
    }
}

/* Aspect Ratios */
.layout-hero_section .img-container.aspect-potrait-ratio {
    aspect-ratio: 16 / 9;
}
@media (min-width: 1200px) {
    .layout-hero_section .img-container.aspect-potrait-ratio {
        aspect-ratio: 1680 / 500;
    }
}
.layout-hero_section .img-container.aspect-potrait-ratio img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* Logged Out Buttons */
.layout-hero_section .logged-out-btns,
.layout-hero_section .logged-in-btn {
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 2;
}
@media (min-width: 768px) {
    .layout-hero_section .logged-out-btns,
    .layout-hero_section .logged-in-btn {
        flex-direction: row;
    }
}
.layout-hero_section .img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
}
