.section-title {
    font-size: 2.4em;
    margin-bottom: 20px;
    font-weight: 500;
}

.section-subtitle {
    font-size: 1.2em;
    margin-bottom: 40px;
    color: #fff;
}

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

.resource-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.resource-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    border-bottom: 1px solid var(--light-blue);
}

.resource-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.resource-content {
    padding: 20px;
    flex-grow: 1;
}

.resource-content h3 {
    color: var(--light-blue);
    margin-bottom: 15px;
    font-size: 1.4em;
}

.resource-content p {
    color: #666;
    line-height: 1.6;
}

.resource-footer {
    padding: 20px;
    border-top: 1px solid #eee;
    background-color: #f5f5f5;
}