/* ============================================================
   Institutional Culture cluster – glassomorphic layout
   Prefix: .v16-ic-
   ============================================================ */

.v16-ic-hero {
    background: linear-gradient(
        135deg,
        rgba(12, 52, 74, 0.97) 0%,
        rgba(0, 88, 128, 0.92) 40%,
        rgba(18, 68, 96, 0.95) 68%,
        rgba(10, 54, 82, 0.98) 100%
    );
}

.v16-ic-hero::before {
    background:
        radial-gradient(circle at 14% 24%, rgba(102, 214, 231, 0.15) 0%, transparent 34%),
        radial-gradient(circle at 86% 64%, rgba(216, 180, 106, 0.10) 0%, transparent 30%),
        radial-gradient(circle at 50% 100%, rgba(91, 163, 245, 0.08) 0%, transparent 42%),
        linear-gradient(118deg, rgba(0, 104, 142, 0.22) 0%, transparent 56%);
}

.v16-ic-hero__glass-card {
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: clamp(160px, 22vw, 220px);
}

.v16-ic-hero__svg {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 220px;
    display: block;
    margin: 0 auto;
}

.v16-ic-page {
    position: relative;
    padding-bottom: clamp(52px, 8vw, 96px);
    background:
        radial-gradient(ellipse 90% 54% at 8% 0%, rgba(102, 214, 231, 0.11), transparent 54%),
        radial-gradient(ellipse 70% 46% at 92% 4%, rgba(216, 180, 106, 0.07), transparent 48%),
        linear-gradient(180deg, #e6f2f8 0%, #f2f8fb 40%, #ffffff 100%);
}

.v16-ic-page::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle, rgba(0, 104, 142, 0.04) 1px, transparent 1px);
    background-size: 24px 24px;
    pointer-events: none;
    opacity: 0.48;
}

.v16-ic-page > .container {
    position: relative;
    z-index: 1;
}

.v16-ic-page .v16-inner-layout {
    padding-top: clamp(20px, 3.5vw, 36px);
}

.v16-ic-shell {
    display: grid;
    gap: clamp(18px, 2.5vw, 28px);
    min-width: 0;
}

.v16-ic-panel {
    padding: clamp(20px, 3vw, 28px);
    border-radius: var(--tma-radius-md, 18px);
    border: 1px solid rgba(255, 255, 255, 0.72);
    background: rgba(255, 255, 255, 0.86);
    backdrop-filter: blur(18px) saturate(145%);
    -webkit-backdrop-filter: blur(18px) saturate(145%);
    box-shadow:
        0 14px 42px rgba(10, 54, 82, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.v16-ic-panel p {
    margin: 0 0 14px;
    font-size: 1rem;
    line-height: 1.72;
    color: rgba(10, 54, 82, 0.78);
}

.v16-ic-panel p:last-child {
    margin-bottom: 0;
}

.v16-ic-panel h2 {
    margin: 0 0 16px;
    font-size: clamp(1.25rem, 2.4vw, 1.55rem);
    color: var(--tma-dark, #0a3652);
}

.v16-ic-team {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: clamp(14px, 2vw, 20px);
}

.v16-ic-team-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    border-radius: calc(var(--tma-radius-md, 18px) - 2px);
    border: 1px solid rgba(0, 104, 142, 0.10);
    background: rgba(255, 255, 255, 0.78);
    overflow: hidden;
    transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.v16-ic-team-card:hover {
    transform: translateY(-3px);
    border-color: rgba(102, 214, 231, 0.35);
    box-shadow: 0 16px 36px rgba(10, 54, 82, 0.10);
}

.v16-ic-team-card__media {
    aspect-ratio: 1;
    overflow: hidden;
    background: linear-gradient(145deg, rgba(0, 104, 142, 0.08), rgba(102, 214, 231, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
}

.v16-ic-team-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.v16-ic-team-card__initials {
    font-size: 2rem;
    font-weight: 800;
    color: rgba(0, 104, 142, 0.45);
}

.v16-ic-team-card__body {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: clamp(14px, 2vw, 18px);
    flex: 1;
}

.v16-ic-team-card__body h3 {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.35;
    color: var(--tma-dark, #0a3652);
}

.v16-ic-team-card__role {
    margin: 0;
    font-size: 0.78rem;
    line-height: 1.45;
    font-weight: 600;
    color: rgba(10, 54, 82, 0.58);
}

.v16-ic-team-card__body a {
    margin-top: auto;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--tma-teal, #00668e);
    text-decoration: none;
    word-break: break-word;
}

.v16-ic-team-card__body a:hover {
    text-decoration: underline;
}

@media (max-width: 1100px) {
    .v16-ic-team {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .v16-ic-team {
        grid-template-columns: 1fr;
    }
}
