/* ============================================================
   PARTNERS PAGE
   ============================================================ */

/* ---- HERO ---- */
.prt-hero {
    padding: 140px 5% 50px 5%;
    background: radial-gradient(circle at 20% 80%, rgba(5, 150, 105, 0.05) 0%, transparent 60%);
    text-align: center;
}

.prt-hero-inner {
    max-width: 720px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.prt-hero-inner .hero-title {
    font-size: 52px;
    margin-bottom: 0;
}

.prt-hero-inner .hero-desc {
    margin-bottom: 0;
    max-width: 560px;
}

/* ---- PARTNERSHIP STRIP ---- */
.prt-strip {
    background: #ffffff;
    border-top: none;
    border-bottom: 1px solid rgba(15, 23, 42, 0.1);
    padding: 36px 5%;
}

.prt-strip-inner {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0;
}

.prt-strip-col {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 0 40px;
}

.prt-strip-col:first-child {
    padding-left: 0;
}

.prt-strip-col:last-child {
    padding-right: 0;
}

.prt-strip-divider {
    width: 1px;
    height: 60px;
    background: rgba(15, 23, 42, 0.12);
    flex-shrink: 0;
}

.prt-strip-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    border: 2px solid var(--text-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: var(--text-primary);
    flex-shrink: 0;
}

.prt-strip-headline {
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.4;
    color: var(--text-primary);
}

.prt-strip-body {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.prt-strip-cta {
    font-size: 16px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    line-height: 1.35;
    color: var(--text-primary);
}

/* ---- SECTION ---- */

.prt-section {
    padding: 40px 5% 60px 5%;
}

.prt-inner {
    max-width: 1300px;
    margin: 0 auto;
}

/* ---- FILTER PILLS ---- */
.prt-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 32px;
}

.prt-pill {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 8px 22px;
    border-radius: 100px;
    border: 1px solid rgba(15, 23, 42, 0.12);
    background: transparent;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
}

.prt-pill:hover {
    border-color: var(--accent-emerald);
    color: var(--accent-emerald);
}

.prt-pill.active {
    background: var(--text-primary);
    color: #ffffff;
    border-color: var(--text-primary);
}

/* ---- LOGO GRID ---- */
.prt-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* ---- LOGO CARD ---- */
.prt-card {
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 20px;
    border-radius: 18px;
    transition: var(--transition-smooth);
    overflow: hidden;
    cursor: default;
}

.prt-card img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: grayscale(55%) opacity(0.7);
    transition: var(--transition-smooth);
}

.prt-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 14px 36px rgba(5, 150, 105, 0.1);
    border-color: rgba(5, 150, 105, 0.2) !important;
}

.prt-card:hover img {
    filter: grayscale(0%) opacity(1);
    transform: scale(1.06);
}

/* fade-in on filter */
@keyframes prtFadeIn {
    from { opacity: 0; transform: scale(0.96); }
    to   { opacity: 1; transform: scale(1); }
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .prt-grid { grid-template-columns: repeat(2, 1fr); }
    .prt-hero-inner .hero-title { font-size: 40px; }
}

@media (max-width: 768px) {
    .prt-grid { grid-template-columns: repeat(2, 1fr); }
    .prt-hero { padding: 130px 5% 36px 5%; }
    .prt-section { padding: 28px 5% 48px 5%; }
}
