.cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 44px 34px;
}

.cards-grid--2 {
    gap: 52px 44px;
}

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

.guide-card {
    position: relative;
    display: flex;
    flex-direction: column;
}

.guide-card__cover {
    position: relative;
    display: block;
    aspect-ratio: 16 / 9.3;
    overflow: hidden;
    border-radius: 8px;
}

.guide-card__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.25s ease;
}

.guide-card:hover .guide-card__cover img {
    transform: scale(1.03);
}

.guide-card__cover--empty {
    background: linear-gradient(160deg, var(--tint) 0%, var(--tint-deep) 100%);
}

.guide-card__scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(23, 23, 74, 0) 40%, rgba(23, 23, 74, 0.45) 100%);
}

.guide-card__title {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0;
    padding: 18px;
    color: #fff;
    text-transform: uppercase;
    font-size: 21px;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 1px 5px rgba(0, 0, 0, 0.5);
}

.guide-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 14px 2px 0;
    gap: 12px;
}

.guide-card__desc {
    margin: 0;
    font-size: 15.5px;
    color: var(--ink);
    flex: 1;
}

.guide-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.guide-card__date {
    font-size: 12.5px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--muted);
}

.guide-card__views {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 12.5px;
    color: var(--muted);
}

.guide-card__go {
    width: 44px;
    height: 40px;
    border-radius: 7px;
    background: var(--ink);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.15s ease;
}

.guide-card__go svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2.2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.guide-card__go:hover {
    background: var(--accent-deep);
}

.guide-card__flag {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 3;
    background: var(--hl);
    color: var(--ink);
    font-size: 11.5px;
    font-weight: 600;
    padding: 4px 10px;
    border-radius: 999px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
}

.cards-strip {
    margin-top: -34px;
    position: relative;
    z-index: 4;
}

.rubric-band {
    margin: 46px 0;
}

.rubric-band__list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.rubric-band__item a {
    display: inline-block;
    padding: 9px 20px;
    border-radius: 999px;
    background: var(--tint);
    color: var(--ink);
    font-weight: 500;
    font-size: 14.5px;
}

.rubric-band__item a:hover {
    background: var(--accent);
    color: #fff;
    text-decoration: none;
}
