/* style/resources.css */
.page-resources {
    font-family: 'Arial', sans-serif;
    color: #FFFFFF; /* White text for dark background */
    background-color: #1A2E4C; /* Main dark blue background */
    line-height: 1.6;
}

.page-resources a {
    color: #FFD700; /* Gold for links */
    text-decoration: none;
    transition: color 0.3s ease;
}

.page-resources a:hover {
    color: #e5c100; /* Darker gold on hover */
}

.page-resources__hero {
    background: linear-gradient(135deg, #1A2E4C 0%, #3a5c8e 100%);
    padding: 80px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 40px;
}

@media (min-width: 768px) {
    .page-resources__hero {
        flex-direction: row;
        text-align: left;
        padding: 100px 40px;
        max-width: 1200px;
        margin: 0 auto;
    }
}

.page-resources__hero-content {
    flex: 1;
    max-width: 700px;
}

.page-resources__hero-title {
    font-size: 2.8em;
    color: #FFD700; /* Gold for main title */
    margin-bottom: 20px;
    line-height: 1.2;
    font-weight: bold;
}

.page-resources__hero-description {
    font-size: 1.1em;
    margin-bottom: 30px;
    color: #e0e0e0;
}

.page-resources__hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-resources__hero-image {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.page-resources__button {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 5px;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.page-resources__button--primary {
    background-color: #FFD700; /* Gold background */
    color: #1A2E4C; /* Dark blue text */
}

.page-resources__button--primary:hover {
    background-color: #e5c100; /* Darker gold */
    color: #0d1e3a;
    transform: translateY(-2px);
}

.page-resources__button--secondary {
    background-color: transparent;
    color: #FFD700; /* Gold text */
    border: 2px solid #FFD700;
    margin-left: 15px;
}

.page-resources__button--secondary:hover {
    background-color: #FFD700;
    color: #1A2E4C;
    transform: translateY(-2px);
}

.page-resources__detail-list {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

.page-resources__section-title {
    font-size: 2.2em;
    color: #FFD700; /* Gold */
    margin-bottom: 20px;
    font-weight: bold;
}

.page-resources__section-description {
    font-size: 1.05em;
    color: #e0e0e0;
    margin-bottom: 50px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

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

.page-resources__article-card {
    background-color: #2b4162; /* Slightly lighter blue for cards */
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
    text-align: left;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.page-resources__article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 25px rgba(0, 0, 0, 0.3);
}

.page-resources__article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.page-resources__article-card h3 {
    font-size: 1.5em;
    color: #FFD700; /* Gold for article titles */
    margin: 20px 20px 10px 20px;
}

.page-resources__article-card h3 a {
    color: #FFD700;
}

.page-resources__article-card h3 a:hover {
    color: #e5c100;
}

.page-resources__article-excerpt {
    font-size: 0.95em;
    color: #c0c0c0;
    padding: 0 20px 20px;
    flex-grow: 1;
}

.page-resources__article-card .page-resources__button {
    margin: 0 20px 20px 20px;
    align-self: flex-start;
    background-color: #FFD700;
    color: #1A2E4C;
    padding: 10px 20px;
    font-size: 0.9em;
}

.page-resources__article-card .page-resources__button:hover {
    background-color: #e5c100;
    color: #0d1e3a;
}

.page-resources__cta {
    background-color: #1A2E4C; /* Main dark blue */
    padding: 80px 20px;
    text-align: center;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
}

.page-resources__cta-content {
    max-width: 900px;
    margin: 0 auto;
}

.page-resources__cta-title {
    font-size: 2.5em;
    color: #FFD700; /* Gold */
    margin-bottom: 25px;
    font-weight: bold;
}

.page-resources__cta-description {
    font-size: 1.1em;
    color: #e0e0e0;
    margin-bottom: 40px;
}

.page-resources__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
}

@media (max-width: 600px) {
    .page-resources__hero-title {
        font-size: 2em;
    }
    .page-resources__section-title {
        font-size: 1.8em;
    }
    .page-resources__cta-title {
        font-size: 2em;
    }
    .page-resources__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-resources__button--secondary {
        margin-left: 0;
        margin-top: 15px;
    }
}