
.card-img-top {
    position: relative;
}

.play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 50px !important;
    height: 50px!important;
    background: rgb(144 212 0 / 50%);
    border-radius: 50%;
    padding: 5px;
    box-sizing: border-box;
}

.podcast-page {
    margin-bottom: 0;
    background-color: #EFF4FB;
}

.podcast-page > header {
    text-align: center;
}

.podcast-page .posts-count {
    padding-top: 150px;
    margin-bottom: 0;
    font-family: 'Suez One', serif;
    font-size: 14px;
    color: #1d3557;
}

.podcast-page .page-title {
    margin-top: 0;
}

.podcast-page .page-title .text {
    display: flex;
    justify-content: center;
    align-items: center;
}

.podcast-page .page-title .category {
    order: 1;
    margin-left: 1rem;
}

.podcast-page .page-title::after {
    margin-left: auto;
    margin-right: auto;
}

@media all and (min-width: 960px) {
    .podcast-page .page-title .category {
        margin-left: 0;
    }
}

.pagination-link {
    margin-top: 2.5rem;
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-link a {
    margin: 0 1rem;
    width: 15rem;
    padding: 1rem;
    font-weight: 700;
    border: 1px solid #ccc;
    text-align: center;
    text-decoration: none;
    color: #777;
}

.pagination-link a:hover {
    background: var(--color-green-light);
    color: #fff;
    border-color: #fff;
}

.all-articles .custom-card {
    border-radius: 0px;
    border-top-right-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease;
    border: 0px;
}

.all-articles .custom-card:hover {
    transform: scale(1.02);
}

.all-articles .custom-card img {
    border-top-right-radius: 15px;
    height: 220px;
    object-fit: cover;
    width: 100%;
}

.all-articles .category-badge {
    line-height: 1;
    margin-top: 0;
    padding: 5px 8px;
    display: inline-block;
    background: #fff;
    color: #172566;
    border-radius: 15px;
    font-size: 0.8rem;
    margin-bottom: 0px;
    font-weight: 600;
}

.all-articles .card-title {
    font-weight: bold;
    color: #1d3557;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 3em;
    line-height: 1.5em;
    font-size: 1.4rem;
}

.all-articles .card-text {
    color: #666;
    font-size: 0.9rem;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 3em;
    line-height: 1.5em;
    font-size: 1rem;
}

.all-articles .card-body {
    position: relative;
}

.all-articles .btn-read {
    background-color: #97D700;
    color: #ffffff;
    font-weight: 700;
    border-radius: 0px;
    padding: 10px 20px;
    border: 1px solid #97D700;
    transition: background-color 0.3s ease;
    margin-top: 15px;
}

.all-articles .btn-read:hover {
    background-color: #fff;
    color: #97D700;
}

.all-articles .btn-read span {
    margin-left: 10px;
    font-size: 1.2rem;
}

.all-articles .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    font-size: 1.2rem;
}

.all-articles .pagination .page-numbers {
    color: #667085;
    font-weight: 400;
    text-decoration: none;
    padding: 5px 10px;
    border-radius: 50%;
    transition: background-color 0.3s, color 0.3s;
}

.all-articles .pagination .current {
    color: #001d73;
    padding: 5px 10px;
    font-weight: 700;
}

.all-articles .pagination .dots {
    padding: 0 10px;
}

.all-articles .pagination .prev {
    font-size: 1.5rem;
    text-decoration: none;
    padding: 5px 10px;
}

.all-articles .pagination .next {
    font-size: 1.5rem;
    text-decoration: none;
    padding: 5px 10px;
}

.all-articles .pagination-info {
    font-weight: bold;
    margin: 0 10px;
}
