:root {
    --tu-dark-gray: #2C2C2C;
    --tu-light-gray: #F2F2F2;

    --wop-dark-blue: #0A214A;
    --wop-blue: #006AAC;
    --wop-yellow: #F3C452;
}

/* .header-wrapper {
    display: none !important;
} */

.page-content {
    padding-top: 0px !important;
  }

.gridContainer {
    max-width: 100% !important;
    width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
}

html, body {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    font-family: 'Anek Latin', sans-serif !important;
    background: var(--tu-light-gray);  
}

.wp-post-image {
    display: block !important;
}

body {
    background-color: #f0f0f5;
}

.news-events-container {
    width: 100%;
    padding: 4rem 2rem;
    margin: auto;
    background-color: white;
    border-radius: 16px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.news-post-item {
    display: flex;
    flex-direction: row;
    gap: 2rem;
    padding: 2rem;
    margin-bottom: 2rem;
    border-bottom: 1px solid #e2e8f0;
    transition: transform 0.3s, box-shadow 0.3s;
}

.news-post-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
    background-color: #fafafa;
}

.news-post-thumbnail img {
    width: 400px;
    height: 250px;
    object-fit: contain;
    border-radius: 12px;
}

.news-post-content {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
}

.news-post-title {
    font-size: 1.75rem;
    color: #1a202c;
    margin: 0.5rem 0;
    font-weight: bold;
    cursor: pointer;
    transition: color 0.2s;
    line-height: 1.3;
}

.news-post-title:hover {
    color: #007bff;
}

.news-post-excerpt {
    margin: 0.75rem 0;
    line-height: 1.6;
    color: #4a5568;
}

.news-read-more {
    color: #007bff;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
    margin-top: 1rem;
}

.news-read-more:hover {
    color: #0056b3;
}

@media (max-width: 1024px) {
    .news-post-item {
        flex-direction: column;
        align-items: flex-start;
        padding-bottom: 0px;
    }

    .news-post-thumbnail img {
        width: 100%;
        height: auto;
    }

    .news-post-title {
        font-size: 1.25rem;
        text-align: center;
    }

    .news-post-excerpt, .news-read-more {
        font-size: 0.9rem;
        text-align: center;
    }
}