﻿.champions-post-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.champions-post-card {
    background: #ffffff;
    border: 1px solid #d9d9d9;
    border-radius: 16px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
}

.champions-post-card__thumbnail {
    display: block;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.champions-post-card__thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.champions-post-card__content {
    padding: 22px;
}

.champions-post-card__title {
    margin: 0 0 12px;
    font-size: 36px;
    line-height: 1.2;
    font-weight: 700;
}

.champions-post-card__title a {
    color: #0f2740;
    text-decoration: none;
}

.champions-post-card__title a:hover {
    color: #132f4d;
}

.champions-post-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 16px;
    color: #7b8292;
}

.champions-post-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.champions-post-card__meta i {
    color: #dc1b2a;
}

.champions-post-card__excerpt {
    color: #1f2d3d;
    margin-bottom: 18px;
    font-size: 18px;
    line-height: 1.65;
}

.champions-post-card__button {
    display: inline-block;
    padding: 10px 18px;
    background: #dc1b2a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 0;
    font-weight: 700;
    transition: background-color 0.2s ease;
}

.champions-post-card__button:hover {
    background: #b80f1d;
    color: #ffffff;
}

.champions-post-grid-pagination {
    margin-top: 26px;
}

.champions-post-grid-pagination__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 2px;
    align-items: center;
}

.champions-page {
    min-width: 44px;
    height: 42px;
    padding: 0 10px;
    border: 0;
    border-radius: 3px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    color: #ffffff !important;
    background: #e1162d !important;
    font-weight: 700;
    line-height: 1;
    transition: background-color 0.2s ease;
}

.champions-page:hover,
.champions-page.is-current {
    color: #ffffff !important;
    background: #bb1024 !important;
}

.champions-page--dots {
    cursor: default;
    opacity: 0.85;
}

.champions-post-sidebar {
    width: 100%;
}

.champions-sidebar-heading {
    margin: 0 0 24px;
    font-size: 42px;
    line-height: 1.2;
    color: #20242a;
    font-weight: 700;
}

.champions-sidebar-post {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 0 16px;
    margin: 0 0 22px;
    border-bottom: 1px solid #d8d8d8;
}

.champions-sidebar-post:last-child {
    margin-bottom: 0;
}

.champions-sidebar-post__thumb {
    display: block;
    width: 92px;
    min-width: 92px;
    height: 92px;
    border-radius: 6px;
    overflow: hidden;
    background: #f0f0f0;
}

.champions-sidebar-post__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.champions-sidebar-post__thumb-placeholder {
    width: 100%;
    height: 100%;
    display: block;
    background: #d6d6d6;
}

.champions-sidebar-post__content {
    min-width: 0;
}

.champions-sidebar-post__title {
    margin: 0 0 12px;
    font-size: 39px;
    line-height: 1.25;
    color: #212529;
}

.champions-sidebar-post__title a {
    color: inherit;
    text-decoration: none;
}

.champions-sidebar-post__title a:hover {
    color: #dc1b2a;
}

.champions-sidebar-post__date {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 31px;
    color: #2d3137;
}

.champions-sidebar-post__date-icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 2px solid #1db84b;
    border-radius: 2px;
    position: relative;
    box-sizing: border-box;
}

.champions-sidebar-post__date-icon::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 2px;
    width: 6px;
    height: 9px;
    border-right: 2px solid #1db84b;
    border-bottom: 2px solid #1db84b;
    transform: rotate(45deg);
}

.champions-sidebar-heading--categories {
    margin-top: 54px;
}

.champions-sidebar-categories {
    margin: 0;
    padding: 0;
    list-style: none;
}

.champions-sidebar-categories li {
    margin-bottom: 18px;
}

.champions-sidebar-categories a {
    text-decoration: none;
    color: #212529;
    font-size: 36px;
    line-height: 1.3;
    font-weight: 500;
}

.champions-sidebar-categories a:hover {
    color: #dc1b2a;
}

@media (max-width: 1024px) {
    .champions-post-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .champions-post-card__title {
        font-size: 30px;
    }

    .champions-sidebar-heading {
        font-size: 34px;
    }

    .champions-sidebar-post__title {
        font-size: 30px;
    }

    .champions-sidebar-post__date {
        font-size: 24px;
    }

    .champions-sidebar-categories a {
        font-size: 28px;
    }
}

@media (max-width: 767px) {
    .champions-post-grid {
        grid-template-columns: 1fr;
    }

    .champions-post-card__content {
        padding: 18px;
    }

    .champions-post-card__title {
        font-size: 26px;
    }

    .champions-post-card__excerpt {
        font-size: 16px;
    }

    .champions-page {
        min-width: 38px;
        height: 38px;
        font-size: 14px;
    }

    .champions-sidebar-heading {
        font-size: 30px;
        margin-bottom: 18px;
    }

    .champions-sidebar-post {
        gap: 14px;
        padding-bottom: 14px;
        margin-bottom: 18px;
    }

    .champions-sidebar-post__thumb {
        width: 80px;
        min-width: 80px;
        height: 80px;
    }

    .champions-sidebar-post__title {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .champions-sidebar-post__date {
        font-size: 19px;
    }

    .champions-sidebar-categories a {
        font-size: 24px;
    }

    .champions-sidebar-heading--categories {
        margin-top: 34px;
    }
}

/* Production-safe reinforced selectors */
.elementor-widget-champions_post_grid .champions-post-grid-pagination,
.elementor-widget-champions_post_grid .champions-post-grid-pagination__list {
    margin-top: 26px;
}

.elementor-widget-champions_post_grid .champions-post-grid-pagination__list {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 2px !important;
    align-items: center !important;
}

.elementor-widget-champions_post_grid .champions-post-grid-pagination__list li {
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

.elementor-widget-champions_post_grid .champions-page {
    min-width: 44px;
    height: 42px;
    padding: 0 10px;
    border: 0;
    border-radius: 3px;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    color: #ffffff !important;
    background: #e1162d !important;
    font-weight: 700;
    line-height: 1;
}

.elementor-widget-champions_post_grid .champions-page:hover,
.elementor-widget-champions_post_grid .champions-page.is-current {
    color: #ffffff !important;
    background: #bb1024 !important;
}

.elementor-widget-champions_post_sidebar .champions-post-sidebar {
    width: 100%;
}

.elementor-widget-champions_post_sidebar .champions-sidebar-heading {
    margin: 0 0 24px;
    font-size: 42px;
    line-height: 1.2;
    color: #20242a;
    font-weight: 700;
}

.elementor-widget-champions_post_sidebar .champions-sidebar-post {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 0 16px;
    margin: 0 0 22px;
    border-bottom: 1px solid #d8d8d8;
}

.elementor-widget-champions_post_sidebar .champions-sidebar-post__thumb {
    display: block;
    width: 92px;
    min-width: 92px;
    height: 92px;
    border-radius: 6px;
    overflow: hidden;
    background: #f0f0f0;
}

.elementor-widget-champions_post_sidebar .champions-sidebar-post__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.elementor-widget-champions_post_sidebar .champions-sidebar-post__content {
    min-width: 0;
}

.elementor-widget-champions_post_sidebar .champions-sidebar-post__title {
    margin: 0 0 12px;
    font-size: 39px;
    line-height: 1.25;
    color: #212529;
}

.elementor-widget-champions_post_sidebar .champions-sidebar-post__title a {
    color: inherit;
    text-decoration: none;
}

.elementor-widget-champions_post_sidebar .champions-sidebar-post__date {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 31px;
    color: #2d3137;
}

.elementor-widget-champions_post_sidebar .champions-sidebar-post__date-icon {
    width: 18px;
    height: 18px;
    min-width: 18px;
    border: 2px solid #1db84b;
    border-radius: 2px;
    position: relative;
    box-sizing: border-box;
}

.elementor-widget-champions_post_sidebar .champions-sidebar-post__date-icon::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 2px;
    width: 6px;
    height: 9px;
    border-right: 2px solid #1db84b;
    border-bottom: 2px solid #1db84b;
    transform: rotate(45deg);
}

.elementor-widget-champions_post_sidebar .champions-sidebar-heading--categories {
    margin-top: 54px;
}

.elementor-widget-champions_post_sidebar .champions-sidebar-categories,
.elementor-widget-champions_post_sidebar .champions-sidebar-categories li {
    list-style: none !important;
    margin-left: 0 !important;
    padding-left: 0 !important;
}

.elementor-widget-champions_post_sidebar .champions-sidebar-categories {
    margin: 0;
    padding: 0;
}

.elementor-widget-champions_post_sidebar .champions-sidebar-categories li {
    margin-bottom: 18px;
}

.elementor-widget-champions_post_sidebar .champions-sidebar-categories a {
    text-decoration: none;
    color: #212529;
    font-size: 36px;
    line-height: 1.3;
    font-weight: 500;
}

.champions-sidebar-post__date { gap: 0; }
.champions-sidebar-post__date-icon { display: none !important; }
.elementor-widget-champions_post_sidebar .champions-sidebar-post__date { gap: 0; }
.elementor-widget-champions_post_sidebar .champions-sidebar-post__date-icon { display: none !important; }


.champions-sidebar-categories a.is-active { color: #dc1b2a; font-weight: 700; }
.elementor-widget-champions_post_sidebar .champions-sidebar-categories a.is-active { color: #dc1b2a; font-weight: 700; }

