.top-section img {
    width: auto;
    max-width: 100%;
    height: auto;
    margin: 32px auto 0;
}
.top-section .promo-status {
    margin-top: 24px;
    font-size: 12px;
    line-height: 130%;
    padding: 4px 8px;
    border-radius: 24px;
    background-color: var(--bg-200);
}
.top-section .promo-status {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 24px auto 0;
    width: max-content;
}
.top-section .promo-status .promo-status__label {
    color: var(--text-400);
    position: relative;
    display: flex;
    align-items: center;
    margin-right: 4px;
}
.top-section .promo-status .promo-status__value {
    font-family: var(--main-b);
}
.top-section .promo-status .promo-status__label::before {
    content: '';
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: #20d552;
    margin-right: 4px;
    display: block;
}
.top-section p {
    font-size: 14px;
    text-align: center;
    margin-top: 24px;
}
.top-section button {
    display: block;
    font-size: 14px;
    text-align: center;
    font-family: var(--main-b);
    text-decoration: underline;
    color: var(--text-200);
    margin: 0px auto 0;
    width: max-content;
}
.top-section button:hover {
    color: var(--text-300);
}
.top-section .btn {
    margin: 24px auto 0;
    display: block;
    max-width: max-content;
}
@media(max-width: 767px) {
    .top-section img {
        margin-top: 24px;
    }
    .top-section .promo-status,
    .top-section p,
    .top-section .btn {
        margin-top: 16px;
    }
}

.miles-rules-content {
    color: var(--text-400);
    column-count: 2;
    line-height: 1.6;
    height: 135px;
    overflow: hidden;
    position: relative;
}
.miles-rules-content::after {
    display: block;
    content: "";
    position: absolute;
    height: 6rem;
    width: 100%;
    bottom: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0), #15010a);
}
.miles-rules-content.active {
    height: initial;
}
.miles-rules-content.active::after {
    display: none;
}
.miles-rules-content strong {
    font-family: var(--main-b);
}
.miles-rules-content a {
    color: var(--text-200);
    text-decoration: underline;
}
.miles-rules-content a:hover {
    color: var(--text-300);
}
.miles-rules-content ul {
    list-style: disc;
    padding-left: 15px;
}
.show-more {
    font-size: 16px;
    color: var(--text-200);
    text-decoration: underline;
    font-family: var(--main-b);
    margin-top: 16px;
}
.show-more:hover {
    color: var(--text-300);
}
@media(max-width: 767px) {
    .miles-rules-content {
        column-count: 1;
    }
}