.details {
    color: var(--color--dark-gray);
    column-gap: 24px;
    display: flex;
    font-size: 14px;
    line-height: 22px;
    margin-bottom: 32px;
}

.details li {
    align-items: center;
    column-gap: 8px;
    display: flex;
}

.details li:last-child {
    color: var(--color--brand);
}

.details li:not(:last-child)::after {
    background-color: var(--color--soft-gray);
    content: "";
    height: 20px;
    margin-left: 16px;
    width: 1px;
}


.promo {
    border-radius: 12px;
    box-shadow: 0 0 12px var(--color--black-transparent-20);
    overflow: hidden;
    padding: 24px 0 0;
}

.promo-header {
    margin-bottom: 8px;
    padding: 0 24px;
}

.promo-title {
    margin-bottom: 6px;
}

.promo-description {
    margin-bottom: 0;
}

.camp-category-card {
    border-radius: 0;
    box-shadow: none;
}

.camp-category-card:first-of-type {
    border-bottom: 1px solid var(--color--soft-gray);
    margin-bottom: 16px;
    padding-bottom: 16px;
}

.camp-category-card .deadline {
    border-bottom: 0;
    padding-bottom: 0;
}



@media (max-width: 1024px) {
    .details {
        margin-bottom: 24px;
    }
    
    .promo-header {
        margin-bottom: 0;
    }
}


@media (max-width: 691px) {
    .details {
        column-gap: 10px;
    }

    .details li {
        column-gap: 8px;
    }

    .details li:not(:last-child)::after {
        margin-left: 0;
    }

    .details svg {
        height: 14px;
        width: auto;
    }
}