.interesting-preview .preview-card{
    border-radius: 16px;
    overflow: hidden;
    background: #fff;
    border: 1px solid rgba(0,0,0,.06);
    box-shadow: 0 10px 24px rgba(10, 30, 60, .08);
    transition: transform .2s ease, box-shadow .2s ease;
}

.interesting-preview .preview-card:hover{
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(10, 30, 60, .14);
}

.preview-image{
    width: 100%;
    height: 100%;
    min-height: 220px;
    object-fit: cover;
}

.view-more-link{
    position: relative;
    font-size: 15px;
    text-decoration: none;
    color: #212529;
}

.view-more-link::after{
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 0;
    height: 3px;
    background: #2D6284;
    transition: width .3s ease;
}

.view-more-link:hover::after{
    width: 100%;
}


.clamp-3{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.tag{
    display:inline-flex; align-items:center; gap:8px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .06em;
}

.tag-tech{ background: rgba(255,255,255,.14); color:#fff; border:1px solid rgba(255,255,255,.18); }
.tag-ai{ background: rgba(66, 158, 255, .18); color:#0b2b4a; border:1px solid rgba(66, 158, 255, .35); }
.tag-innovation{ background: rgba(0, 235, 199, .18); color:#07362f; border:1px solid rgba(0, 235, 199, .35); }
.tag-webinar{ background: rgba(255, 193, 7, .18); color:#3a2a00; border:1px solid rgba(255, 193, 7, .35); }
.tag-seminar{ background: rgba(220, 53, 69, .12); color:#3a0d12; border:1px solid rgba(220, 53, 69, .25); }
.tag-science{ background: rgba(123, 97, 255, .18); color: #2a1f66;border: 1px solid rgba(123, 97, 255, .35);}


/* Buttons */
.about-btn-first {
    border-radius: 999px;
    padding: 10px 18px;
    box-shadow: 0 8px 18px rgba(2,6,23,.08);
    transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
    background:#2D6284;
    color:#fff;
}

.about-btn-second {
    color:#2D6284;
    border: 1px solid #2D6284 !important;
    border-radius: 999px;
    padding: 10px 18px;
}

.about-btn-first:hover,
.about-btn-second:hover,
.about-btn-first:focus,
.about-btn-second:focus {
    transform: translateY(-2px);
    box-shadow: 0 14px 28px rgba(2,6,23,.12);
    background:#2D6284;
    color:#fff;
}

.mission-section{
    padding: 20px 0;
}

.mission-box{
    background: linear-gradient(135deg, #0f172a, #1e293b);
    color: #fff;
    padding: 40px 32px;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.18);
    text-align: center;
}

.mission-box::before{
    content:"";
    position:absolute;
    width:220px;
    height:220px;
    background: rgba(255,255,255,0.05);
    border-radius:50%;
    top:-60px;
    right:-60px;
}

.mission-icon{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: rgba(239,68,68,0.08);
    margin-bottom: 14px;
}


.mission-title{
    margin-bottom: 16px;
}

.mission-text{
    max-width: 850px;
    margin: 0 auto;
    opacity: .95;
}

.strength-card{
    height: 100%;
    padding: 24px 22px;
    border-radius: 14px;
    transition: transform .25s ease, box-shadow .25s ease;
    color: #1f2933;
    position: relative;
    overflow: hidden;
}

.strength-card:hover{
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.12);
}

.card-academic{
    background: linear-gradient(135deg, #e7b9ad, #f3d3cb);
}

.card-international{
    background: linear-gradient(135deg, #d9c7e8, #e9dbf4);
}

.card-innovation{
    background: linear-gradient(135deg, #bfe7e4, #d7f2f0);
}

.strength-card::after{
    content: "";
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(255,255,255,0.25);
    border-radius: 50%;
    bottom: -40px;
    right: -40px;
}


.about-image-wrap{
    aspect-ratio: 16 / 9;
    overflow: hidden;
    border-radius: 12px;
}

.about-image{
    width: 100%;
    height: 100%;
    object-fit: cover;
}


@media (max-width: 576px){
    .about{ padding: 32px 0; }
}

.strengths-section .strength-card {
    height: 100%;
    padding: 16px;
}

.about .about-text,
.mission .mission-text,
.strengths-section .strengths-text {
    line-height: 1.7 !important;
}