/* style/news-info-hot-topics.css */

/* Base styles for the news hot topics page */
.page-news-info-hot-topics {
    font-family: 'Arial', sans-serif;
    color: #333;
    line-height: 1.6;
    background-color: #f9f9f9;
}

/* Container for responsive layout */
.page-news-info-hot-topics__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-news-info-hot-topics__hero {
    background: linear-gradient(135deg, #0A2463, #FFD700);
    color: #fff;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-news-info-hot-topics__hero::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0) 70%);
    animation: page-news-info-hot-topics-pulse 10s infinite alternate;
}

@keyframes page-news-info-hot-topics-pulse {
    0% { transform: scale(0.8); opacity: 0.5; }
    100% { transform: scale(1.2); opacity: 0.8; }
}

.page-news-info-hot-topics__title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #fff;
    position: relative;
    z-index: 1;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-news-info-hot-topics__subtitle {
    font-size: 1.3em;
    margin-bottom: 40px;
    color: #eee;
    position: relative;
    z-index: 1;
}

/* Buttons */
.page-news-info-hot-topics__button {
    display: inline-block;
    padding: 15px 30px;
    background-color: #FFD700;
    color: #0A2463;
    text-decoration: none;
    border-radius: 8px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 1.1em;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    position: relative;
    z-index: 1;
}

.page-news-info-hot-topics__button:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
}

.page-news-info-hot-topics__button--primary {
    background-color: #FFD700;
    color: #0A2463;
}

.page-news-info-hot-topics__button--secondary {
    background-color: #0A2463;
    color: #FFD700;
    border: 2px solid #FFD700;
    margin-left: 15px;
}

.page-news-info-hot-topics__button--secondary:hover {
    background-color: #1a3a7c;
    transform: translateY(-3px);
}

.page-news-info-hot-topics__cta-buttons {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 60px;
}

/* Content Section */
.page-news-info-hot-topics__content-section {
    padding: 60px 0;
    background-color: #fff;
}

.page-news-info-hot-topics__article {
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.05);
}

.page-news-info-hot-topics__heading {
    font-size: 2em;
    color: #0A2463;
    margin-top: 40px;
    margin-bottom: 20px;
    border-bottom: 3px solid #FFD700;
    padding-bottom: 10px;
}

.page-news-info-hot-topics__sub-heading {
    font-size: 1.5em;
    color: #0A2463;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-news-info-hot-topics__article p {
    margin-bottom: 1em;
    color: #555;
    font-size: 1.05em;
}

.page-news-info-hot-topics__list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 1em;
    color: #555;
}

.page-news-info-hot-topics__list li {
    margin-bottom: 0.5em;
}

.page-news-info-hot-topics__list strong {
    color: #0A2463;
}

.page-news-info-hot-topics__image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 25px auto;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.page-news-info-hot-topics__text-link {
    color: #0A2463;
    text-decoration: underline;
    font-weight: bold;
    transition: color 0.3s ease;
}

.page-news-info-hot-topics__text-link:hover {
    color: #FFD700;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-news-info-hot-topics__title {
        font-size: 2em;
    }

    .page-news-info-hot-topics__subtitle {
        font-size: 1em;
    }

    .page-news-info-hot-topics__button {
        padding: 12px 25px;
        font-size: 1em;
    }

    .page-news-info-hot-topics__heading {
        font-size: 1.8em;
    }

    .page-news-info-hot-topics__sub-heading {
        font-size: 1.3em;
    }

    .page-news-info-hot-topics__cta-buttons {
        flex-direction: column;
        display: flex; /* Added for column layout */
    }

    .page-news-info-hot-topics__button--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
}

@media (max-width: 480px) {
    .page-news-info-hot-topics__title {
        font-size: 1.5em;
    }

    .page-news-info-hot-topics__button {
        padding: 10px 20px;
        font-size: 0.9em;
    }

    .page-news-info-hot-topics__heading {
        font-size: 1.5em;
    }

    .page-news-info-hot-topics__sub-heading {
        font-size: 1.2em;
    }
}