/* style/blog-news-center.css */

/* Base styles for the blog/news center page */
.page-blog-news-center {
    font-family: 'Arial', sans-serif;
    color: #E0E0E0; /* Light gray for general text on dark background */
    background-color: #1A1A2E; /* Dark background */
    line-height: 1.6;
    padding-bottom: 50px; /* Space for footer */
}

.page-blog-news-center__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-blog-news-center__hero {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 60px 0;
    background: linear-gradient(135deg, #DC143C 0%, #FFD700 100%); /* Red to Gold gradient */
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.page-blog-news-center__hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
}

.page-blog-news-center__hero-title {
    font-size: 3.2em;
    margin-bottom: 20px;
    color: #FFFFFF; /* White for title */
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-blog-news-center__hero-description {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #F0F0F0; /* Slightly off-white for description */
}

.page-blog-news-center__hero-button {
    display: inline-block;
    background-color: #1A1A2E; /* Dark button on gradient background */
    color: #FFD700; /* Gold text */
    padding: 15px 30px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: background-color 0.3s ease, color 0.3s ease;
    border: 2px solid #FFD700;
}

.page-blog-news-center__hero-button:hover {
    background-color: #FFD700; /* Gold background on hover */
    color: #1A1A2E; /* Dark text on hover */
    border-color: #1A1A2E;
}

.page-blog-news-center__hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15; /* Subtle background image */
    z-index: 1;
}

.page-blog-news-center__hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* General Section Styles */
.page-blog-news-center__section {
    padding: 50px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1); /* Subtle gold border */
}

.page-blog-news-center__section:last-of-type {
    border-bottom: none;
}

.page-blog-news-center__section-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold for main section titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.page-blog-news-center__section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background-color: #DC143C; /* Red underline */
    margin: 10px auto 0;
    border-radius: 2px;
}

/* Introduction Section */
.page-blog-news-center__introduction p {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #E0E0E0;
}

.page-blog-news-center__introduction a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-blog-news-center__introduction a:hover {
    text-decoration: underline;
    color: #DC143C;
}

/* Content Categories Grid */
.page-blog-news-center__category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-blog-news-center__category-card {
    background-color: #2A2A3E; /* Slightly lighter dark background for cards */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.page-blog-news-center__category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.5);
}

.page-blog-news-center__category-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 3px solid #DC143C; /* Red border for image */
}

.page-blog-news-center__category-card h3 {
    font-size: 1.5em;
    color: #FFD700;
    padding: 20px 20px 10px;
    margin: 0;
}

.page-blog-news-center__card-description {
    font-size: 0.95em;
    color: #B0B0B0;
    padding: 0 20px 20px;
    flex-grow: 1; /* Make description take up available space */
}

.page-blog-news-center__card-button {
    display: inline-block;
    background-color: #DC143C; /* Red button */
    color: #FFFFFF;
    padding: 12px 20px;
    margin: 0 20px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    font-size: 0.9em;
    transition: background-color 0.3s ease;
    text-align: center;
}

.page-blog-news-center__card-button:hover {
    background-color: #FFD700; /* Gold on hover */
    color: #1A1A2E;
}

/* Why Follow Section */
.page-blog-news-center__why-follow .page-blog-news-center__list {
    list-style: none;
    padding: 0;
    margin-top: 30px;
}

.page-blog-news-center__why-follow .page-blog-news-center__list li {
    background-color: #2A2A3E;
    margin-bottom: 15px;
    padding: 20px;
    border-left: 5px solid #FFD700; /* Gold accent */
    border-radius: 5px;
    font-size: 1.1em;
    color: #E0E0E0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.page-blog-news-center__why-follow .page-blog-news-center__list li strong {
    color: #DC143C; /* Red for strong points */
}

.page-blog-news-center__why-follow .page-blog-news-center__list li a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-blog-news-center__why-follow .page-blog-news-center__list li a:hover {
    text-decoration: underline;
    color: #DC143C;
}

/* Call to Action Section */
.page-blog-news-center__cta {
    text-align: center;
    background-color: #2A2A3E;
    padding: 60px 20px;
    border-radius: 10px;
    margin: 40px auto;
    max-width: 1000px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.4);
}

.page-blog-news-center__cta .page-blog-news-center__section-title {
    color: #FFD700;
    margin-bottom: 20px;
}

.page-blog-news-center__cta .page-blog-news-center__section-title::after {
    background-color: #FFD700;
}

.page-blog-news-center__cta p {
    font-size: 1.2em;
    margin-bottom: 30px;
    color: #E0E0E0;
}

.page-blog-news-center__cta p a {
    color: #DC143C;
    text-decoration: none;
    font-weight: bold;
}

.page-blog-news-center__cta p a:hover {
    text-decoration: underline;
    color: #FFD700;
}

.page-blog-news-center__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-blog-news-center__cta-button {
    display: inline-block;
    padding: 15px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    min-width: 200px;
}

.page-blog-news-center__cta-button {
    background-color: #FFD700; /* Gold button */
    color: #1A1A2E;
    border: 2px solid #FFD700;
}

.page-blog-news-center__cta-button:hover {
    background-color: #1A1A2E;
    color: #FFD700;
    border-color: #FFD700;
}

.page-blog-news-center__cta-button--secondary {
    background-color: #DC143C; /* Red button */
    color: #FFFFFF;
    border: 2px solid #DC143C;
}

.page-blog-news-center__cta-button--secondary:hover {
    background-color: #1A1A2E;
    color: #DC143C;
    border-color: #DC143C;
}

/* About Us Summary & Future Outlook */
.page-blog-news-center__about-us-summary p,
.page-blog-news-center__future-outlook p {
    margin-bottom: 20px;
    font-size: 1.1em;
    color: #E0E0E0;
}

.page-blog-news-center__about-us-summary a,
.page-blog-news-center__future-outlook a {
    color: #FFD700;
    text-decoration: none;
    font-weight: bold;
}

.page-blog-news-center__about-us-summary a:hover,
.page-blog-news-center__future-outlook a:hover {
    text-decoration: underline;
    color: #DC143C;
}

.page-blog-news-center__image--full-width {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-top: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Responsive Design */
@media (max-width: 768px) {
    .page-blog-news-center__hero-title {
        font-size: 2.5em;
    }

    .page-blog-news-center__hero-description {
        font-size: 1em;
    }

    .page-blog-news-center__section-title {
        font-size: 2em;
    }

    .page-blog-news-center__category-grid {
        grid-template-columns: 1fr;
    }

    .page-blog-news-center__cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .page-blog-news-center__cta-button {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .page-blog-news-center__hero {
        padding: 40px 0;
    }

    .page-blog-news-center__hero-title {
        font-size: 1.8em;
    }

    .page-blog-news-center__hero-description {
        font-size: 0.9em;
    }

    .page-blog-news-center__section-title {
        font-size: 1.7em;
    }

    .page-blog-news-center__section {
        padding: 30px 0;
    }

    .page-blog-news-center__category-card h3 {
        font-size: 1.3em;
    }

    .page-blog-news-center__list li {
        font-size: 1em;
        padding: 15px;
    }

    .page-blog-news-center__cta p {
        font-size: 1em;
    }
}