#x-landing-wrapper {
    margin: 0 auto;
    padding: 0 20px;

}

#x-landing-container {
    max-width: 1200px;
    text-align: center;

    display: flex;
    flex-direction: column;
    gap: 100px;
    justify-content: center;
    align-items: center;
    margin: 40px auto;
}

#x-landing-container h1 {
    font-weight: bold;
    font-size: 7rem;
}

#x-landing-container .x-btn-primary {
    display: inline-block;
    font-size: 1.75rem;
    padding: 8px 30px;
    width: auto;
}

#x-landing-container .x-btn-secondary {
    display: inline-block;
    font-size: 1.75rem;
    padding: 8px 30px;
    width: auto;
}

#x-landing-container label {
    font-weight: normal;
}

#x-landing-container hr {
    background-color: #d2d2d7;
    border: none;
    height: 1px;
    margin: 25px 0;
}

#x-landing-container .component-selection {
    cursor: pointer;
}

#x-landing-container .hero-wrapper {

}

#x-landing-container .hero-wrapper p {
    color: var(--secondary-label);
    font-size: 2rem;
    margin: 10px 0;
}

#x-landing-container .hero-img {
    margin: 40px 0;
}

.sponsors {
    font-size: 1.5rem;
    gap: 20px;
    margin: 80px 0;
}

.sponsors .image-wrapper{
    justify-content: center;
    display: flex;
    gap: 20px;
}

.section-price p {
    color: var(--secondary-label);
    font-size: 2rem;
    margin: 10px 0;
}

.section-price .price-tiles {
    display: flex;
    gap: 30px;
    margin: 20px 0;
}

.section-price .price-tile {
    place-items: start;
    background-color: var(--primary-background);
    border-radius: 20px;
    box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 540px;
    padding: 40px 30px;
    text-align: left;
    min-height: 750px;
    width: 100%;
}

.section-price .price-tile:focus {
    outline: 2px solid var(--primary);

}

.section-price .price-tile h3 {
    font-size: 2rem;
    margin: 0;

}

.price {
    color: var(--label) !important;
    font-size: 4.25rem !important;
    font-weight: bold;
    margin: 0 !important;
}

.section-price .price-tile .pricing-description {
    color: var(--secondary-label);
    font-size: 2rem;
    min-height: 57px;
}

.section-price .price-tile ul {
    margin-bottom: 30px;
}

.section-price .price-tile li {
    font-size: 2rem;
    margin: 8px 0;
}

.section-price .x-btn-primary {
    padding: 10px 30px !important;
    width: 100% !important;
}

.features{
    text-align: start;
    height: 100%;
    padding: 0 30px;
}

.features .headline {
    color: var(--label);
    font-size: 4rem;
    font-weight: 500;
    padding-bottom: 40px;
}

.features .content {
    display: flex;
    gap: 20px;
    width: 100%;
}

.features .options{
    flex: 1;
    width: 40%;
}

.features .headline-components {
    color: var(--label);
    font-size: 4.4rem;
    font-weight: 550;
}

.features .headline-visualize {
    color: var(--tertiary-label);
    font-size: 4.4rem;
}

.features .headline-tertiary {
    color: var(--tertiary-label);
    font-size: 3rem;
    font-weight: 400;
}

.features .component-tiles {
    display: flex;
    gap: 20px;
}

.features .component-tile {
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
    min-height: 300px;
    max-height: 300px;
    width: 100%;
}

.features .feature-image {
    width: 100%;
    height: auto;
    border-radius: 10px; /* Match the parent's border-radius */
    object-fit: cover; /* Ensures the image scales properly */
}

.features .media {
    width: 60%;
    aspect-ratio: 687.22/449.81;
    border-radius: 10px;
    box-shadow: 0 3px 8px rgba(50, 50, 50, 0.17);
    transition: opacity 0.2s ease;
    opacity: 1;
    object-fit: cover;
}

.component-selection h3 {
    font-size: 1.75rem;
}

.component-selection p {
    font-size: 1.75rem;
}

.component-selection.selected {
    background-color: rgba(197, 197, 197, 0.25);
    border-radius: 20px;
}

.component-selection:hover {
    background-color: rgba(197, 197, 197, 0.25);
}

#x-landing-container .video-selection {
    cursor: pointer;
}

.video-selection h3 {
    font-size: 1.75rem;
}

.video-selection p {
    font-size: 1.75rem;
}

.video-selection.selected {
    background-color: rgba(197, 197, 197, 0.25);
    border-radius: 20px;
}

.video-selection:hover {
    background-color: rgba(197, 197, 197, 0.25);
}

@media (max-width: 768px) {
    .features .content {
        flex-direction: column;
    }

    .features .media {
        width: 100% !important;
    }

    .features .options{
        flex: 1;
        width: 100%;
    }

    #x-landing-container h1 {
        font-weight: bold;
        font-size: 5rem;
    }
}

@media (max-width: 1210px) {
    .section-price .price-tiles {
        display: flex;
        flex-direction: column;
        gap: 30px;
        margin: 20px 0;
        align-items: center;
    }

}