.entity-description__season {
    display: inline-block;
    margin-bottom: 12px;
    padding: 5px 10px;
    border-radius: 8px;
    background: #efe6fd;
    color: #6828ba;
    font-size: 13px;
    font-weight: 600;
}

.entity-description__params {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px 24px;
    margin: 24px 0 0 0;
    padding: 18px 20px;
    border: 1px solid #ececf0;
    border-radius: 14px;
}

.entity-description__param {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #f3f3f6;
}

.entity-description__param:nth-child(odd):nth-last-child(-n + 2),
.entity-description__param:nth-child(odd):nth-last-child(-n + 2) ~ .entity-description__param {
    padding-bottom: 0;
    border-bottom: none;
}

.entity-description__param-key {
    font-size: 14px;
    color: #8b8b93;
}

.entity-description__param-value {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #1b1b1f;
    text-align: right;
}

@media (max-width: 720px) {
    .entity-description__params {
        grid-template-columns: minmax(0, 1fr);
        margin-top: 20px;
        padding: 14px 16px;
    }

    .entity-description__param:nth-child(odd):nth-last-child(-n + 2):not(:last-child) {
        padding-bottom: 8px;
        border-bottom: 1px solid #f3f3f6;
    }

    .entity-description__param:last-child {
        padding-bottom: 0;
        border-bottom: none;
    }
}
