.banqueinfos-index .annonces-examples {
    margin: 2.2rem 0 3rem;
}

.banqueinfos-index .annonces-examples__header {
    text-align: center;
    margin-bottom: 1.2rem;
}

.banqueinfos-index .annonces-examples__title {
    font-size: 1.7rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #173b73;
    margin-bottom: 0.35rem;
}

.banqueinfos-index .annonces-examples__intro {
    max-width: 760px;
    margin: 0 auto;
    font-size: 0.96rem;
    line-height: 1.45;
    color: #70809a;
}

.banqueinfos-index .annonces-examples__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.1rem;
    align-items: stretch;
}

.banqueinfos-index .annonces-card {
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    background: #ffffff;
    border: 1px solid #d9e2ec;
    border-radius: 20px;
    padding: 1rem;
    box-shadow: 0 8px 20px rgba(16, 24, 40, 0.05);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease;
}

.banqueinfos-index .annonces-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: #12828b;
}

.banqueinfos-index .annonces-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 28px rgba(16, 24, 40, 0.09);
    border-color: #c8d7e6;
}

.banqueinfos-index .annonces-card__top {
    display: flex;
    align-items: center;
    gap: 0.9rem;
    margin-bottom: 0.95rem;
}

.banqueinfos-index .annonces-card__logo-box {
    width: 58px;
    height: 58px;
    flex: 0 0 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #f9fbfd 0%, #f1f5f9 100%);
    border: 1px solid #dde5ee;
    border-radius: 16px;
    overflow: hidden;
}

.banqueinfos-index .annonces-card__logo {
    max-width: 74%;
    max-height: 74%;
    object-fit: contain;
}

.banqueinfos-index .annonces-card__logo-fallback {
    font-size: 0.8rem;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 0.06em;
}

.banqueinfos-index .annonces-card__summary {
    min-width: 0;
}

.banqueinfos-index .annonces-card__title {
    margin: 0 0 0.15rem;
    font-size: 0.98rem;
    font-weight: 800;
    line-height: 1.25;
    color: #0f274a;
    text-transform: uppercase;
    word-break: break-word;
}

.banqueinfos-index .annonces-card__subtitle {
    margin: 0;
    font-size: 0.83rem;
    color: #70809a;
}

.banqueinfos-index .annonces-card__stats {
    display: grid;
    gap: 0.55rem;
    margin-bottom: 0.85rem;
}

.banqueinfos-index .annonces-card__stat {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 0.75rem;
    padding: 0.72rem 0.85rem;
    background: #f4f7fb;
    border: 1px solid #edf2f7;
    border-radius: 13px;
}

.banqueinfos-index .annonces-card__stat-label {
    font-size: 0.84rem;
    color: #70809a;
}

.banqueinfos-index .annonces-card__stat-value {
    font-size: 0.9rem;
    font-weight: 800;
    color: #0f172a;
    white-space: nowrap;
}

.banqueinfos-index .annonces-card__meta {
    margin: 0 0 0.85rem;
    padding-top: 0.1rem;
    font-size: 0.85rem;
    color: #4a5c78;
}

.banqueinfos-index .annonces-card__footer {
    margin-top: auto;
    padding-top: 0.2rem;
}

.banqueinfos-index .annonces-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 42px;
    padding: 0.78rem 1rem;
    border-radius: 14px;
    background: #12828b;
    border: 1px solid #12828b;
    color: #ffffff;
    font-size: 0.96rem;
    font-weight: 800;
    line-height: 1;
    text-decoration: none;
    box-shadow: 0 6px 14px rgba(18, 130, 139, 0.18);
    transition:
        background 0.2s ease,
        border-color 0.2s ease,
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.banqueinfos-index .annonces-card__button:hover {
    background: #0f737a;
    border-color: #0f737a;
    color: #ffffff;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 10px 18px rgba(18, 130, 139, 0.24);
}

@media (max-width: 992px) {
    .banqueinfos-index .annonces-examples__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .banqueinfos-index .annonces-examples {
        margin: 2rem 0 2.5rem;
    }

    .banqueinfos-index .annonces-examples__title {
        font-size: 1.45rem;
    }

    .banqueinfos-index .annonces-examples__grid {
        grid-template-columns: 1fr;
    }

    .banqueinfos-index .annonces-card {
        padding: 0.9rem;
    }
}