/* ========================================
   WHAT'S THE EXPERIENCE ABOUT SECTION
   ======================================== */

.tc-whats-experience {
    padding: 60px 0;
    position: relative;
    overflow: hidden;
    min-height: 400px;
}

.tc-whats-experience .tc-container {
    padding-left: 20px;
    padding-right: 20px;
}

.tc-whats-experience__main-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.875rem;
    font-weight: 700;
    text-align: center;
    margin: 0 auto 40px auto;
    line-height: 1.2;
    padding: 0;
    max-width: 90%;
}

.tc-whats-experience__grid {
    display: flex;
    flex-direction: column;
    gap: 35px;
    max-width: 600px;
    margin: 0 auto;
    padding: 0;
}

.tc-whats-experience__item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    animation: fadeInUp 0.6s ease-out backwards;
}

.tc-whats-experience__item:nth-child(1) { animation-delay: 0.1s; }
.tc-whats-experience__item:nth-child(2) { animation-delay: 0.2s; }
.tc-whats-experience__item:nth-child(3) { animation-delay: 0.3s; }
.tc-whats-experience__item:nth-child(4) { animation-delay: 0.4s; }

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

.tc-whats-experience__icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px;
}

.tc-whats-experience__icon img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.tc-whats-experience--dark .tc-whats-experience__icon img {
    filter: drop-shadow(0 2px 8px rgba(255, 255, 255, 0.1));
}

.tc-whats-experience__text {
    flex: 1;
    min-width: 0;
}

.tc-whats-experience__item-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 600;
    margin: 0 0 8px 0;
    line-height: 1.3;
    word-wrap: break-word;
}

.tc-whats-experience__item-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    line-height: 1.6;
    margin: 0;
    opacity: 0.9;
    word-wrap: break-word;
}

/* Dark Theme Specific */
.tc-whats-experience--dark {
    background-color: #000000;
    color: #FFFFFF;
}

.tc-whats-experience--dark .tc-whats-experience__main-title {
    color: #FFFFFF;
}

.tc-whats-experience--dark .tc-whats-experience__item-title {
    color: #FFFFFF;
}

.tc-whats-experience--dark .tc-whats-experience__item-description {
    color: #FFFFFF;
}

/* Light Theme Specific */
.tc-whats-experience--light {
    color: var(--whats-text-color, #2C3E50);
}

.tc-whats-experience--light .tc-whats-experience__main-title {
    color: var(--whats-title-color, #2C3E50);
}

.tc-whats-experience--light .tc-whats-experience__item-title {
    color: var(--whats-title-color, #2C3E50);
}

.tc-whats-experience--light .tc-whats-experience__item-description {
    color: var(--whats-text-color, #2C3E50);
}

/* Centering for different item counts */
.tc-whats-experience__grid--count-1,
.tc-whats-experience__grid--count-2,
.tc-whats-experience__grid--count-3 {
    align-items: center;
}

/* Small Mobile (iPhone SE, small Android) */
@media (max-width: 375px) {
    .tc-whats-experience {
        padding: 50px 0;
    }
    
    .tc-whats-experience .tc-container {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    .tc-whats-experience__main-title {
        font-size: 1.625rem;
        margin-bottom: 30px;
        max-width: 95%;
    }
    
    .tc-whats-experience__grid {
        gap: 30px;
    }
    
    .tc-whats-experience__icon {
        width: 60px;
        height: 60px;
    }
    
    .tc-whats-experience__item {
        gap: 15px;
    }
    
    .tc-whats-experience__item-title {
        font-size: 1.125rem;
        margin-bottom: 6px;
    }
    
    .tc-whats-experience__item-description {
        font-size: 0.875rem;
        line-height: 1.5;
    }
}

/* Standard Mobile */
@media (min-width: 376px) and (max-width: 767px) {
    .tc-whats-experience {
        padding: 60px 0;
    }
    
    .tc-whats-experience .tc-container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .tc-whats-experience__main-title {
        font-size: 1.875rem;
        margin-bottom: 35px;
        max-width: 92%;
    }
    
    .tc-whats-experience__grid {
        gap: 32px;
    }
    
    .tc-whats-experience__icon {
        width: 70px;
        height: 70px;
    }
}

/* Tablet Portrait */
@media (min-width: 768px) and (max-width: 1023px) {
    .tc-whats-experience {
        padding: 80px 0;
    }
    
    .tc-whats-experience .tc-container {
        padding-left: 32px;
        padding-right: 32px;
    }
    
    .tc-whats-experience__main-title {
        font-size: 2.5rem;
        margin-bottom: 50px;
        max-width: 100%;
    }
    
    .tc-whats-experience__grid {
        gap: 45px;
        max-width: 650px;
    }
    
    .tc-whats-experience__icon {
        width: 90px;
        height: 90px;
    }
    
    .tc-whats-experience__item {
        gap: 25px;
    }
    
    .tc-whats-experience__item-title {
        font-size: 1.5rem;
        margin-bottom: 10px;
    }
    
    .tc-whats-experience__item-description {
        font-size: 1rem;
        line-height: 1.65;
    }
}

/* Desktop */
@media (min-width: 1024px) {
    .tc-whats-experience {
        padding: 100px 0;
    }
    
    .tc-whats-experience .tc-container {
        padding-left: 40px;
        padding-right: 40px;
    }
    
    .tc-whats-experience__main-title {
        font-size: 3rem;
        margin-bottom: 70px;
        max-width: 100%;
    }
    
    .tc-whats-experience__grid {
        gap: 50px;
        max-width: 750px;
    }
    
    .tc-whats-experience__icon {
        width: 100px;
        height: 100px;
    }
    
    .tc-whats-experience__item {
        gap: 30px;
    }
    
    .tc-whats-experience__item-title {
        font-size: 1.75rem;
        margin-bottom: 10px;
    }
    
    .tc-whats-experience__item-description {
        font-size: 1.0625rem;
        line-height: 1.7;
    }
}

/* Large Desktop */
@media (min-width: 1440px) {
    .tc-whats-experience {
        padding: 120px 0;
    }
    
    .tc-whats-experience .tc-container {
        padding-left: 60px;
        padding-right: 60px;
    }
    
    .tc-whats-experience__main-title {
        font-size: 3.25rem;
        margin-bottom: 80px;
        max-width: 100%;
    }
    
    .tc-whats-experience__grid {
        gap: 55px;
        max-width: 800px;
    }
    
    .tc-whats-experience__icon {
        width: 110px;
        height: 110px;
    }
    
    .tc-whats-experience__item {
        gap: 35px;
    }
    
    .tc-whats-experience__item-title {
        font-size: 1.875rem;
        margin-bottom: 12px;
    }
    
    .tc-whats-experience__item-description {
        font-size: 1.125rem;
    }
}

/* Accessibility & Performance */
@media (prefers-reduced-motion: reduce) {
    .tc-whats-experience__item {
        animation: none;
    }
}

/* Touch device optimization */
@media (hover: none) and (pointer: coarse) {
    .tc-whats-experience__item {
        gap: 18px;
    }
    
    .tc-whats-experience__item-description {
        font-size: 1rem;
        line-height: 1.7;
    }
}
