/* Hero Section */
.resources-hero {
    background: linear-gradient(135deg, #012169 0%, #2E5090 100%);
    color: white;
    padding: 100px 20px 80px;
    text-align: center;
}

.resources-hero h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-family: 'Merriweather', serif;
    color: white;
}

.resources-hero .hero-subtitle {
    font-size: 20px;
    opacity: 0.95;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Resources Section using home page patterns */
.resources-section {
    background: #F8F9FA;
    padding: 80px 20px;
}

.resources-section .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

/* Enhanced service cards for resources */
.resource-card {
    background: white;
    padding: 35px 30px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    text-align: center;
    transition: all 0.3s ease;
    border-left: 4px solid #CF142B;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

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

.resource-card .service-icon {
    font-size: 48px;
    margin-bottom: 20px;
    height: 60px;
}

.resource-card h3 {
    color: #012169;
    margin-bottom: 15px;
    font-size: 24px;
    font-weight: 600;
}

.resource-card .tag {
    display: inline-block;
    background: #CF142B;
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.resource-card p {
    color: #6C757D;
    line-height: 1.6;
    font-size: 15px;
    margin-bottom: 20px;
    flex-grow: 1;
}

.resource-card .btn {
    width: 100%;
    margin-top: auto;
}

/* Author Section */
.author-section {
    background: white;
    padding: 60px 20px;
    text-align: center;
}

.author-content {
    max-width: 800px;
    margin: 0 auto;
}

.author-bio {
    font-size: 18px;
    color: #6C757D;
    line-height: 1.8;
    margin: 30px 0;
}

.credentials {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 30px;
}

.credential {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: #012169;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .resources-hero h1 {
        font-size: 32px;
        color: white;
    }
    
    .resources-hero .hero-subtitle {
        font-size: 16px;
    }
    
    .resources-section .services-grid {
        grid-template-columns: 1fr;
    }
    
    .resource-card {
        min-height: auto;
    }
}