/* CCA Our Team — Frontend Styles */

.cca-team-section {
    padding: 64px 20px;
    max-width: 1140px;
    margin: 0 auto;
}

.cca-team-header {
    text-align: center;
    margin-bottom: 48px;
}
.cca-team-label {
    font-size: 11px;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: #888780;
    margin-bottom: 10px;
}
.cca-team-title {
    font-size: 36px;
    font-weight: 600;
    color: #1a1a1a;
    letter-spacing: -0.5px;
    margin: 0 0 10px;
}
.cca-team-subtitle {
    font-size: 16px;
    color: #5F5E5A;
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto;
}

/* Grid */
.cca-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 24px;
}

/* Card */
.cca-tm-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.07);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.cca-tm-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 14px 36px rgba(0,0,0,0.13);
}

/* Image area */
.cca-tm-img {
    height: 240px;
    overflow: hidden;
    background: #EEEDFE;
    position: relative;
}
.cca-tm-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.35s ease;
}
.cca-tm-card:hover .cca-tm-img img {
    transform: scale(1.05);
}
.cca-tm-initials {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 56px;
    font-weight: 700;
    color: #534AB7;
}

/* Card body */
.cca-tm-body {
    padding: 18px 20px 20px;
}
.cca-tm-name {
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 4px;
}
.cca-tm-position {
    font-size: 12px;
    font-weight: 600;
    color: #534AB7;
    letter-spacing: 0.2px;
    margin-bottom: 3px;
}
.cca-tm-degree {
    font-size: 11.5px;
    color: #888780;
    margin-bottom: 14px;
}

.cca-tm-divider {
    height: 1px;
    background: #f0f0ee;
    margin-bottom: 14px;
}

/* Icon row */
.cca-tm-icons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}
.cca-tm-ic {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #f4f4f2;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: #5F5E5A;
    transition: background 0.15s, color 0.15s, transform 0.15s;
    flex-shrink: 0;
}
.cca-tm-ic:hover {
    background: #EEEDFE;
    color: #534AB7;
    transform: scale(1.12);
}
.cca-tm-ic svg {
    width: 15px;
    height: 15px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* Responsive */
@media (max-width: 640px) {
    .cca-team-title { font-size: 26px; }
    .cca-team-grid  { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); gap: 16px; }
    .cca-tm-img     { height: 190px; }
}
