/* =========================
GLOBAL CARD STYLE
========================= */

.card {
    border-radius: 8px;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    height: 100%;
    display: flex;
    flex-direction: column;
}


/* =========================
EQUAL HEIGHT GRID FIX
========================= */

.row.row-cols-md-3 > .col {
    display: flex;
}

.row.row-cols-md-3 > .col > .card {
    flex: 1;
}


/* =========================
TITLE BAR STYLE
========================= */

.card-title-row {
    font-size: 18px;
    font-weight: bold;
    padding: 8px 15px;
    border-bottom: 1px solid #dee2e6;
    background: linear-gradient(
        to right,
        #eef2f6 0%,
        #eef2f6 50%,
        #d3e4f2 75%,
        #a9c9e2 100%
    );
}

.title-split {
    display: flex;
    justify-content: space-between;
}

.title-center {
    text-align: center;
}


/* =========================
CONTENT HEIGHT STANDARDIZATION
========================= */

.card-content1 {
    height: 300px;
    overflow: hidden;
    background-color: #f8f9fa;
}

.carousel-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.card iframe {
    width: 100%;
    height: 200px;
    border: none;
}


/* =========================
NEWS LIST STYLE
========================= */

.news-list1 {
    list-style: none;
    padding: 0;
    margin: 0;
    animation: scrollUp 35s linear infinite;
}

.news-list1 li {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

.news-list1 li a {
    text-decoration: none;
    color: #000;
}

/*
.news-list1 li a:hover {
    background: #eaeaea;
}

.news-list1 p {
    font-size: 14px;
    font-weight: 600;
}
*/

/* =========================
DG IMAGE STYLE
========================= */

.dg-photo {
    width: 125px;
    height: 125px;
    object-fit: cover;
}


/* =========================
GALLERY MODAL IMAGES
========================= */

.gallery-img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}


/* =========================
FOOTER ALIGNMENT FIX
========================= */

.card-footer {
    margin-top: auto;
}


/* =========================
SCROLL ANIMATION
========================= */

@keyframes scrollUp {

0% { transform: translateY(0); }

100% { transform: translateY(-100%); }

}