.resource-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.resource-links a {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    border-radius: 5px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

.resource-links a:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

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

.resource-links span {
    padding: 10px;
    text-align: center;
    font-weight: 500;
    color: #333;
    background-color: #f9f9f9;
}