/* ============================================
   Desktop Layout
   ============================================ */

.darbuotojai-wrapper {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    overflow: visible; 
    padding: 10px;
}

.darbuotojas-featured {
    display: block;
}

.darbuotojas-featured-layout {
    display: flex;
    gap: 100px;
    align-items: flex-start;
    margin: 50px 0 100px 0;
}

.darbuotojas-featured-photo {
    flex-shrink: 0;
    width: 300px;
    height: 300px;
}

.darbuotojas-featured-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.darbuotojas-featured-details { flex: 1; min-width: 0; }

.darbuotojas-featured-name { font-size: 32px; font-weight: 700; color: #1f2937; margin-bottom: 8px; }

.darbuotojas-featured-position { font-size: 18px; color: #6b7280; margin-bottom: 16px; }

.darbuotojas-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--theme-palette-color-1);
    color: #ffffff;
    border-radius: 8px;
    text-decoration: none;
}

.darbuotojas-featured-description {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e7eb;
}

.darbuotojas-featured-description p {
    font-size: 16px;
    line-height: 1.7;
    color: #4b5563;
    white-space: pre-line;
}

/* ============================================
   Grid Styling
   ============================================ */

.darbuotojai-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important; 
    gap: 50px;
    width: 100%;
    align-items: stretch;
}

.darbuotojas-card {
    border-radius: 10px 30px 10px 30px;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    background: transparent;
    border: none !important; 
    outline: none !important;
    box-shadow: none !important;
}

.darbuotojas-card-active {
    background-color: var(--theme-palette-color-12);
    border: none !important; 
    outline: none !important;
}

.darbuotojas-card-photo {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    overflow: hidden;
}

.darbuotojas-card-photo img { width: 100%; height: 100%; object-fit: cover; }

.darbuotojas-card-name { font-size: 18px; font-weight: 600; margin-bottom: 6px; }

.darbuotojas-card-position { font-size: 14px; color: #6b7280; margin-bottom: 12px; }

.darbuotojas-card-social {
    display: inline-flex;
    padding: 8px;
    background: var(--theme-palette-color-1);
    color: white;
    border-radius: 6px;
}

.darbuotojas-card-mobile-description {
    display: none; 
}

/* ============================================
   Tablet
   ============================================ */
@media screen and (max-width: 1024px) {
    .darbuotojai-grid { grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .darbuotojas-featured-layout { gap: 30px; }
    .darbuotojas-featured-photo { width: 200px; height: 200px; }
}

/* ============================================
   Mobile 
   ============================================ */
@media screen and (max-width: 767px) {
    .darbuotojai-wrapper {
        padding: 0 15px; 
        width: 100%;
        box-sizing: border-box;
    }

    .darbuotojas-featured {
        display: none !important;
    }
    
    .darbuotojai-grid {
        grid-template-columns: 1fr !important; 
        gap: 30px !important;
        width: 100% !important;
        margin: 0 !important;
    }
    
    .darbuotojas-card {
        width: 100% !important;
        box-sizing: border-box !important;
        cursor: default !important;
        background-color: var(--theme-palette-color-12) !important; 
        padding: 25px !important;
        display: block !important;
    }

    .darbuotojas-card-mobile-description {
        display: block !important;
        max-height: none !important; 
        opacity: 1 !important;
        overflow: visible !important;
        margin-top: 20px !important;
        padding-top: 20px !important;
        border-top: 1px solid #e5e7eb;
        text-align: center;
    }

    .darbuotojas-card-mobile-description p {
        font-size: 16px !important;
        line-height: 1.6 !important;
        color: #4b5563 !important;
        margin: 0 !important;
        white-space: pre-line !important;
    }

    .darbuotojas-card-header {
        display: flex;
        flex-direction: column;
        align-items: center;
    }
}

