.asv2-hero {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4rem;
    max-width: 124.8rem;
    margin: 0 auto;
    padding: 4rem 2.4rem;
}

.asv2-hero__media {
    flex: 1 1 40rem;
    border-radius: 1.2rem;
    overflow: hidden;
}

.asv2-hero__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.asv2-hero__content {
    flex: 1 1 40rem;
}

.asv2-hero--no-media .asv2-hero__content {
    flex: 1 1 100%;
    max-width: 80rem;
}

.asv2-hero__title {
    font-size: 3.6rem;
    line-height: 4.4rem;
    margin-bottom: 1.6rem;
}

.asv2-hero__hook {
    font-size: 2rem;
    font-weight: 700;
    color: #5f2f59;
    margin-bottom: 1.2rem;
}

.asv2-hero__text {
    font-size: 1.6rem;
    line-height: 2.4rem;
    margin-bottom: 2.4rem;
}

@media (max-width: 50em) {
    .asv2-hero {
        padding: 2.4rem 2rem;
        gap: 2.4rem;
    }
    .asv2-hero__title {
        font-size: 2.6rem;
        line-height: 3.4rem;
    }
}

.container.asv2-section {
    padding-top: 1.6rem;
    padding-bottom: 1.6rem;
}

.asv2-section h2 {
    margin-top: 0;
    margin-bottom: 1.2rem;
}

.asv2-section h3 {
    margin-top: 2.4rem;
    margin-bottom: 1rem;
}

.asv2-section p {
    margin-bottom: 1.6rem;
}

@media (min-width: 78em) {
    .asv2-section p {
        margin-bottom: 1rem;
    }
}

.asv2-list {
    list-style: none;
    padding: 0;
    margin: 0 0 2.4rem;
}

.asv2-list li {
    position: relative;
    padding-left: 2.8rem;
    margin-bottom: 1.2rem;
    line-height: 2.2rem;
}

.asv2-list li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0.6rem;
    width: 1.6rem;
    height: 1.6rem;
    background-color: #5f2f59;
    -webkit-mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    mask-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='3' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='20 6 9 17 4 12'/%3E%3C/svg%3E");
    -webkit-mask-repeat: no-repeat;
    mask-repeat: no-repeat;
    -webkit-mask-size: contain;
    mask-size: contain;
}

.asv2-btn {
    display: inline-block;
    background-color: #5f2f59;
    color: #ffffff !important;
    font-weight: 700;
    font-size: 1.4rem;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    padding: 1.4rem 3.2rem;
    border-radius: 4rem;
    text-decoration: none !important;
    transition: background-color 0.25s ease;
}

.asv2-btn:hover {
    background-color: #4e2749;
    color: #ffffff !important;
}

.asv2-btn--outline {
    background-color: transparent;
    color: #5f2f59 !important;
    border: 0.2rem solid #5f2f59;
}

.asv2-btn--outline:hover {
    background-color: #5f2f59;
    color: #ffffff !important;
}

.asv2-cta {
    background-color: #f6f1f5;
    border-radius: 1.2rem;
    padding: 3.2rem;
    text-align: center;
    margin: 3.2rem 0;
}

.asv2-cta__text {
    font-size: 1.8rem;
    font-weight: 700;
    color: #2a2a32;
    margin-bottom: 1.6rem;
}

.asv2-cta--banner {
    background-color: #5f2f59;
}

.asv2-cta--banner .asv2-cta__text {
    color: #ffffff;
}

.asv2-cta--banner .asv2-btn {
    background-color: #ffffff;
    color: #5f2f59 !important;
}

.asv2-cta--banner .asv2-btn:hover {
    background-color: #eeeeee;
}

.asv2-cta__actions {
    display: flex;
    justify-content: center;
    gap: 1.6rem;
    flex-wrap: wrap;
}

@media (max-width: 40em) {
    .asv2-cta {
        padding: 2.4rem 1.6rem;
    }
    .asv2-cta__actions {
        flex-direction: column;
        align-items: center;
    }
}

.asv2-image-block {
    border-radius: 1.2rem;
    overflow: hidden;
    margin: 3.2rem 0;
}

.asv2-image-block__img {
    width: 100%;
    height: auto;
    display: block;
}

.asv2-grades {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 2.4rem 0;
}

.asv2-grade {
    background-color: #ffffff;
    border: 0.1rem solid #e0d4e0;
    border-radius: 1.2rem;
    padding: 2.4rem;
    box-shadow: 0.4rem 0.4rem 1.6rem 0 rgba(0, 0, 50, 0.06);
}

.asv2-grade__badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 3.6rem;
    height: 3.6rem;
    border-radius: 50%;
    background-color: #5f2f59;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.asv2-grade h3 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.asv2-grade p {
    font-size: 1.4rem;
    line-height: 2.1rem;
}

@media (max-width: 78em) {
    .asv2-grades {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 40em) {
    .asv2-grades {
        grid-template-columns: 1fr;
    }
}