/* Card Styles */
.card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 0.625rem; /* 10px */
    border: 0.125rem solid #fff; /* 2px */
    border-radius: 0.5rem; /* 8px */
    background-color: #fff;
    max-width: 17.5rem; /* 280px */
    margin: 1.25rem auto; /* 20px */
    box-shadow: 0 0.25rem 0.1875rem rgb(178, 199, 255); /* 4px 3px */
}

.card:hover {
    transform: translateY(-0.625rem); /* -10px */
    box-shadow: 0 0.5rem 0.1875rem rgb(172, 211, 255); /* 8px 3px */
}

.card img {
    width: 100%;
    height: auto;
    border-radius: 0.25rem; /* 4px */
    display: block;
}

.card-body {
    padding: 0.625rem 0 0; /* 10px 0 0 */
    text-align: center;
}

.card-body h5 {
    margin: 0.625rem 0 0; /* 10px 0 0 */
    font-size: 1.5rem;
    font-weight: bold;
}

.card-body p {
    margin: 0.3125rem 0 0; /* 5px 0 0 */
    font-size: 0.9rem;
    color: #666;
}

.board-card img {
    border-radius: 0.25rem; /* 4px */
}

