﻿.small-card {
    transition: transform 0.3s;
    border-radius: 8px;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.small-card img {
    height: 150px;
    object-fit: cover;
    border-radius: 8px 8px 0 0;
    width: 100%;
}

.small-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
}

.card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 8px;
}

.small-btn {
    font-size: 0.85rem;
    padding: 4px 10px;
    background-color: #21d7ff;
    border: none;
    font-weight: bold;
    width: 100%;
    box-sizing: border-box;
}

    .small-btn:hover {
        background-color: #023b48;
        color: #fff;
    }

.video-intro a:hover {
    color: #023b48;
    text-decoration: none;
}
