/* style/news-guides.css */
.page-news-guides {
    background-color: #1A1A1A; /* Deep dark background */
    color: #E0E0E0; /* Light grey for main text for high contrast */
    font-family: 'Arial', sans-serif;
    line-height: 1.7;
    font-size: 16px;
}

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

.page-news-guides__text-center {
    text-align: center;
}

.page-news-guides__hero {
    background: linear-gradient(135deg, #1A1A1A 0%, #333333 100%); /* Darker gradient for hero */
    padding: 100px 0;
    text-align: center;
    border-bottom: 3px solid #FFD700;
}

.page-news-guides__hero-title {
    color: #FFD700; /* Gold title */
    font-size: 3.2em;
    margin-bottom: 20px;
    font-weight: bold;
    line-height: 1.2;
}

.page-news-guides__hero-subtitle {
    color: #E0E0E0; /* Light grey subtitle */
    font-size: 1.2em;
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.page-news-guides__cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.page-news-guides__btn {
    display: inline-block;
    padding: 15px 35px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    font-size: 1.1em;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-news-guides__btn--primary {
    background-color: #FFD700; /* Gold button */
    color: #1A1A1A; /* Dark text on gold */
}

.page-news-guides__btn--primary:hover {
    background-color: #b39700; /* Darker gold on hover */
    transform: translateY(-2px);
}

.page-news-guides__btn--secondary {
    background-color: #333333; /* Dark grey button */
    color: #FFD700; /* Gold text on dark grey */
    border: 2px solid #FFD700;
}

.page-news-guides__btn--secondary:hover {
    background-color: #444444;
    border-color: #E0B800;
    transform: translateY(-2px);
}

.page-news-guides__section {
    padding: 60px 0;
    border-bottom: 1px solid rgba(255, 215, 0, 0.1);
}

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

.page-news-guides__section-title {
    color: #FFD700; /* Gold for section titles */
    font-size: 2.5em;
    margin-bottom: 30px;
    text-align: center;
    font-weight: bold;
}

.page-news-guides__content-section p {
    margin-bottom: 20px;
    color: #E0E0E0;
}

.page-news-guides__content-section strong {
    color: #FFD700;
}

.page-news-guides__image-wrapper {
    margin: 40px auto;
    text-align: center;
}

.page-news-guides__image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
    transition: transform 0.3s ease;
}

.page-news-guides__image:hover {
    transform: scale(1.02);
}

.page-news-guides__list {
    list-style: none;
    padding-left: 0;
    margin-top: 30px;
}

.page-news-guides__list li {
    background-color: #2a2a2a;
    margin-bottom: 10px;
    padding: 15px 20px;
    border-radius: 5px;
    display: flex;
    align-items: center;
    color: #E0E0E0;
    border-left: 5px solid #FFD700;
}

.page-news-guides__list li::before {
    content: '✓';
    color: #FFD700;
    font-weight: bold;
    margin-right: 15px;
    font-size: 1.2em;
}

.page-news-guides__detail-list {
    background-color: #1A1A1A;
}

.page-news-guides__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.page-news-guides__detail-item {
    background-color: #2a2a2a;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.page-news-guides__detail-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
}

.page-news-guides__item-title {
    color: #FFD700; /* Gold for item titles */
    font-size: 1.8em;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-news-guides__item-title a {
    color: #FFD700;
    text-decoration: none;
}

.page-news-guides__item-title a:hover {
    text-decoration: underline;
}

.page-news-guides__item-description {
    color: #C0C0C0;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-news-guides__btn--small {
    padding: 10px 20px;
    font-size: 0.9em;
    align-self: flex-start;
    background-color: #FFD700;
    color: #1A1A1A;
}

.page-news-guides__btn--small:hover {
    background-color: #b39700;
}

.page-news-guides__cta-bottom {
    background-color: #2a2a2a;
    padding: 80px 0;
    text-align: center;
    border-top: 3px solid #FFD700;
}

.page-news-guides__cta-bottom .page-news-guides__section-title {
    font-size: 2.8em;
}

.page-news-guides__cta-bottom p {
    color: #E0E0E0;
    font-size: 1.1em;
    max-width: 800px;
    margin: 20px auto 40px auto;
}

.page-news-guides__conclusion {
    padding-bottom: 80px;
    text-align: center;
}

.page-news-guides__conclusion p {
    font-size: 1.1em;
    color: #E0E0E0;
    max-width: 900px;
    margin: 0 auto;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .page-news-guides__hero-title {
        font-size: 2.8em;
    }
    .page-news-guides__section-title {
        font-size: 2em;
    }
    .page-news-guides__grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-news-guides__hero {
        padding: 80px 0;
    }
    .page-news-guides__hero-title {
        font-size: 2.2em;
    }
    .page-news-guides__hero-subtitle {
        font-size: 1em;
    }
    .page-news-guides__section {
        padding: 40px 0;
    }
    .page-news-guides__section-title {
        font-size: 1.8em;
    }
    .page-news-guides__btn {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-news-guides__cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-news-guides__detail-item {
        padding: 25px;
    }
    .page-news-guides__item-title {
        font-size: 1.5em;
    }
    .page-news-guides__cta-bottom .page-news-guides__section-title {
        font-size: 2.2em;
    }
}

@media (max-width: 480px) {
    .page-news-guides__hero {
        padding: 60px 0;
    }
    .page-news-guides__hero-title {
        font-size: 1.8em;
    }
    .page-news-guides__hero-subtitle {
        font-size: 0.9em;
    }
    .page-news-guides__section-title {
        font-size: 1.5em;
    }
    .page-news-guides__btn {
        width: 100%;
        text-align: center;
    }
    .page-news-guides__grid {
        grid-template-columns: 1fr;
    }
    .page-news-guides__detail-item {
        padding: 20px;
    }
    .page-news-guides__item-title {
        font-size: 1.3em;
    }
    .page-news-guides__btn--small {
        width: auto;
        align-self: stretch;
    }
    .page-news-guides__cta-bottom .page-news-guides__section-title {
        font-size: 1.8em;
    }
    .page-news-guides__cta-bottom p {
        font-size: 1em;
    }
}