.cpr-card-grid {
    display: grid;
    gap: clamp(18px, 2vw, 28px);
    grid-template-columns: repeat(auto-fit, minmax(min(100%, 270px), 1fr));
    margin: 28px 0;
}

.cpr-card {
    background: #ffffff;
    border: 1px solid rgba(22, 37, 48, 0.12);
    border-radius: 8px;
    box-shadow: 0 18px 45px rgba(22, 37, 48, 0.08);
    overflow: hidden;
}

.cpr-card__image {
    aspect-ratio: 16 / 9;
    background: #d9e8e5;
    display: block;
    overflow: hidden;
}

.cpr-card__image img {
    display: block;
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.cpr-card__body {
    padding: clamp(20px, 2.4vw, 28px);
}

.cpr-card__meta {
    color: #776d45;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin: 0 0 8px;
    text-transform: uppercase;
}

.cpr-card__badge {
    background: #edf4f1;
    border-radius: 999px;
    color: #162530;
    display: inline-flex;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    line-height: 1;
    margin: 0 0 12px;
    padding: 8px 10px;
    text-transform: uppercase;
}

.cpr-card__title {
    color: #162530;
    font-size: clamp(1.22rem, 1.7vw, 1.55rem);
    line-height: 1.18;
    margin: 0 0 10px;
}

.cpr-card__title a {
    color: inherit;
    text-decoration: none;
}

.cpr-card__excerpt {
    color: #46525a;
    line-height: 1.65;
    margin: 0 0 20px;
}

.cpr-card__link {
    color: #0c6f78;
    display: inline-flex;
    font-weight: 800;
    text-decoration: none;
}

.cpr-empty {
    background: #f4f1e8;
    border-left: 4px solid #cda349;
    color: #162530;
    padding: 16px 18px;
}

.cpr-packet,
.cpr-resource-files {
    display: grid;
    gap: 14px;
    margin: 28px 0;
}

.cpr-packet__item,
.cpr-resource-files__item {
    background: #ffffff;
    border: 1px solid rgba(22, 37, 48, 0.12);
    border-radius: 8px;
    box-shadow: 0 14px 35px rgba(22, 37, 48, 0.07);
    display: grid;
    gap: 18px;
    grid-template-columns: 58px minmax(0, 1fr);
    padding: clamp(18px, 2.6vw, 28px);
}

.cpr-packet__number,
.cpr-resource-files__number {
    align-items: center;
    background: #edf4f1;
    border-radius: 999px;
    color: #162530;
    display: inline-flex;
    font-weight: 900;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.cpr-packet__body h3,
.cpr-resource-files__body h3 {
    color: #162530;
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    line-height: 1.15;
    margin: 0 0 8px;
}

.cpr-packet__body h3 a,
.cpr-resource-files__body h3 a {
    color: inherit;
    text-decoration: none;
}

.cpr-packet__meta {
    color: #776d45;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    margin: 0 0 10px;
    text-transform: uppercase;
}

.cpr-packet__note,
.cpr-resource-files__note {
    background: #fff8ec;
    border-left: 4px solid #cda349;
    color: #46525a;
    line-height: 1.65;
    margin: 0 0 16px;
    padding: 12px 14px;
}

@media (max-width: 620px) {
    .cpr-packet__item,
    .cpr-resource-files__item {
        grid-template-columns: 1fr;
    }
}
