/* Reset default table styles */
.news-banner-table {
    border-collapse: separate; /* Separate borders for the cells */
    border-spacing: 10px; /* No space between the cell borders */
    width: 100%;
}

.news-banner-table td {
    padding: 15px;
    border: 1px solid #e0e0e0;
    text-align: center;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s ease-in-out;
    position: relative;
}

.news-banner-table td:hover {
    background-color: #fff;
}


/* Rest of the CSS code... */


.news-banner-post-link {
    display: block;
    text-align: center;
    position: relative;
    text-decoration: none;
    color: #333;
}

.news-banner-title {
    font-size: 50px; /* Adjust the font size as needed */
    font-weight: bold;
    margin: 10px;
    padding-top: 10px; /* Adjust the spacing above the title */
}

.news-banner-thumbnail {
    max-width: 100%;
    height: auto;
    width: 100%;
    border-radius: 5px;
    margin-bottom: 10px;
}

.news-banner-details {
    text-align: center;
}

.news-banner-meta {
    font-size: 14px;
    color: #888;
    margin: 0;
}

.news-banner-content {
    font-size: 16px;
    margin-bottom: 10px;
    color: #555;
}

.read-more-link a {
    color: #0073e6;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease-in-out;
}

.read-more-link a:hover {
    color: #0056b3;
}
