/* ================================================================
   GLT TESTIMONIALS - TRADITIONAL 3-COL DARK
   ================================================================ */

.glt-bg-dark {
    background-color: #0f172a;
    padding: 100px 0;
}

.glt-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

/* Card: Square Industrial Design */
.glt-testi-card-trad {
    background: #1e293b;
    border: 1px solid rgba(255,255,255,0.05);
    padding: 40px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    border-radius: 0; /* Strict square */
}

.glt-testi-card-trad:hover {
    border-color: #0ea5e9;
    transform: translateY(-5px);
    background: #1e293b;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

/* Data Highlight Block */
.glt-testi-data {
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.glt-data-val {
    display: block;
    font-size: 2.2rem;
    font-weight: 900;
    color: #0ea5e9;
    line-height: 1;
}

.glt-data-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: #94a3b8;
    font-weight: 700;
}

/* Content */
.glt-testi-content {
    flex-grow: 1;
    margin-bottom: 30px;
}

.glt-quote-svg {
    opacity: 0.3;
    margin-bottom: 15px;
}

.glt-testi-card-trad blockquote {
    font-size: 1rem;
    line-height: 1.7;
    color: #cbd5e1;
    font-style: italic;
    margin: 0;
}

/* Footer / Meta */
.glt-testi-footer {
    display: flex;
    align-items: center;
    gap: 15px;
}

.glt-testi-avatar {
    width: 50px;
    height: 50px;
    border-radius: 0; /* Square avatar */
    border: 1px solid #0ea5e9;
    object-fit: cover;
}

.glt-testi-meta strong {
    display: block;
    color: #ffffff;
    font-size: 0.95rem;
    text-transform: uppercase;
}

.glt-testi-meta span {
    display: block;
    font-size: 0.75rem;
    color: #64748b;
}

/* Responsive */
@media (max-width: 992px) {
    .glt-grid-3 { grid-template-columns: 1fr; }
}