/* Grid Layouts */
.lts-grid-82f29878 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    align-items: start;
}

@media (min-width: 768px) {
    .lts-grid-82f29878 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1200px) {
    .lts-grid-82f29878 {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Card Styling */
.lts-card-82f29878 {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border: 1px solid #eeeeee;
    cursor: pointer;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
}

.lts-card-82f29878:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

/* Image Wrapper */
.lts-img-wrapper-82f29878 {
    width: 100%;
    aspect-ratio: 3/4;
    overflow: hidden;
    background-color: #f5f5f5;
}

.lts-img-wrapper-82f29878 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top; /* Always keep faces visible */
    transition: transform 0.5s ease;
}

.lts-card-82f29878:hover .lts-img-wrapper-82f29878 img {
    transform: scale(1.03);
}

/* Content Area */
.lts-content-82f29878 {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
}

.lts-name-82f29878 {
    margin: 0 0 0.25rem 0;
    font-size: clamp(1.125rem, 2vw, 1.25rem);
    font-weight: 600;
    color: #111111;
}

.lts-position-82f29878 {
    margin: 0;
    font-size: 0.875rem;
    color: #666666;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Expanded Content Animation via CSS Grid */
.lts-expanded-content-wrapper-82f29878 {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.lts-expanded-content-inner-82f29878 {
    overflow: hidden;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lts-card-82f29878.is-expanded .lts-expanded-content-wrapper-82f29878 {
    grid-template-rows: 1fr;
}

.lts-card-82f29878.is-expanded .lts-expanded-content-inner-82f29878 {
    opacity: 1;
    padding-top: 1.25rem;
}

/* Bio & Footer */
.lts-bio-82f29878 {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #444444;
    margin-bottom: 1.5rem;
}

.lts-footer-82f29878 {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eeeeee;
}

.lts-socials-82f29878 {
    display: flex;
    gap: 1rem;
}

.lts-socials-82f29878 a {
    color: #111111;
    display: inline-flex;
    transition: color 0.2s ease;
}

.lts-socials-82f29878 a:hover {
    color: #0073aa;
}

.lts-socials-82f29878 svg {
    width: 1.25rem;
    height: 1.25rem;
    fill: currentColor;
}

.lts-btn-82f29878 {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #111111;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
    transition: opacity 0.2s ease;
}

.lts-btn-82f29878:hover {
    opacity: 0.7;
}