/* ==== DSSA articles / news listing pages ==== */
.pl-page {
    background: #f7f9fa;
    padding: 52px 0 92px
}

.pl-wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 20px
}

/* header */
.pl-head {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 46px
}

.pl-pre {
    display: block;
    color: #BF9445;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 10px
}

.pl-title {
    color: #072C43;
    font-size: clamp(28px,3.6vw,40px);
    font-weight: 800;
    margin: 0 0 12px
}

.pl-sub {
    color: #556;
    font-size: 15.5px;
    line-height: 1.8;
    margin: 0
}

/* grid of theme-styled cards */
.pl-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 30px
}

    .pl-grid .edu-blog {
        height: 100%
    }

        .pl-grid .edu-blog .inner {
            height: 100%;
            display: flex;
            flex-direction: column;
            background: #fff
        }

        .pl-grid .edu-blog .content {
            flex: 1;
            display: flex;
            flex-direction: column
        }

        .pl-grid .edu-blog .read-more-btn {
            margin-top: auto
        }

    .pl-grid .thumbnail img {
        width: 100%;
        height: 230px;
        object-fit: cover
    }

.pl-empty {
    text-align: center;
    color: #556;
    font-size: 16px;
    padding: 40px 0
}

/* entrance */
.pl-rv {
    opacity: 0;
    transform: translateY(20px);
    animation: plIn .7s cubic-bezier(.22,1,.36,1) forwards
}

.pl-grid .pl-rv:nth-child(2) {
    animation-delay: .08s
}

.pl-grid .pl-rv:nth-child(3) {
    animation-delay: .16s
}

.pl-grid .pl-rv:nth-child(4) {
    animation-delay: .24s
}

.pl-grid .pl-rv:nth-child(n+5) {
    animation-delay: .3s
}

@keyframes plIn {
    to {
        opacity: 1;
        transform: none
    }
}

/* responsive */
@media (max-width:1024px) {
    .pl-grid {
        grid-template-columns: repeat(2,1fr)
    }
}

@media (max-width:640px) {
    .pl-grid {
        grid-template-columns: 1fr
    }
}

/* ==== card read-more pill: same block as the home sliders (home-late-fixes
   only loads on Home, the listing needs its own copy) ==== */
html body .eb-post-style-5 .read-more-btn .blog-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    padding: 9px 22px !important;
    border: 2px solid #BF9445 !important;
    border-radius: 30px;
    color: #072C43 !important;
    font-weight: 700;
    font-size: 13px;
    text-decoration: none !important;
    line-height: 1;
    background: transparent;
    transition: background .25s ease, color .25s ease, transform .25s ease;
}

    html body .eb-post-style-5 .read-more-btn .blog-btn:hover {
        background: #BF9445 !important;
        color: #fff !important;
        transform: translateY(-2px);
    }

    html body .eb-post-style-5 .read-more-btn .blog-btn i {
        font-size: 12px;
    }

html body .eb-post-style-5 .read-more-btn {
    margin-top: 14px;
}

/* the content padding home cards inherit from the home-only stylesheets */
.pl-grid .edu-blog .inner {
    overflow: hidden
}

.pl-grid .edu-blog .content {
    padding: 22px 26px 28px !important
}
