/* Sidebar Features Title */
.feature-title {
    font-size: 18px;
    font-weight: 800;
    line-height: 18px;
    color: rgb(0, 0, 0);
}

/* Sidebar List Styling */
.feature-list li a {
    font-size: 17px;
    font-weight: 500;
    line-height: 29px;
    color: rgb(0, 0, 0);
    transition: all 0.2s ease-in-out;
}

.feature-list li a:hover {
    text-decoration: underline !important;
}

.heading-underline {
    width: 60px !important;         /* make it small */
    border-bottom: 2px solid black;
}
.feature-card {
    background: #cbcbcb;
    border-radius: 6px;
    padding: 6px 12px;
    color: #000;
    font-size: 12px;
    font-weight: 400;
    line-height: 20px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s ease-in-out;
    white-space: nowrap; /* keeps each card to a single row of text */
}

.feature-card:hover {
    background: #b5b5b5;
    text-decoration: underline;
}

.newsletter-btn {
    font-size: 14px;
    background-color: #2d318b;
    border: 0 !important;
    border-radius: 0;
    font-weight: bold;
    font-style: normal;
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 2px;
    color: #fff;
    padding: 12px 24px;
    width: 100%;           /* make it full width */
    display: block;
    transition: background-color 0.3s ease;
}

.newsletter-btn:hover {
    background-color: #1f2364; /* darker shade on hover */
    cursor: pointer;
}

.news-item h3{
    font-size: 23px;
    color: #000000;
    margin-bottom: 16px;
}
.tags {
    font-size: 17px !important;
    font-weight: 500;
    color: rgb(0, 180, 227);
    text-transform: uppercase !important   ;

}

.news-item img {
    min-height: 180px;
    min-width: 100%;
    width: 1024;
}

/* Category link hover effects */
.category-link {
    transition: text-decoration 0.2s ease;
}

.category-link:hover {
    text-decoration: underline !important;
}
