.news-list {
    position: relative;
    width: 100%;
    padding: 4.39238653% 0 3.660322108% 0;
    background: linear-gradient(360deg, #D9D9D9 0%, #FFFFFF 100%);
}

.news-list__container {
    width: 100%;
    max-width: 75rem;
    margin: 0 auto;
}

.editor-styles-wrapper .block-editor-block-list__layout h2.news-list__title,
.news-list h2.news-list__title {
    font-size: 2.375rem;
    font-weight: 700;
    line-height: 1.25;
    margin: 0 0 2.5rem 0;
    background: linear-gradient(266.9deg, #700C1C 0.67%, #E41E26 99.13%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
    text-transform: uppercase;
    text-align: center;
}

/* Grid Layout */
.news-list__grid {
    display: grid;
    grid-template-columns: repeat(var(--news-list-cols, 3), 1fr);
    gap: 2rem;
    width: 100%;
    margin-bottom: 3.5rem;
}

/* Cards Layout (Identical to news-slider) */
.news-list__card {
    display: flex;
    flex-direction: column;
    height: auto;
}

.news-list__thumb-wrapper {
    position: relative;
    width: 100%;
    padding-top: 66.954022989%;
    overflow: hidden;
    margin-bottom: 0.625rem;
}

.news-list__thumb {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-object-fit: cover;
    object-fit: cover;
    -webkit-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
}

.news-list__card:hover .news-list__thumb {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.news-list__content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.news-list__name {
    color: #2D2D2D !important;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.4;
    text-decoration: none;
    transition: color 0.2s ease;
}

.news-list__name:hover {
    color: #E41E26 !important;
}

/* Pagination/Navigation Section (Identical to news-slider) */
.news-list__pagination {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    gap: 7px !important;
    margin-top: 2.875rem !important;
    position: relative !important;
    width: auto !important;
    max-width: max-content !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.news-list__page-arrow {
    width: 48px !important;
    height: 48px !important;
    border-radius: 50% !important;
    background-color: #ffffff !important;
    border: none !important;
    color: #E41E26 !important;
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    cursor: pointer !important;
    box-shadow: 0px 5px 25px 0px #0000001A !important;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1) !important;
    padding: 0 !important;
    position: static !important;
    flex-shrink: 0 !important;
    text-decoration: none;
}

.news-list__page-arrow:hover {
    background: linear-gradient(266.9deg, #700C1C 0.67%, #E41E26 99.13%) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 20px -5px rgba(194, 14, 26, 0.35) !important;
    transform: translateY(-2px) !important;
}

.news-list__page-arrow:active {
    transform: translateY(0) !important;
}

.news-list__page-arrow.is-disabled {
    opacity: 0.5 !important;
    background-color: #F5F5F5 !important;
    color: #A0A0A0 !important;
    cursor: not-allowed !important;
    pointer-events: none !important;
    box-shadow: none !important;
    transform: none !important;
}

.news-list__page-link {
    width: auto !important;
    height: auto !important;
    background: transparent !important;
    opacity: 1 !important;
    color: #4E4E4E !important;
    font-size: 1.125rem !important;
    font-weight: 500 !important;
    cursor: pointer !important;
    padding: 4px 12px !important;
    -webkit-transition: color 0.2s ease !important;
    transition: color 0.2s ease !important;
    border-radius: 0 !important;
    margin: 0 !important;
    border: none !important;
    box-shadow: none !important;
    text-decoration: none;
}

.news-list__page-link:hover {
    color: #BC132A !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
}

.news-list__page-link.is-active {
    color: #BC132A !important;
    font-weight: 700 !important;
    background: transparent !important;
    box-shadow: none !important;
    transform: none !important;
    pointer-events: none !important;
}

/* Responsive media queries */
@media (max-width: 991px) {
    .news-list {
        padding: 2.5rem 1.25rem;
    }

    .editor-styles-wrapper .block-editor-block-list__layout h2.news-list__title,
    .news-list h2.news-list__title {
        font-size: 2rem;
        margin-bottom: 2rem;
    }

    .news-list__grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem;
    }
}

@media (max-width: 600px) {
    .news-list__grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem;
    }
    
    .news-list__page-link,
    .news-list__page-arrow {
        min-width: 38px;
        height: 38px;
        font-size: 0.9375rem;
    }
}
