/* style/resources.css */
.page-resources {
    font-family: 'Arial', sans-serif;
    color: #2C3E50;
    line-height: 1.6;
}

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

.page-resources__highlight {
    color: #FFD700;
}

/* Hero Section */
.page-resources__hero-section {
    background: linear-gradient(135deg, #2C3E50, #000000);
    color: #f8f8f8;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-resources__hero-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at center, rgba(255, 215, 0, 0.1) 0%, rgba(44, 62, 80, 0) 70%);
    transform: rotate(45deg);
    z-index: 0;
}

.page-resources__hero-section .page-resources__container {
    position: relative;
    z-index: 1;
}

.page-resources__hero-title {
    font-size: 3.5em;
    margin-bottom: 20px;
    font-weight: 700;
    color: #FFD700;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.page-resources__hero-description {
    font-size: 1.2em;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    color: #e0e0e0;
}

.page-resources__hero-cta-group {
    display: flex;
    justify-content: center;
    gap: 20px;
}

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

.page-resources__button--primary {
    background-color: #FFD700;
    color: #2C3E50;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.4);
}

.page-resources__button--primary:hover {
    background-color: #e6c200;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(255, 215, 0, 0.6);
}

.page-resources__button--secondary {
    background-color: #2C3E50;
    color: #FFD700;
    border: 2px solid #FFD700;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.4);
}

.page-resources__button--secondary:hover {
    background-color: #3a506b;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 62, 80, 0.6);
}

/* Content Section */
.page-resources__content-section {
    padding: 60px 0;
    background-color: #f4f7f6;
}

.page-resources__section-title {
    font-size: 2.5em;
    text-align: center;
    margin-bottom: 20px;
    color: #2C3E50;
    font-weight: 700;
}

.page-resources__section-description {
    font-size: 1.1em;
    text-align: center;
    max-width: 900px;
    margin: 0 auto 50px auto;
    color: #555;
}

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

.page-resources__article-card {
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.page-resources__article-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid #eee;
}

.page-resources__article-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-resources__article-title {
    font-size: 1.5em;
    margin-top: 0;
    margin-bottom: 15px;
    font-weight: 600;
    color: #2C3E50;
}

.page-resources__article-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.page-resources__article-title a:hover {
    color: #FFD700;
}

.page-resources__article-summary {
    font-size: 0.95em;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.page-resources__button--small {
    padding: 10px 20px;
    font-size: 0.9em;
    border-radius: 6px;
    background-color: #2C3E50;
    color: #FFD700;
    border: 1px solid #2C3E50;
}

.page-resources__button--small:hover {
    background-color: #3a506b;
    color: #fff;
    border-color: #3a506b;
}

/* CTA Bottom */
.page-resources__cta-bottom {
    background-color: #2C3E50;
    color: #f8f8f8;
    text-align: center;
    padding: 60px 20px;
    border-radius: 12px;
    margin-top: 60px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.page-resources__cta-title {
    font-size: 2.2em;
    margin-bottom: 15px;
    font-weight: 700;
    color: #FFD700;
}

.page-resources__cta-description {
    font-size: 1.1em;
    max-width: 700px;
    margin: 0 auto 30px auto;
    color: #e0e0e0;
}

/* Responsive Design */
@media (max-width: 992px) {
    .page-resources__hero-title {
        font-size: 2.8em;
    }
    .page-resources__section-title {
        font-size: 2em;
    }
    .page-resources__articles-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    }
}

@media (max-width: 768px) {
    .page-resources__hero-title {
        font-size: 2.2em;
    }
    .page-resources__hero-description {
        font-size: 1em;
    }
    .page-resources__hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }
    .page-resources__button {
        padding: 12px 25px;
        font-size: 1em;
    }
    .page-resources__section-title {
        font-size: 1.8em;
    }
    .page-resources__article-title {
        font-size: 1.3em;
    }
    .page-resources__cta-title {
        font-size: 1.8em;
    }
}

@media (max-width: 480px) {
    .page-resources__hero-title {
        font-size: 1.8em;
    }
    .page-resources__hero-section {
        padding: 50px 0;
    }
    .page-resources__section-title {
        font-size: 1.6em;
    }
    .page-resources__articles-grid {
        grid-template-columns: 1fr;
    }
    .page-resources__article-content {
        padding: 20px;
    }
    .page-resources__cta-title {
        font-size: 1.6em;
    }
}