/**
 * Thermico Teams Frontend Styles
 */

/* Team Grid Layout */
.thermico-team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin: 30px 0;
}

/* Team Member Card */
.thermico-team-member {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background-color: #f2f2f2;
}

.thermico-team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.thermico-team-member-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
    color: #333;
}

/* Team Member Image */
.thermico-team-member-image {
    position: relative;
    padding-top: 60%;
    overflow: hidden;
}

.thermico-team-member-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.thermico-team-member:hover .thermico-team-member-image img {
    transform: scale(1.05);
}

/* Position Label */
.thermico-team-member-position-label {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: #08A257;
    color: white;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
    text-transform: uppercase;
    z-index: 2;
}

/* Team Member Content */
.thermico-team-member-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background-color: #f2f2f2;
}

.thermico-team-member-name {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 15px;
    color: #333;
    text-align: center;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}

/* Contact Information */
.thermico-team-member-contact {
    margin-top: auto;
    text-align: center;
}

.thermico-team-member-email,
.thermico-team-member-phone {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 8px;
    font-size: 14px;
    color: #333;
}

.thermico-team-member-email .icon,
.thermico-team-member-phone .icon {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    width: 20px;
    height: 20px;
    color: #333;
}

.thermico-team-member-email a,
.thermico-team-member-phone a {
    color: #333;
    text-decoration: none;
    transition: opacity 0.2s ease;
    word-break: break-word;
}

.thermico-team-member-email a:hover,
.thermico-team-member-phone a:hover {
    opacity: 0.8;
}

/* Responsive Adjustments */
@media screen and (max-width: 767px) {
    .thermico-team-grid {
        grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
        gap: 20px;
    }
    
    .thermico-team-member-name {
        font-size: 18px;
    }
    
    .thermico-team-member-position {
        font-size: 12px;
    }
}

@media screen and (max-width: 480px) {
    .thermico-team-grid {
        grid-template-columns: 1fr;
    }
}
