/* Styles/Artifacts.css (page-only, NO hard-coded colors) */

.container h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
}

/* Cards: let site.css skin cards; keep only motion if you want it */
.card {
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}
.card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 15px rgba(0, 0, 0, 0.4);
}

.card-title {
    font-size: 1.25rem;
    font-weight: bold;
}

/* Layout */
.container {
    margin-top: 30px;
    padding-bottom: 50px;
}
