.container-top {
    max-width: 1200px;
    margin: calc(var(--view-frame-width) * 0.12) auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}
.container-top .title {
    font-size: calc(var(--view-frame-width) * 0.056);
    font-weight: bold;
    text-align: center;
    padding-bottom: calc(var(--view-frame-width) * 0.08);
}
.container-top .description {
    font-size: calc(var(--view-frame-width) * 0.033);
    font-weight: normal;
    text-align: center;
}

.promotion-list {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}
.promotion-list-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 calc(var(--view-frame-width) * 0.046) 0 rgba(0, 0, 0, 0.2);
    --border-radius-calc: 2;
    overflow: hidden;
    width: 90%;
    margin-bottom: calc(var(--view-frame-width) * 0.13);
}
.header {
    width: 100%;
    background-image: linear-gradient(17deg, #d1f9ff 11%, #ffccfa 52%, #ffbaff 67%, #e4b1ff);
    padding-bottom: calc(var(--view-frame-width) * 0.02);
}

.content-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 89%;
    word-break: normal;
    word-break: auto-phrase;
    /* text-wrap: balance; */
}
.border-dot {
    background-image: url("../img/dot_line.svg");
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    width: 98.5%;
    height: calc(var(--view-frame-width) * 0.07);
    margin-bottom: calc(var(--view-frame-width) * 0.0275);
}
.content-title {
    width: 100%;
    font-size: calc(var(--view-frame-width) * 0.065);
    font-weight: bold;
    text-align: left;
    padding-top: calc(var(--view-frame-width) * 0.13);
    padding-bottom: calc(var(--view-frame-width) * 0.07);
    text-wrap: balance;
    line-height: 1.75em;
}
.promotion-list-item .title {
    width: 100%;
    font-size: calc(var(--view-frame-width) * 0.04);
    font-weight: bold;
    text-align: left;
    padding-top: calc(var(--view-frame-width) * 0.054);
}
.promotion-list-item .description {
    width: 100%;
    font-size: calc(var(--view-frame-width) * 0.033);
    font-weight: normal;
    text-align: left;
    padding: calc(var(--view-frame-width) * 0.009) 0;
}
.promotion-list-item .description:nth-last-of-type(1) {
    padding-bottom: calc(var(--view-frame-width) * 0.054);
}
