.root {
    display: flex;
    gap: 36px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--color-neutral-200);
}

@media (max-width: 768px) {
    .root {
        flex-direction: column;
        gap: 1rem;
        padding: 0 1rem;
    }

    .root > :first-child {
        border-right: none;
        padding-right: 0;
        padding-bottom: 1rem;
    }
}

.container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    width: 100%;
}

.container.double {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.container.double:first-child {
    padding-right: 36px;
    border-right: 1px solid var(--color-neutral-200);
}

@media (max-width: 768px) {
    .container.double {
        gap: 40px;
        flex-direction: row;
        align-items: flex-start;
        padding-bottom: 1rem;
    }

    .container.double:first-child {
        border-right: none;
        padding-right: 0;
        position: relative;
    }

    .container.double:first-child::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: -1rem;
        right: -1rem;
        height: 1px;
        background-color: var(--color-neutral-200);
    }
}

.description {
    flex: 1;
    min-width: 0;
}

.priceWrapper {
    display: flex;
    align-items: flex-end;
    min-width: 90px;
}

.priceColumn {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.priceAmount {
    display: flex;
    align-items: stretch;
}

.periodWrapper {
    display: flex;
    flex-direction: column;
    margin-left: 3px;
    justify-content: flex-end;
    align-self: stretch;
}

.periodWrapper:has(.label) {
    justify-content: space-between;
}

.label {
    background-color: var(--color-bg-fill-brand-indigo);
    padding: 2.77px 5.54px;
    font-size: 6.926px;
    border-radius: var(--border-radius-xxs);
    width: fit-content;
}

.price {
    margin-bottom: -5px;
    align-self: flex-start;
}

.currency {
    align-self: flex-start;
}

.period {
    color: var(--color-neutral-500);
}

.initialPrice {
    color: var(--color-neutral-300);
    text-decoration: line-through;
}

.prefix {
    color: var(--color-neutral-500);
}
