/* ── Partners Grid (External) ─────────────────────────────────────────────── */

.epg-wrapper {}

.epg-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

/* ── Card ─────────────────────────────────────────────────────────────────── */

.epg-card {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.epg-card--link:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* ── Avatar ───────────────────────────────────────────────────────────────── */

.epg-avatar {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    flex-shrink: 0;
    overflow: hidden;
}

.epg-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.epg-initials {
    color: #ffffff;
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
    letter-spacing: 0.5px;
}

/* ── Text ─────────────────────────────────────────────────────────────────── */

.epg-name {
    font-size: 14px;
    font-weight: 700;
    color: #111827;
    margin: 0 0 4px;
    line-height: 1.3;
}

.epg-type {
    font-size: 12px;
    color: #6b7280;
    margin: 0 0 12px;
    line-height: 1.4;
}

.epg-link {
    font-size: 12px;
    font-weight: 500;
    color: #3b82f6;
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* ── CTA Card ─────────────────────────────────────────────────────────────── */

.epg-card--cta {
    border: 2px dashed #f4a070;
    background-color: #fff8f5;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
}

.epg-card--cta:hover {
    box-shadow: 0 4px 16px rgba(244, 160, 112, 0.2);
    transform: translateY(-2px);
}

.epg-cta-plus {
    font-size: 32px;
    font-weight: 300;
    color: #d1d5db;
    line-height: 1;
}

.epg-cta-title {
    font-size: 14px;
    font-weight: 500;
    color: #374151;
    margin: 0;
    line-height: 1.4;
}

.epg-cta-link {
    font-size: 13px;
    font-weight: 600;
    color: #f4a070;
}
