/* Expert Betting Insights Block Styles - BEM */
.expert-insights {
    max-width: 100%;
    margin: 0 auto;
    background: var(--insights-bg-color, #2c3e50);
    color: var(--insights-text-color, #ffffff);
    border-radius: 0 30px 30px 0;
    border-left: 4px solid var(--insights-border-left-color, #3F4A53);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    padding: 32px;
}

/* Header Section */
.expert-insights__header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
    text-align: center;
}

.expert-insights__header:not(:has(.expert-insights__icon)) {
    justify-content: center;
}

.expert-insights__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--insights-question-icon-color, #32cd32);
    flex-shrink: 0;
}

.expert-insights__icon svg {
    width: 24px;
    height: 24px;
}

.expert-insights__title {
    font-size: 24px;
    font-weight: 700;
    color: var(--insights-text-color, #ffffff);
    margin: 0;
    line-height: 1.3;
}

/* Content Section */
.expert-insights__content {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

.expert-insights__card {
    background: var(--insights-card-bg-color, #1a1a1a);
    border-radius: 8px;
    padding: 20px;
    transition: all 0.3s ease;
}

.expert-insights__card:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.expert-insights__question {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.expert-insights__question:not(:has(.expert-insights__question-icon)) {
    gap: 0;
}

.expert-insights__question-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background: var(--insights-question-icon-color, #32cd32);
    border-radius: 50%;
    flex-shrink: 0;
}

.expert-insights__question-mark {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.expert-insights__question-text {
    font-size: 16px;
    font-weight: 600;
    color: var(--insights-text-color, #ffffff);
    line-height: 1.4;
    flex: 1;
}

.expert-insights__answer {
    font-size: 14px;
    color: var(--insights-text-color, #ffffff);
    opacity: 0.9;
    line-height: 1.5;
    margin-left: 36px;
}

.expert-insights__card:not(:has(.expert-insights__question-icon)) .expert-insights__answer {
    margin-left: 0;
}

/* CTA Section */
.expert-insights__cta {
    display: flex;
    justify-content: flex-start;
}

.expert-insights__button {
    display: inline-block;
    color: #101d29 !important;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    background: linear-gradient(135deg, hsl(75 100% 62%), hsl(90 100% 55%));
    padding: 1rem 2rem;
    border-radius: 10px;
    transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s cubic-bezier(0.4, 
    0, 0.2, 1);
}

.expert-insights__button:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px hsl(75 100% 62% / .4);
}

.expert-insights__button:active {
    transform: translateY(0);
}

/* Responsive Design */
@media (max-width: 768px) {
    .expert-insights {
        margin: 0 16px;
        padding: 24px;
    }
    
    .expert-insights__header {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 20px;
    }
    
    .expert-insights__header:not(:has(.expert-insights__icon)) {
        justify-content: center;
    }
    
    .expert-insights__icon svg {
        width: 20px;
        height: 20px;
    }
    
    .expert-insights__title {
        font-size: 20px;
    }
    
    .expert-insights__content {
        gap: 16px;
        margin-bottom: 20px;
    }
    
    .expert-insights__card {
        padding: 16px;
    }
    
    .expert-insights__question {
        gap: 10px;
        margin-bottom: 10px;
    }
    
    .expert-insights__question-icon {
        width: 20px;
        height: 20px;
    }
    
    .expert-insights__question-mark {
        font-size: 12px;
    }
    
    .expert-insights__question-text {
        font-size: 14px;
    }
    
    .expert-insights__answer {
        font-size: 13px;
        margin-left: 30px;
    }
    
    .expert-insights__card:not(:has(.expert-insights__question-icon)) .expert-insights__answer {
        margin-left: 0;
    }
    
    .expert-insights__button {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 600px) {
    .expert-insights {
        margin: 0 12px;
        padding: 20px;
    }
    
    .expert-insights__header {
        margin-bottom: 16px;
    }
    
    .expert-insights__title {
        font-size: 18px;
    }
    
    .expert-insights__content {
        gap: 12px;
        margin-bottom: 16px;
    }
    
    .expert-insights__card {
        padding: 12px;
    }
    
    .expert-insights__question {
        gap: 8px;
        margin-bottom: 8px;
    }
    
    .expert-insights__question-icon {
        width: 18px;
        height: 18px;
    }
    
    .expert-insights__question-mark {
        font-size: 11px;
    }
    
    .expert-insights__question-text {
        font-size: 13px;
    }
    
    .expert-insights__answer {
        font-size: 12px;
        margin-left: 26px;
    }
    
    .expert-insights__card:not(:has(.expert-insights__question-icon)) .expert-insights__answer {
        margin-left: 0;
    }
    
    .expert-insights__button {
        padding: 8px 16px;
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .expert-insights {
        margin: 0 8px;
        padding: 16px;
    }
    
    .expert-insights__header {
        margin-bottom: 12px;
    }
    
    .expert-insights__icon svg {
        width: 18px;
        height: 18px;
    }
    
    .expert-insights__title {
        font-size: 16px;
    }
    
    .expert-insights__content {
        gap: 10px;
        margin-bottom: 12px;
    }
    
    .expert-insights__card {
        padding: 10px;
    }
    
    .expert-insights__question {
        gap: 6px;
        margin-bottom: 6px;
    }
    
    .expert-insights__question-icon {
        width: 16px;
        height: 16px;
    }
    
    .expert-insights__question-mark {
        font-size: 10px;
    }
    
    .expert-insights__question-text {
        font-size: 12px;
    }
    
    .expert-insights__answer {
        font-size: 11px;
        margin-left: 22px;
    }
    
    .expert-insights__card:not(:has(.expert-insights__question-icon)) .expert-insights__answer {
        margin-left: 0;
    }
    
    .expert-insights__button {
        padding: 6px 12px;
        font-size: 12px;
    }
}