.climcat-project-page {
    --climcat-project-green: #0f6639;
    --climcat-project-orange: #ff6330;
    --climcat-project-ink: #232428;
    --climcat-project-muted: #5f656d;
    --climcat-project-surface: #f5f3ef;
    background: #ffffff;
    color: var(--climcat-project-ink);
    font-family: "Inter", Arial, sans-serif;
}

.climcat-project-container {
    width: min(1160px, calc(100% - 48px));
    margin: 0 auto;
}

.climcat-project-hero {
    background: #ffffff;
    padding: 74px 0 44px;
    text-align: center;
}

.climcat-project-hero h1 {
    color: var(--climcat-project-green);
    font-size: clamp(44px, 5vw, 72px);
    font-weight: 800;
    line-height: 1.05;
    margin: 0;
}

.climcat-project-hero p {
    color: #2d3748;
    font-size: 18px;
    line-height: 1.55;
    margin: 22px auto 0;
    max-width: 720px;
}

.climcat-project-intro {
    background: #ffffff;
    padding: 0 0 44px;
}

.climcat-project-intro p {
    color: #28764b;
    font-size: 20px;
    line-height: 1.7;
    margin: 0 auto;
    max-width: 920px;
    text-align: center;
}

.climcat-project-team {
    background: var(--climcat-project-surface);
    padding: 58px 0 68px;
}

.climcat-project-team__grid {
    display: grid;
    gap: 26px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.climcat-project-person-card {
    background: #ffffff;
    border: 1px solid #dedbd4;
    border-radius: 14px;
    box-shadow: 0 8px 26px rgba(32, 33, 36, 0.08);
    min-height: 188px;
    padding: 30px 28px;
}

.climcat-project-person-card h2 {
    color: var(--climcat-project-green);
    font-size: 23px;
    font-weight: 800;
    line-height: 1.22;
    margin: 0 0 10px;
}

.climcat-project-person-card__role {
    color: var(--climcat-project-orange) !important;
    font-weight: 800 !important;
    margin-bottom: 14px !important;
}

.climcat-project-person-card p {
    color: var(--climcat-project-muted);
    font-size: 16px;
    font-weight: 500;
    line-height: 1.55;
    margin: 0;
}

.climcat-project-partners {
    background: #ffffff;
    padding: 64px 0 78px;
}

.climcat-project-partners__content {
    align-items: center;
    display: grid;
    gap: 56px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin: 0 auto;
    max-width: 760px;
}

.climcat-project-partners__block {
    align-items: center;
    display: flex;
    flex-direction: column;
    gap: 18px;
    text-align: center;
}

.climcat-project-partners__block p {
    color: var(--climcat-project-green);
    font-size: 17px;
    font-weight: 800;
    line-height: 1.4;
    margin: 0;
}

.climcat-project-partners__block img {
    display: block;
    max-height: 72px;
    max-width: 260px;
    object-fit: contain;
}

@media (max-width: 900px) {
    .climcat-project-container {
        width: min(100% - 32px, 680px);
    }

    .climcat-project-hero {
        padding: 58px 0 34px;
    }

    .climcat-project-team__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .climcat-project-hero h1 {
        font-size: 42px;
    }

    .climcat-project-intro p {
        font-size: 17px;
        text-align: left;
    }

    .climcat-project-team__grid,
    .climcat-project-partners__content {
        grid-template-columns: 1fr;
    }

    .climcat-project-person-card {
        min-height: 0;
    }
}
