/* css/resources.css */

/* Page Layout & Toolbar (Consistent with other pages) */
.resources-container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
}

/* .page-header h1 inherits from base.css h1 */

/* Resource Grid */
.resource-grid {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* Resource Card Styling */
.resource-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    /* Remove underline from link */
    padding: 25px;
    height: 100%;
}

.card-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(0, 169, 255, 0.1);
    border-radius: var(--radius-sm, 4px);
    font-size: 28px;
    color: var(--accent-color);
    margin-bottom: 20px;
}

.card-content {
    flex-grow: 1;
}

.card-content h3 {
    color: var(--title-color);
    font-size: 20px;
    margin-bottom: 10px;
}

.card-content p {
    color: var(--paragraph-color);
    font-size: 15px;
    line-height: 1.7;
}

.card-footer {
    margin-top: auto;
    padding-top: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

/* Animations */



/* Responsive */
@media (max-width: 768px) {
    /* Typography inherits from base.css responsive styles */
}