﻿.page-title {
    font-size: 28px;
    margin: 30px 0;
    text-align: center;
    font-weight: bold;
}

.resource-card {
    display: flex;
    align-items: center;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 16px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: pointer;
}

    .resource-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 6px 20px rgba(0,0,0,0.1);
    }

.resource-img {
    width: 160px;
    height: 100px;
    object-fit: cover;
    border-radius: 8px;
    margin-right: 16px;
}

.resource-info {
    flex: 1;
}

.resource-title {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 8px;
}
