
/* RSYN PRESS Default Styles */
.book-card, .author-card {
    transition: all 0.3s ease;
}

.book-card:hover, .author-card:hover {
    transform: translateY(-2px);
}

.gradient-border {
    background: linear-gradient(45deg, #3b82f6, #8b5cf6);
    padding: 2px;
    border-radius: 0.5rem;
}

.gradient-border > div {
    background: white;
    border-radius: calc(0.5rem - 2px);
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.fade-in {
    animation: fadeIn 0.6s ease-out;
}

/* Responsive fixes */
@media (max-width: 768px) {
    .grid-cols-3 { grid-template-columns: repeat(2, 1fr); }
    .grid-cols-4 { grid-template-columns: repeat(2, 1fr); }
    .text-5xl { font-size: 2.5rem; }
    .text-6xl { font-size: 3rem; }
}
