.elementor-widget-container .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-container .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-23611 .elementor-element.elementor-element-d9e4edc{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;}.elementor-widget-html .eael-protected-content-message{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}.elementor-widget-html .protected-content-error-msg{font-family:var( --e-global-typography-secondary-font-family ), Sans-serif;font-weight:var( --e-global-typography-secondary-font-weight );}/* Start custom CSS *//* General Layout & Dark Theme */
.article-container-ai {
    font-family: 'Vazirmatn', sans-serif;
    line-height: 2;
    direction: rtl;
    max-width: 900px;
    margin: auto;
    background-color: #1e2029; /* Dark Background */
    color: #e0e0e0; /* Light Gray Text */
    padding: 30px 40px;
    border-radius: 15px;
}

/* Headings with Glowing Effect */
.article-container-ai h1 {
    color: #ffffff;
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 30px;
    text-shadow: 0 0 10px rgba(0, 245, 255, 0.5); /* Cyan Glow */
}
/* === FINAL H2 STYLE WITH !important === */
.article-container-ai h2 {
    font-size: 1.9rem;
    color: #ffffff !important; /* FORCED White Text */
    margin-top: 45px;
    padding-bottom: 10px;
    border-bottom: 3px solid #fdd835; /* Bright Yellow Border */
}

/* Paragraph and Links */
.article-container-ai p {
    font-size: 1.1rem;
    text-align: justify;
}
.article-container-ai a {
    color: #00f5ff; /* Bright Cyan */
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}
.article-container-ai a:hover {
    color: #ffffff;
    text-decoration: underline;
}
.article-container-ai strong {
    color: #fdd835; /* Yellow Highlight */
}

/* Image Wrapper Style */
.image-wrapper-ai {
    display: block;
    width: 100%;
    max-width: 420px;
    margin: 30px auto;
    position: relative;
    border-radius: 15px;
    overflow: hidden;
}
.image-wrapper-ai img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 15px;
    transition: transform 0.4s ease;
}
.image-wrapper-ai:hover img {
    transform: scale(1.05);
}
/* Animated Border Effect */
.image-wrapper-ai::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 3px solid transparent;
    border-radius: 15px;
    transition: border-color 0.5s ease;
    pointer-events: none;
}
.image-wrapper-ai:hover::after {
    border-color: #fdd835; /* The yellow highlight color */
}


/* Challenge Box */
.challenge-box {
    background-color: rgba(41, 45, 62, 0.7);
    border-right: 5px solid #c2185b; /* Magenta Accent */
    padding: 20px;
    margin: 25px 0;
    border-radius: 8px;
}
.challenge-box ul {
    list-style-type: '⚠️ ';
    padding-right: 20px;
    margin: 0;
}
.challenge-box li {
    margin-bottom: 10px;
}

/* === FINAL H3 STYLE WITH !important === */
.podcast-list h3 {
    font-size: 1.4rem;
    color: #ffffff !important; /* FORCED White Text */
    margin-top: 30px;
}
.podcast-list iframe {
    border-radius: 10px;
    margin-top: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

/* Listen Links Section */
.listen-links-container {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin-top: 20px;
}
.listen-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 25px;
    border-radius: 50px;
    background-color: #2e3241;
    color: #ffffff !important;
    text-decoration: none !important;
    font-weight: bold;
    transition: background-color 0.3s ease;
}
.listen-button:hover {
    background-color: #00f5ff;
    color: #1e2029 !important;
}
.listen-button svg {
    width: 24px;
    height: 24px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .article-container-ai {
        padding: 20px;
    }
    .article-container-ai h1 {
        font-size: 2rem;
    }
    .article-container-ai h2 {
        font-size: 1.6rem;
    }
}/* End custom CSS */