.recompense-page {
    padding: 0 0 60px;
    font-family: 'Avenir', sans-serif;
}

.rc-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

/* ── Card ── */

.rc-card {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
    padding: 24px;
    font-family: Avenir, sans-serif;
    border-radius: 12px;
    border: 1px solid #D7D6D5;
    background: #FCFCFB;
    box-shadow: 0 2px 0 0 #D7D6D5;
}

.rc-card-link {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: 12px;
}

.rc-card:has(.rc-card-link):hover {
    box-shadow: 0 6px 20px rgba(0,0,0,0.12);
    transform: translateY(-2px);
    transition: box-shadow 0.18s, transform 0.18s;
}

/* ── Banner ── */

.rc-banner {
    display: flex;
    flex-direction: column;
    align-self: stretch;
    border-radius: 12px;
    border: 1px solid rgba(71, 70, 66, 0.10);
    overflow: hidden;
}

.rc-banner img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}

/* ── Body ── */

.rc-body {
    text-align: center;
    width: 100%;
}

.rc-title-row {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 8px;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.rc-type-value {
    font-size: 32px;
    font-weight: 900;
    color: #E8503A;
    line-height: 1;
    letter-spacing: -0.5px;
}

.rc-title {
    font-family: 'Avenir', sans-serif;
    font-size: 28px;
    font-weight: 900;
    line-height: 36px;
    color: #2A2A27;
}

.rc-description {
    font-family: 'Avenir', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: #656460;
    margin: 0 0 16px;
    text-align: center;
}

.rc-divider {
    border: none;
    border-top: 1.5px dashed #d0cece;
    margin: 0 0 18px;
}

.rc-subtitle-row {
    font-family: 'Avenir', sans-serif;
    font-size: 16px;
    font-weight: 800;
    line-height: 16px;
    color: #2A2A27;
    margin: 0 0 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-wrap: wrap;
    text-align: center;
}

.rc-url {
    position: relative;
    z-index: 2;
    color: #2A2A27;
    text-decoration: none;
    font-weight: 800;
}

.rc-url:hover {
    color: #5337AE;
    text-decoration: underline;
}

.rc-pool-value {
    font-family: 'Avenir', sans-serif;
    font-size: 28px;
    font-weight: 900;
    line-height: 36px;
    color: #2A2A27;
    letter-spacing: 0.5px;
    text-align: center;
}

.rc-empty {
    text-align: center;
    color: #656460;
    font-size: 16px;
    padding: 60px 0;
}
