/* Araldoteca Styles */

.argomento-card {
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.argomento-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
}

.argomento-icon {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.argomento-icon i {
    font-size: 1.8rem;
}

.contenuto-card {
    border: 1px solid #e0e0e0;
    transition: all 0.2s ease;
}

.contenuto-card:hover {
    box-shadow: 0 0.25rem 0.5rem rgba(0, 0, 0, 0.1);
}

.contenuto-type-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contenuto-type-icon i {
    font-size: 1.5rem;
    color: white;
}

.contenuto-image {
    max-width: 100%;
    max-height: 400px;
    object-fit: contain;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.contenuto-image:hover {
    transform: scale(1.02);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .argomento-icon {
        width: 50px;
        height: 50px;
    }

    .argomento-icon i {
        font-size: 1.5rem;
    }

    .contenuto-type-icon {
        width: 40px;
        height: 40px;
    }

    .contenuto-type-icon i {
        font-size: 1.2rem;
    }
}
