/**
 * Referanslar sayfası — kart ve grid
 */

.sy-ref-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    border: 1px solid rgba(17, 25, 78, 0.09);
    border-radius: 18px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    box-shadow: 0 4px 20px rgba(17, 25, 78, 0.05);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

a.sy-ref-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 44px rgba(17, 25, 78, 0.1);
    border-color: rgba(17, 25, 78, 0.14);
    color: inherit;
}

.sy-ref-card__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 7.5rem;
    padding: 1.5rem 1.25rem;
    background: linear-gradient(180deg, #f8f9fc 0%, #f0f2f8 100%);
    border-bottom: 1px solid rgba(17, 25, 78, 0.06);
}

.sy-ref-card__logo img {
    max-height: 3.25rem;
    max-width: 80%;
    width: auto;
    object-fit: contain;
    filter: grayscale(25%);
    transition: filter 0.25s ease, transform 0.25s ease;
}

a.sy-ref-card:hover .sy-ref-card__logo img {
    filter: grayscale(0%);
    transform: scale(1.03);
}

.sy-ref-card__body {
    padding: 1.1rem 1.2rem 1.25rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.sy-ref-card__body h3 {
    margin: 0 0 0.35rem;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1.4;
    color: #11194e;
    font-family: "Geologica", sans-serif;
}

.sy-ref-card__body p {
    margin: 0;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #fe000b;
}

.sy-refs-pagination {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(17, 25, 78, 0.08);
}
