.about-con ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
    margin: 0;
    list-style: none;
}

.about-con li {
    position: relative;
    padding: 24px;
    margin-bottom: 40px;
    border-radius: 20px;
    overflow: hidden;

    background: linear-gradient(
        -45deg,
        #0A2A66,
        #1565C0,
        #42A5F5,
        #D4AF37,
        #FFE082,
        #1565C0
    );

    background-size: 400% 400%;
    animation: blueGoldFlow 10s ease infinite;

    display: flex;
    justify-content: center;
    align-items: center;
}

@keyframes blueGoldFlow {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

.about-con li img {
    background: white;
    border-radius: 12px;

    max-width: 100%;
    max-height: 100%;

    display: block;
}

/* First two landscape images */

.about-con li:nth-child(1),
.about-con li:nth-child(2) {
    height: 520px;
}

/* Third portrait image */

.about-con li:nth-child(3) {
    height: auto;
    padding: 24px;
}

.about-con li:nth-child(3) img {
    width: auto;
    max-width: 55%;
    height: auto;
}

/* ==========================================
   TVET PENYERTAAN CONTENT LIST
========================================== */

.tvet-list{
    display:flex;
    flex-wrap:wrap;
    gap:30px;
    justify-content:center;
}

/* Two cards per row */

.tvet-card{
    width:calc(50% - 15px);
    background:#ffffff;
    border-radius:20px;
    overflow:hidden;
    box-shadow:0 12px 30px rgba(0,0,0,.08);
    transition:all .35s ease;
    position:relative;
}

/* Blue-Gold accent */

.tvet-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:6px;
    background:linear-gradient(
        90deg,
        #0A2A66,
        #1565C0,
        #42A5F5,
        #D4AF37
    );
}

/* Hover */

.tvet-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

/* Image */

.f-list-item-teaser-image{
    overflow:hidden;
}

.f-list-item-teaser-image img{
    width:100%;
    height:260px;
    object-fit:cover;
    display:block;
    transition:transform .45s ease;
}

.tvet-card:hover .f-list-item-teaser-image img{
    transform:scale(1.05);
}

/* Title */

.f-list-item-title{
    padding:22px;
    text-align:center;
}

.f-list-item-title a{
    color:#0A2A66;
    font-size:1.35rem;
    font-weight:700;
    line-height:1.45;
    text-decoration:none;
    transition:.3s;
}

.f-list-item-title a:hover{
    color:#D4AF37;
}

/* ==========================================
   TVET FULL ARTICLE IMAGE
========================================== */

.f-content-image{
    display:flex;
    justify-content:center;
    margin:50px 0;
}

.f-content-image img{

    width:75%;
    max-width:900px;

    height:auto;

    padding:12px;

    background:linear-gradient(
        135deg,
        #0A2A66,
        #1565C0,
        #42A5F5,
        #D4AF37
    );

    border-radius:20px;

    box-shadow:0 20px 50px rgba(0,0,0,.18);

    transition:.35s ease;

}

.f-content-image img:hover{

    transform:translateY(-5px);

}


/* Mobile */

@media (max-width:768px){

    .tvet-card{
        width:100%;
    }

    .f-list-item-teaser-image img{
        height:220px;
    }

    .f-list-item-title a{
        font-size:1.15rem;
    }

}