.newsroom-wrapper {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
    max-width: 1200px;
    margin: 80px auto;
    padding: 0 20px;
}

.newsroom-latest-wrapper {
    margin-top: 0;
    margin-bottom: 0;
}

.newsroom-latest-wrapper .newsroom-grid {
    margin-bottom: 0;
}

.newsroom-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    gap: 20px;
    flex-wrap: wrap;
}

.newsroom-search input,
.newsroom-sort select {
    padding: 10px 15px;
    border: 1px solid #CCC !important;
    border-radius: 8px !important;
    min-height: 48px !important;
    font-size: 16px !important;
    max-width: 100%;
}

.newsroom-search input {
    width: 300px;
}

.newsroom-sort select {
    background: #fff;
    cursor: pointer;
}

/* Grid Layout */
.newsroom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

@media (max-width: 992px) {
    .newsroom-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .newsroom-grid {
        grid-template-columns: 1fr;
    }

    .newsroom-controls {
        flex-direction: column;
        align-items: stretch;
    }

    .newsroom-search input,
    .newsroom-sort select {
        width: 100%;
    }
}

/* Card Design */
.newsroom-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.newsroom-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.newsroom-card-image {
    height: auto;
    width: 100%;
    background: #f5f5f5;
    overflow: hidden;
    aspect-ratio: 3/2;
}

.newsroom-card-image img {
    aspect-ratio: 3/2;
    width: 100%;
    height: auto;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.newsroom-card:hover .newsroom-card-image img {
    transform: scale(1.05);
}

.newsroom-placeholder-image {
    width: 100%;
    height: 100%;
    background: #e0e0e0;
}

.newsroom-card-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.newsroom-card-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #020202;
}

.newsroom-card-category {
    color: #DDA700;
}

.newsroom-card-separator {
    color: #020202;
    opacity: 0.5;
}

.newsroom-card-date {
    color: #020202;
}

.newsroom-card-title {
    font-size: 18px;
    line-height: 1.4;
    margin: 0;
    font-weight: 500 !important;
    color: #020202;
    font-weight: 700;
}


/* Load More */
.newsroom-load-more-container {
    text-align: center;
    margin-top: 30px;
}

.newsroom-btn {
    background: #0073aa;
    color: #fff;
    border: none;
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 30px;
    cursor: pointer;
    transition: background 0.2s ease;
}

.newsroom-btn:hover {
    background: #005177;
}

.newsroom-loading {
    text-align: center;
    padding: 20px;
    color: #666;
    font-style: italic;
}

.newsroom-no-results {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px;
    color: #666;
    background: #f9f9f9;
    border-radius: 8px;
}

@media screen and (max-width: 991px) {
    .newsroom-wrapper {
        padding: 0;
    }

    .newsroom-card-title {
        font-size: 16px;
    }
}