/* ==========================================================================
   FUNDACJA EPISTEMON — СТИЛИ ПОДСТРАНИЦЫ
   ========================================================================== */

.fundacja-section {
    padding: 30px 0 90px;
}

.breadcrumbs{
    margin-left: 7vw;
}

/* Шапка страницы (заголовок и бэдж) */
.fundacja-section .section-header {
    text-align: center;
    margin-bottom: 40px;
}

.fundacja-section .section-title {
    font-size: 4.2rem;
    font-weight: 700;
    color: var(--logo-navy, #223f79);
    margin-top: 10px;
    letter-spacing: -0.02em;
}

@media (min-width: 768px) {
    .fundacja-section .section-title {
        font-size: 2.8rem;
    }
}

/* Вводный текст */
.fundacja-intro {
    max-width: 820px;
    margin: 0 auto 50px;
    text-align: center;
}

.fundacja-intro .lead-text {
    font-size: 1.12rem;
    line-height: 1.7;
    color: #444;
}

/* Сетка карточек */
.fundacja-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 50px;
}

@media (min-width: 768px) {
    .fundacja-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px;
    }
}

.fundacja-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.fundacja-card:hover {
    transform: translateY(-4px);
    border-color: rgba(243, 116, 40, 0.3);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.fundacja-card h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--logo-navy, #223f79);
}

.fundacja-card p {
    font-size: 1rem;
    line-height: 1.6;
    color: #555;
    margin: 0;
}

/* Блок контактов и реквизитов */
.fundacja-details-box {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.07);
    border-radius: 16px;
    padding: 40px;
    max-width: 820px;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
}

.fundacja-details-box h2 {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--logo-navy, #223f79);
    text-align: center;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.details-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.details-list li {
    font-size: 1rem;
    color: #333;
    display: grid;
    grid-template-columns: 160px 1fr;
    align-items: baseline;
    gap: 20px;
}

@media (max-width: 600px) {
    .details-list li {
        grid-template-columns: 1fr;
        gap: 4px;
    }
}

.details-list strong {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #888;
}

.details-list span,
.details-list a {
    color: #111;
    font-weight: 500;
}

.details-list a:hover {
    color: var(--logo-orange, #f37428);
    text-decoration: underline;
}

.details-list .account-number {
    font-family: monospace;
    font-size: 1.05rem;
    letter-spacing: 0.03em;
    background: #f8fafc;
    padding: 4px 8px;
    border-radius: 6px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: inline-block;
}