.root {
    display: flex;
    width: var(--content-max-width);
    padding: var(--spacing-112) var(--spacing-64);
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 auto;
}

.title {
    text-align: center;
}

.wrapper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
    flex-wrap: wrap;
}

.highlight {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 405px;
    gap: var(--spacing-32);
    background: transparent;
}

.image {
    width: 240px;
    height: 240px;
    border-radius: var(--border-radius-full);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0px 30px;
    gap: var(--spacing-16);
}

.description {
    text-align: center;
}

@media (width < 1440px) {
    .root {
        width: 375px;
        padding: var(--spacing-40) var(--spacing-20);
        flex-direction: column;
        justify-content: center;
        gap: var(--spacing-40);
        flex-shrink: 0;
    }

    .wrapper {
        flex-direction: column;
        align-items: center;
        gap: var(--spacing-40);
        align-content: center;
    }

    .highlight {
        width: 335px;
    }
    .content {
        padding: 0px var(--spacing-24);
    }
}
