.workshop-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 3rem;
    padding: 3rem 0;
    max-width: 1400px;
    margin: 0 auto;
}

.workshop-item {
    background-color: #ffffff;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(212, 184, 130, 0.1);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    opacity: 0;
}

.workshop-item.show {
    opacity: 1;
}

.workshop-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(212, 184, 130, 0.03), rgba(212, 184, 130, 0.08));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.workshop-item:hover::before {
    opacity: 1;
}

.workshop-item:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    border-color: rgba(212, 184, 130, 0.3);
}

.workshop-item h3 {
    font-size: 2.2rem;
    color: #4A4A4A;
    margin: 0;
    font-weight: 600;
    letter-spacing: -0.5px;
    padding-bottom: 1rem;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}

.workshop-item:hover h3 {
    color: #D4B882;
}

.workshop-item h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background-color: #D4B882;
    transition: width 0.3s ease;
}

.workshop-item:hover h3::after {
    width: 80px;
}

.workshop-item p {
    margin: 0;
    color: #4A4A4A;
    line-height: 1.8;
    font-size: 1.05rem;
    position: relative;
    z-index: 1;
}

.workshop-item strong {
    color: #D4B882;
    font-weight: 600;
    display: inline-block;
    min-width: 140px;
    position: relative;
}

.workshop-item p:not(:first-of-type) {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    background: rgba(245, 242, 239, 0.7);
    margin-bottom: 0.5rem;
    transition: background-color 0.3s ease;
}

.workshop-item:hover p:not(:first-of-type) {
    background: rgba(245, 242, 239, 1);
}

.btn.btn-primary {
    background-color: #D4B882;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 30px;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    font-size: 0.9rem;
    border: none;
    margin-top: auto;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    z-index: 1;
    box-shadow: 0 5px 15px rgba(212, 184, 130, 0.2);
}

.btn.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        120deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: 0.5s;
}

.btn.btn-primary:hover::before {
    left: 100%;
}

.btn.btn-primary:hover {
    background-color: #4A4A4A;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(74, 74, 74, 0.3);
}

.btn.btn-secondary {
    background-color: #F5F2EF;
    color: #4A4A4A;
    cursor: not-allowed;
    border: 1px solid #D4B882;
    border-radius: 30px;
    opacity: 0.7;
    transition: all 0.3s ease;
}

.btn.btn-secondary:hover {
    background-color: #E5E2DF;
}

.workshop-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background-color: #D4B882;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 2;
    box-shadow: 0 3px 10px rgba(212, 184, 130, 0.2);
    transition: all 0.3s ease;
}

.workshop-item:hover .workshop-badge {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(212, 184, 130, 0.3);
}

.places-progress {
    width: 100%;
    height: 8px;
    background-color: #F5F2EF;
    border-radius: 4px;
    overflow: hidden;
    margin-top: 1rem;
    position: relative;
}

.places-progress-bar {
    height: 100%;
    background-color: #D4B882;
    transition: width 0.5s ease;
    position: relative;
    overflow: hidden;
}

.places-progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.1) 25%,
        transparent 25%,
        transparent 50%,
        rgba(255, 255, 255, 0.1) 50%,
        rgba(255, 255, 255, 0.1) 75%,
        transparent 75%,
        transparent 100%
    );
    background-size: 30px 30px;
    animation: progressStripes 1s linear infinite;
}

@keyframes progressStripes {
    0% {
        background-position: 0 0;
    }
    100% {
        background-position: 30px 0;
    }
}

.workshop-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin-top: 1rem;
}

.tag {
    background-color: #F5F2EF;
    color: #4A4A4A;
    padding: 0.4rem 1rem;
    border-radius: 15px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.tag:hover {
    background-color: #D4B882;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(212, 184, 130, 0.2);
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.workshop-item.animate.show {
    animation: fadeInUp 0.6s ease-out forwards;
}

@media (max-width: 768px) {
    .workshop-list {
        grid-template-columns: 1fr;
        padding: 1.5rem;
        gap: 2rem;
    }
    
    .workshop-item {
        padding: 2rem;
    }
    
    .workshop-item h3 {
        font-size: 1.9rem;
    }
}

.workshop-item p:first-of-type {
    white-space: pre-wrap;
    font-family: inherit;
}