.ingredients-subtitle-wrapper {
    margin-bottom: 32px;
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 24px;
}

.ingredients-subtitle {
    font-weight: 500;
    font-size: 24px;
    line-height: 120%;
    vertical-align: middle;
}

.ingredients-count {
    font-weight: 500;
    font-size: 14px;
    line-height: 16px;
    letter-spacing: -0.6px;
    vertical-align: middle;
    color: #166534;
    background-color: #DCFCE7;
    padding: 4px 16px;
    border-radius: 9999px;
}

.ingredients-one-capsule {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    font-weight: 500;
    font-size: 16px;
    line-height: 120%;
    text-align: right;
    vertical-align: middle;
    margin-bottom: 16px;
}

.ingredients-item {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid #E2E8F0;
}

.ingredients {
    margin-bottom: 32px;
}

.ingredients-item {
    padding-bottom: 24px;
}

.ingredients-item:not(:first-child) {
    padding-top: 24px;
}

.ingredient-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-start;
    justify-content: center;
}

.ingredient-name {
    font-weight: 700;
    font-size: 20px;
    line-height: 24px;
    vertical-align: middle;
    color: #111827;
}

.ingredient-description {
    font-family: Inter;
    font-weight: 400;
    font-size: 16px;
    line-height: 22.75px;
    vertical-align: middle;
    color: #4B5563;
}

.ingredient-amount {
    font-weight: 450;
    font-size: 18px;
    line-height: 120%;
    text-align: right;
    vertical-align: middle;
}

.inactive-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    background-color: #F9FAFB;
    border-radius: 8px;
    padding: 16px;
    width: 100%;
}

.inactive-circle {
    border-radius: 50%;
    background-color: #9CA3AF;
    height: 8px;
    width: 8px;
}

.inactive-ingredients {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 16px;
    margin-top: 32px;
}

.inactive-text {
    font-weight: 450;
    font-size: 16px;
    line-height: 22.75px;
    vertical-align: middle;
    color: #374151;
}

@media (min-width: 1024px) {

    .ingredients-one-capsule {
        font-size: 20px;
        margin-bottom: 24px;
    }

    .inactive-ingredients {
        gap: 24px;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .inactive-item {
        height: 100%;
    }
}