/* Workshop Index Styles */
.workshop-index-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    font-family: 'Poppins', sans-serif;
}

.workshop-index-header {
    text-align: center;
    margin-bottom: 3rem;
}

.main-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 1rem;
}

.main-subtitle {
    font-size: 1.2rem;
    color: #7f8c8d;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.workshops-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.workshop-card {
    background: white;
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    border: 1px solid #f0f0f0;
    position: relative;
    overflow: hidden;
}

.workshop-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.workshop-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3498db, #9b59b6);
}

.workshop-card.personal-branding::before {
    background: linear-gradient(90deg, #e74c3c, #f39c12);
}

.workshop-card.digital-leadership::before {
    background: linear-gradient(90deg, #27ae60, #2ecc71);
}

.workshop-header {
    margin-bottom: 1.5rem;
}

.workshop-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.workshop-subtitle {
    font-size: 1rem;
    color: #7f8c8d;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.workshop-description {
    color: #5a6c7d;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.workshop-features {
    list-style: none;
    padding: 0;
    margin-bottom: 2rem;
}

.workshop-features li {
    padding: 0.5rem 0;
    color: #5a6c7d;
    position: relative;
    padding-left: 1.5rem;
}

.workshop-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #27ae60;
    font-weight: bold;
}

.workshop-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: #f8f9fa;
    border-radius: 8px;
    font-size: 0.9rem;
}

.workshop-meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #5a6c7d;
}

.workshop-meta-item strong {
    color: #2c3e50;
}

.workshop-cta {
    text-align: center;
}

.workshop-cta .cta-button {
    display: inline-block;
    background: linear-gradient(135deg, #3498db, #2980b9);
    color: white;
    padding: 0.8rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.workshop-cta .cta-button:hover {
    background: linear-gradient(135deg, #2980b9, #1f5f8b);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(52, 152, 219, 0.3);
}

.workshop-cta .cta-button.personal-branding {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
}

.workshop-cta .cta-button.personal-branding:hover {
    background: linear-gradient(135deg, #c0392b, #a93226);
    box-shadow: 0 4px 15px rgba(231, 76, 60, 0.3);
}

.workshop-cta .cta-button.digital-leadership {
    background: linear-gradient(135deg, #27ae60, #229954);
}

.workshop-cta .cta-button.digital-leadership:hover {
    background: linear-gradient(135deg, #229954, #1e8449);
    box-shadow: 0 4px 15px rgba(39, 174, 96, 0.3);
}

.workshop-index-footer {
    text-align: center;
    padding: 2rem 0;
    color: #7f8c8d;
    border-top: 1px solid #ecf0f1;
    margin-top: 2rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .workshop-index-container {
        padding: 1rem;
    }
    
    .main-title {
        font-size: 2rem;
    }
    
    .workshops-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .workshop-card {
        padding: 1.5rem;
    }
    
    .workshop-meta {
        flex-direction: column;
        gap: 0.5rem;
        align-items: flex-start;
    }
}

@media (max-width: 480px) {
    .main-title {
        font-size: 1.8rem;
    }
    
    .workshop-title {
        font-size: 1.3rem;
    }
    
    .workshop-card {
        padding: 1rem;
    }
}