.luxury {
    display: flex;
    flex-direction: column;
    width: 100%;
    gap: 1.5rem;
}

.luxury-container {
    display: flex;
    position: relative;
    flex-direction: column;
    padding: 2rem;
    align-items: start;
    gap: 1rem;
    width: 100%;
    height: 100%;
    max-height: max-content;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.luxury-container::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    pointer-events: none;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    z-index: 1;
}

.luxury-container-title {
    color: #FFFFFF;
    font-size: 2rem;
    font-weight: bold;
    text-align: start;
    line-height: 1.8rem;
    z-index: 1;
}

.luxury-container h3 {
    line-height: 1.4;
}

.luxury-container p {
    line-height: 1.5;
}

.luxury-container-subtitle {
    color: #FFFFFF;
    text-align: start;
    line-height: 1.5rem;
    font-weight: 400;
    line-height: 1.4rem;
    z-index: 1;
}

.luxury-container-btn {
    margin-top: 1rem;
    z-index: 1;
}