.cr-resources-wrapper {
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 40px;
    width: 100%;
}

.cr-sidebar { width: 100%; }

.cr-search-box {
    position: relative;
    margin-bottom: 10px;
}

.cr-search-input {
    width: 100%;
    border: 1px solid #2142d8;
    padding: 10px 34px 10px 10px;
    font-size: 14px;
    box-sizing: border-box;
}

.cr-search-icon {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    color: #2142d8;
    font-size: 22px;
}

.cr-filter-block { margin-bottom: 30px; }

.cr-filter-block h4 {
    background: #2142d8;
    color: #fff;
    padding: 8px 14px;
    margin: 0 0 15px;
    font-size: 18px;
    font-weight: 700;
}

.cr-filter-block label {
    display: block;
    margin-bottom: 7px;
    font-size: 14px;
    color: #555;
    cursor: pointer;
}

.cr-filter-block input { margin-right: 6px; }

.cr-total {
    margin-bottom: 20px;
    font-weight: 700;
    color: #666;
}

.cr-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 8px;
}

.cr-card {
    background: var(--topic-color);
    border-top: 8px solid #2142d8;
    color: #fff;
    display: flex;
    flex-direction: column;
    min-height: 295px;
}

.cr-card-image {
    width: 100%;
    height: 185px;
    background: #d192c8;
    overflow: hidden;
}

.cr-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cr-card-placeholder { background: #d192c8; }

.cr-card-content {
    background: var(--topic-color);
    padding: 12px 14px 16px;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.cr-card h3 {
    margin: 0 0 25px;
    color: #fff;
    font-size: 17px;
    line-height: 1.25;
    font-weight: 700;
}

.cr-card-links {
    font-size: 13px;
    line-height: 1.4;
}

.cr-card-links a {
    color: #fff;
    text-decoration: underline;
    font-weight: 700;
}

.cr-card-links span { color: #fff; }

.cr-load-more {
    display: block;
    margin: 70px auto 0;
    min-width: 290px;
    background: #ff846b;
    color: #fff;
    border: 0;
    border-radius: 7px;
    padding: 20px 35px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    letter-spacing: 1px;
}

.cr-load-more:hover { opacity: 0.9; }

.cr-loading {
    opacity: 0.7;
    pointer-events: none;
}

.cr-no-results {
    grid-column: 1 / -1;
}

@media (max-width: 992px) {
    .cr-resources-wrapper {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .cr-grid { grid-template-columns: repeat(2, 1fr); }
}

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

    .cr-load-more {
        width: 100%;
        min-width: auto;
    }
}
