.three-tiles {
    background: var(--violet-glace);
}

.three-tiles--container {
    padding: 32px 0;
}

@media screen and (min-width: 992px) {
    .three-tiles--container {
        padding: 64px 0;
    }
}

.three-tiles--title {
    margin-bottom: 32px;
}

.three-tiles--title .uptitle {
    color: var(--violet);
}

.three-tiles--title h2 {
    max-width: 700px;
    margin: 8px 0 16px;
}

.three-tiles--content {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(3, 280px);
    grid-column-gap: 0px;
    grid-row-gap: 24px;
}

@media screen and (max-width: 991px) {
    .three-tiles--content {
        max-width: 550px;
        margin-inline: auto;
    }
}

@media screen and (min-width: 992px) {
    .three-tiles--content {
        grid-template-columns: repeat(2, 1fr);
        grid-template-rows: repeat(2, 270px);
        grid-column-gap: 24px;
        grid-row-gap: 24px;
    }
}

.three-tiles--content div {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    background: var(--bg);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    padding: 0 16px 24px;
}

@media screen and (min-width: 992px) {
    .three-tiles--content div {
        padding: 0 20px 32px;
    }

    .three-tiles--content div:nth-child(1) {
        grid-area: 1/1/3/2;
    }
}

.three-tiles--content div::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(54, 44, 67, 0) 22.15%, #01070A 82.65%);
    z-index: 0;
    background-blend-mode: multiply, normal, normal, normal, normal;
}

@media screen and (min-width: 992px) {
    .three-tiles--content div::before {
        background: linear-gradient(180deg, rgba(54, 44, 67, 0) 44.1%, #01070A 86.29%);
    }
}

.three-tiles--content div h4 {
    margin-bottom: 8px;
    color: white;
    position: relative;
}

.three-tiles--content div p {
    color: white;
    opacity: 0.8;
}

.three-tiles--buttons {
    margin-top: 32px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
}

@media screen and (min-width: 768px) {
    .three-tiles--buttons {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 24px;
    }
}

.three-tiles--buttons a {
    width: 100%;
}

@media screen and (min-width: 768px) {
    .three-tiles--buttons a {
        width: -moz-max-content;
        width: max-content;
    }
}

/*# sourceMappingURL=style.css.map */