
.sub-page-pills {
    display: flex;
    overflow-x: scroll;
    width: 100%;
    scrollbar-width: none;
    padding: 8px;
}

.sub-page-pills::-webkit-scrollbar {
    width: 0;
    background: transparent;
}

.sub-page-pills .pill {
    white-space: nowrap;
    padding: 8px 24px;
    margin: 4px;
    max-width: fit-content;
    border-radius: 25px;
    background: #bbbbbb;
    color: white;
    text-transform: uppercase;
    font-weight: bold;
}

.sub-page-pills .pill:hover {
    text-decoration: none;
}
.featured-articles {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
}

.featured-articles .article {
    width: 45%;
    padding: 8px 0;
}

.featured-articles .article:first-child {
    width: 92%;
}
.featured-articles a img {
    border-radius: 10px;
    object-fit: cover;
    width: 100%;
    height: auto;
}

.icon-clock {
    vertical-align: middle;
}
.date-time {
    color: black;
}

.sub-page-grids .see-more-btn {
    border-radius: 50px;
    width: fit-content;
    min-width: 70%;
    max-width: 90%;
    padding: 8px;
    align-self: center;
    margin: auto;
}
.sub-page-grids .see-more-btn a:hover {
    text-decoration: none;
    color: white;
}

.sub-page-grids .articles {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    padding: 12px 0;
}
.sub-page-grids .articles .article {
    width: 45%;
}
.sub-page-grids .articles .article img {
    border-radius: 10px;
    object-fit: cover;
    width: 100%;
    height: auto;
}
