.section {
    padding: 28px 0 40px;
}
/* HERO */
.heroCard {
    display: flex;
    gap: 18px;
    align-items: center;
    padding: clamp(16px, 2.2vw, 22px);
    border-radius: 22px;
    background: transparent;
    border: 1px solid rgba(15, 23, 42, .08);
}
.heroText {
    flex: 1;
    text-align: left;
}
.heroTitle {
    margin: 0 0 6px;
    font-size: clamp(24px, 2.6vw, 38px);
    line-height: 1.15;
    font-weight: 950;
    color: #0f172a;
}
.heroSub {
    margin: 0;
    color: rgba(2, 6, 23, .72);
    line-height: 1.75;
    font-size: 15px;
}
.shell {
    padding: 22px;
    border-radius: 22px;
    /* background: rgba(255, 255, 255, 0.78); */
    border: 1px solid rgba(23, 41, 82, 0.12);
    backdrop-filter: blur(1px);
    /* box-shadow: 0 14px 40px rgba(10, 20, 40, 0.08); */
    margin-top: 15px;
}
.title {
    margin: 0;
    font-size: 22px;
    font-weight: 900;
    color: rgba(23, 41, 82, 0.96);
}
.lead {
    margin: 10px 0 16px;
    color: rgba(23, 41, 82, 0.78);
    line-height: 1.75;
}
.list {
    display: grid;
    gap: 12px;
    margin-top: 12px;
}
/* Partner item (logo left + text wraps) */
.partnerCard {
    display: grid;
    grid-template-columns: 210px 1fr;
    gap: 14px;
    align-items: center;
    padding: 14px;
    border-radius: 18px;
    border: 1px solid rgba(23, 41, 82, 0.12);
    /* background: rgba(255, 255, 255, 0.72); */
    transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
    text-align: start;
}
.partnerCard:hover {
    transform: translateY(-2px);
    border-color: rgba(255, 49, 88, 0.28);
    box-shadow: 0 18px 34px rgba(10, 20, 40, 0.12);
}
.logoWrap {
    height: 166px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
    background: rgba(153, 146, 255, 0.1);
    border: 1px dashed rgba(23, 41, 82, 0.14);
    padding: 12px;
}
.logo {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.info {
    min-width: 0;
}
.partnerName {
    margin: 0;
    font-size: 18px;
    font-weight: 900;
    color: rgba(23, 41, 82, 0.96);
    /* single line like you want */
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.address {
    margin: 8px 0 0;
    color: rgba(23, 41, 82, 0.76);
    line-height: 1.7;
}
/* Apply box */
.apply {
    margin-top: 18px;
    padding: 16px;
    border-radius: 18px;
    background: rgba(255, 49, 88, 0.06);
    border: 1px solid rgba(255, 49, 88, 0.14);
    text-align: start;
}
.applyTitle {
    margin: 0;
    font-size: 18px;
    font-weight: 900;
    color: rgba(23, 41, 82, 0.96);
}
.applyText {
    margin: 8px 0 0;
    color: rgba(23, 41, 82, 0.78);
    line-height: 1.75;
}
.mail {
    font-weight: 900;
    text-decoration: none;
    color: rgba(255, 49, 88, 1);
}
.mail:hover {
    text-decoration: underline;
}
@media (max-width: 768px) {
    .partnerCard {
        grid-template-columns: 1fr;
    }
    .logoWrap {
        height: 140px;
    }
}