/* Link cards styles */
.links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.link-card {
    display: block;
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    padding: 1rem;
    border-radius: 0.5rem;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.link-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
    border-color: #EBBC9E;
}

.link-content h2 {
    color: white;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 0.25rem;
    transition: color 0.3s ease;
}

.link-card:hover .link-content h2 {
    color: #EBBC9E;
}

.link-content p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    transition: color 0.3s ease;
}

.link-card:hover .link-content p {
    color: rgba(255, 255, 255, 0.9);
}