.section .header {
    display: flex;
    border-bottom: 2px solid #334773;
    align-items: center;
    position: relative;
}

.section .header .title {
    padding: 16px 32px;
    border-radius: 16px 16px 0 0;
    background-color: #334773;
    color: #FFFAF4;
    font-size: 28px;
    white-space: nowrap;
}

.section-card {
    padding: 48px 0;
    border-bottom: #6B6B6B dashed 1px;
    cursor: unset !important;
}

.section-card .img-fluid {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}

.section-card .keep-reading {
    padding: 4px 48px;
    border: 1px solid #0A0A0A;
    border-radius: 99px;
    box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    background-color: #ffe164;
    cursor: pointer;
    position: absolute;
    bottom: 0;
    right: 0;
}

.section-card .title {
    padding: 0 0 0 16px;
    position: relative;
}

.section-card .title .text-ellipsis {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    text-overflow: ellipsis; /* 顯示省略號 */
    overflow: hidden;
}

.wrapper .section-card:last-child {
    border-bottom: unset;
}

.wave {
    background-color: #ffffff;
}

@media (max-width: 480px) {
    .section-card .title {
        height: 160px;
        padding: 0;
    }

    .section-card p,
    .section-card .img-fluid {
        margin-bottom: 8px;
    }
}
