/* style/resources-thabet-latest-news.css */
.page-resources-thabet-latest-news {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #F8F8F8;
}

.page-resources-thabet-latest-news .highlight-text {
    color: #FFD700; /* Gold */
}

.page-resources-thabet-latest-news .keyword-bold {
    font-weight: bold;
    color: #4B0082; /* Deep Purple */
}

.page-resources-thabet-latest-news__hero {
    background: linear-gradient(135deg, #4B0082 0%, #6A0DAD 100%); /* Deep Purple to slightly lighter purple */
    color: #FFFFFF;
    padding: 80px 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    text-align: center;
}

.page-resources-thabet-latest-news__hero-content {
    max-width: 600px;
}

.page-resources-thabet-latest-news__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    line-height: 1.2;
    color: #FFFFFF;
}

.page-resources-thabet-latest-news__hero-subtitle {
    font-size: 1.3em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-resources-thabet-latest-news__hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.page-resources-thabet-latest-news__btn {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.2s ease;
    font-size: 1.1em;
    cursor: pointer;
}

.page-resources-thabet-latest-news__btn--primary {
    background-color: #FFD700; /* Gold */
    color: #4B0082; /* Deep Purple */
    border: 2px solid #FFD700;
}

.page-resources-thabet-latest-news__btn--primary:hover {
    background-color: #E0B800;
    transform: translateY(-2px);
}

.page-resources-thabet-latest-news__btn--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold */
    border: 2px solid #FFD700;
}

.page-resources-thabet-latest-news__btn--secondary:hover {
    background-color: #FFD700;
    color: #4B0082;
    transform: translateY(-2px);
}

.page-resources-thabet-latest-news__hero-image {
    flex-shrink: 0;
}

.page-resources-thabet-latest-news__img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.page-resources-thabet-latest-news__section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-resources-thabet-latest-news__section-title {
    font-size: 2.5em;
    color: #4B0082; /* Deep Purple */
    margin-bottom: 20px;
}

.page-resources-thabet-latest-news__section-description {
    font-size: 1.1em;
    color: #555;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.page-resources-thabet-latest-news__news-grid,
.page-resources-thabet-latest-news__promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.page-resources-thabet-latest-news__news-card,
.page-resources-thabet-latest-news__promo-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
    padding: 25px;
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources-thabet-latest-news__news-card:hover,
.page-resources-thabet-latest-news__promo-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.15);
}

.page-resources-thabet-latest-news__news-image,
.page-resources-thabet-latest-news__promo-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
}

.page-resources-thabet-latest-news__news-title,
.page-resources-thabet-latest-news__promo-title {
    font-size: 1.6em;
    color: #4B0082; /* Deep Purple */
    margin-bottom: 15px;
    min-height: 60px; /* Ensure consistent card height */
}

.page-resources-thabet-latest-news__news-excerpt,
.page-resources-thabet-latest-news__promo-text {
    color: #666;
    font-size: 1em;
    margin-bottom: 20px;
}

.page-resources-thabet-latest-news__read-more,
.page-resources-thabet-latest-news__btn--promo {
    display: inline-block;
    background-color: #FFD700; /* Gold */
    color: #4B0082; /* Deep Purple */
    padding: 10px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease;
}

.page-resources-thabet-latest-news__read-more:hover,
.page-resources-thabet-latest-news__btn--promo:hover {
    background-color: #E0B800;
}

.page-resources-thabet-latest-news__lottery-results {
    background-color: #FFF;
}

.page-resources-thabet-latest-news__lottery-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    text-align: left;
}

.page-resources-thabet-latest-news__lottery-image {
    flex: 1;
    min-width: 300px;
}

.page-resources-thabet-latest-news__lottery-text {
    flex: 2;
    min-width: 300px;
}

.page-resources-thabet-latest-news__lottery-subtitle {
    font-size: 1.8em;
    color: #4B0082;
    margin-bottom: 20px;
}

.page-resources-thabet-latest-news__lottery-text ul {
    list-style: none;
    padding: 0;
    margin-bottom: 20px;
}

.page-resources-thabet-latest-news__lottery-text li {
    margin-bottom: 10px;
    color: #555;
    display: flex;
    align-items: center;
}

.page-resources-thabet-latest-news__list-icon {
    color: #FFD700; /* Gold */
    font-size: 1.2em;
    margin-right: 10px;
}

.page-resources-thabet-latest-news__app-download {
    background-color: #F0F0F0;
}

.page-resources-thabet-latest-news__app-content {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap-reverse;
    text-align: left;
}

.page-resources-thabet-latest-news__app-info {
    flex: 2;
    min-width: 300px;
}

.page-resources-thabet-latest-news__app-subtitle {
    font-size: 1.8em;
    color: #4B0082;
    margin-bottom: 20px;
}

.page-resources-thabet-latest-news__app-image {
    flex: 1;
    min-width: 300px;
}

.page-resources-thabet-latest-news__faq-item {
    background-color: #FFFFFF;
    border-radius: 10px;
    padding: 25px;
    margin-bottom: 20px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
    text-align: left;
}

.page-resources-thabet-latest-news__faq-question {
    font-size: 1.4em;
    color: #4B0082;
    margin-bottom: 10px;
}

.page-resources-thabet-latest-news__faq-answer {
    color: #555;
}

.page-resources-thabet-latest-news__inline-link {
    color: #4B0082; /* Deep Purple */
    text-decoration: underline;
    font-weight: bold;
}

.page-resources-thabet-latest-news__inline-link:hover {
    color: #FFD700; /* Gold */
}

/* Responsive adjustments */
@media (max-width: 992px) {
    .page-resources-thabet-latest-news__hero {
        padding: 60px 20px;
    }
    .page-resources-thabet-latest-news__hero-title {
        font-size: 2.5em;
    }
    .page-resources-thabet-latest-news__hero-subtitle {
        font-size: 1.1em;
    }
    .page-resources-thabet-latest-news__section-title {
        font-size: 2em;
    }
    .page-resources-thabet-latest-news__lottery-content,
    .page-resources-thabet-latest-news__app-content {
        flex-direction: column;
        text-align: center;
    }
    .page-resources-thabet-latest-news__lottery-image,
    .page-resources-thabet-latest-news__app-image {
        order: -1; /* Image first on mobile */
    }
}

@media (max-width: 768px) {
    .page-resources-thabet-latest-news__hero-actions {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources-thabet-latest-news__btn {
        width: 100%;
    }
    .page-resources-thabet-latest-news__news-grid,
    .page-resources-thabet-latest-news__promo-grid {
        grid-template-columns: 1fr;
    }
    .page-resources-thabet-latest-news__news-title,
    .page-resources-thabet-latest-news__promo-title {
        min-height: auto;
    }
}

@media (max-width: 480px) {
    .page-resources-thabet-latest-news__hero-title {
        font-size: 2em;
    }
    .page-resources-thabet-latest-news__hero-subtitle {
        font-size: 1em;
    }
    .page-resources-thabet-latest-news__section-title {
        font-size: 1.8em;
    }
    .page-resources-thabet-latest-news__news-card,
    .page-resources-thabet-latest-news__promo-card,
    .page-resources-thabet-latest-news__faq-item {
        padding: 20px;
    }
    .page-resources-thabet-latest-news__news-title,
    .page-resources-thabet-latest-news__promo-title {
        font-size: 1.4em;
    }
    .page-resources-thabet-latest-news__lottery-subtitle,
    .page-resources-thabet-latest-news__app-subtitle {
        font-size: 1.6em;
    }
    .page-resources-thabet-latest-news__faq-question {
        font-size: 1.2em;
    }
}