/* ================================================================
   GLT TEAM - 4 COLUMN BOX-LOGIC
   ================================================================ */

.glt-team {
    background-color: #f8fafc;
    padding: 100px 0;
}

.glt-center-header {
    text-align: center;
    margin-bottom: 70px;
}

.glt-header-line {
    width: 60px;
    height: 4px;
    background: #0ea5e9;
    margin: 20px auto 0;
}

/* Grid Layout: 4 Columns */
.glt-grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

/* Card: Strict Square */
.glt-team-card-trad {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border-radius: 0 !important;
}

/* Hover: Architectural Offset Shadow */
.glt-team-card-trad:hover {
    transform: translateY(-8px);
    border-color: #0ea5e9;
    box-shadow: 15px 15px 0px rgba(14, 165, 233, 0.1);
}

/* Square Image Wrapper */
.glt-avatar-wrapper {
    position: relative;
    background: #0f172a;
    overflow: hidden;
}

.glt-avatar-wrapper img {
    width: 100%;
    aspect-ratio: 1 / 1; /* Forces square shape regardless of image source */
    object-fit: cover;
    display: block;
    filter: grayscale(100%);
    transition: 0.6s ease;
}

.glt-team-card-trad:hover .glt-avatar-wrapper img {
    filter: grayscale(0%);
    transform: scale(1.1);
}

/* Technical Inset Frame */
.glt-avatar-frame {
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border: 1px solid rgba(255,255,255,0.2);
    z-index: 2;
    transition: 0.4s;
}

.glt-team-card-trad:hover .glt-avatar-frame {
    border: 1px solid #0ea5e9;
    top: 0; left: 0; right: 0; bottom: 0;
}

/* Info Section */
.glt-team-info-trad {
    padding: 30px 20px;
    text-align: center;
}

.glt-team-info-trad h5 {
    font-size: 1.15rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #0f172a;
    margin-bottom: 5px;
}

.glt-team-role-trad {
    font-size: 0.7rem;
    color: #0ea5e9;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.glt-role-divider {
    width: 30px;
    height: 2px;
    background: #e2e8f0;
    margin: 15px auto;
}

.glt-team-info-trad p {
    font-size: 0.85rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Social Link Squares */
.glt-team-social-trad {
    display: flex;
    justify-content: center;
    gap: 8px;
}

.glt-team-social-trad a {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #e2e8f0;
    color: #0f172a;
    transition: 0.3s;
    border-radius: 0 !important;
}

.glt-team-social-trad a:hover {
    background: #0f172a;
    color: #ffffff;
    border-color: #0f172a;
}

/* Responsive Grid for Tablets and Mobile */
@media (max-width: 1024px) {
    .glt-grid-4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
    .glt-grid-4 { grid-template-columns: 1fr; }
}