body {
    background: #f5f5f7;
}

.card {
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
    border: 1px solid transparent;
    position: relative;
}

.card:hover {
    transform: translateY(-4px);
    border-color: rgba(59, 130, 246, 0.25);

    box-shadow:
        0 8px 24px rgba(0, 0, 0, 0.08),
        0 2px 8px rgba(0, 0, 0, 0.05);
}


.h1 {
    font-size: 18px;
}

.card-title {
    font-size: 14px;
}

.h2,
.h3,
.h4,
.p {
    font-size: 12px;
}

.h5 {
    font-size: 14px;
}
.video-title {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;

    -webkit-box-orient: vertical;
    overflow: hidden;
}
.container {
  position: relative;
}
.update_at {
  position: absolute;
  top: 10px;
  right: 10px;
  text-align: right;
}
.card {
    color: #222;
    border-radius: 20px;
}
.text-bg-light {
    background-color: #fff !important;
}