/* logo */
.logo-navbar{
    height: 60px;
    width: auto;
    max-width: 100%;
}

/* Tablet */
@media (max-width: 991px){
    .logo-navbar{
        height: 50px;
    }
}

/* HP */
@media (max-width: 576px){
    .logo-navbar{
        height: 40px;
    }
}

/* modal */
    .modal-content {
    max-height: 95vh;
    }

    .modal-body {
        overflow-y: auto;
        max-height: calc(95vh - 130px);
    }
    #table1 {
    width: 100% !important;
    }

    #table1 td,
    #table1 th {
        white-space: nowrap;
    }

    .table-title {
        max-width: 300px;
        white-space: normal;
        word-wrap: break-word;
    }

/* opening */
.animate-scroll{
    opacity: 0;
}

.welcome-section{
    background:#173f45;
    padding:120px 0;
}

.welcome-card{
    background:#ffffff;
    border-radius:30px;
    padding:60px;
    box-shadow:
    0 15px 50px rgba(0,0,0,0.05);
    transition:.4s;
}

.welcome-card:hover{
    transform:translateY(-5px);
}

.welcome-label{
    display:block;
    font-size:13px;
    font-weight:700;
    letter-spacing:3px;
    color:#173f45;
    margin-bottom:15px;
}

.welcome-title{
    font-size:54px;
    font-weight:800;
    color:#102a43;
    margin-bottom:20px;
}

.welcome-subtitle{
    font-size:24px;
    color:#6b7280;
    line-height:1.7;
}

.welcome-divider{
    width:100%;
    height:5px;
    background:#62a66d;
    margin:40px 0;
}

.welcome-content{
    max-width:100%;
}

.welcome-content p{
    color:#667085;
    line-height:2;
    margin-bottom:25px;
    font-size:17px;
}

.welcome-author{
    margin-top:35px;
    font-weight:700;
    color:#102a43;
    font-size:18px;
}

.welcome-header{
    position:relative;
}

.welcome-header::before{
    content:'';
    position:absolute;
    left:-20px;
    top:20px;
    width:6px;
    height:100px;
    border-radius:10px;
    background:#eacd12;
}

.pb-5 {
    padding-bottom: 0rem !important;
}

.opening-description{
    width:100%;
    max-width:100%;
}

.opening-description *{
    background:transparent !important;
    max-width:100% !important;
}

.opening-description p{
    width:100% !important;
    margin-bottom:20px;
}


/* misi */
.vision-mission{
    background:#fdf7f7;
}

.vision-box{
    background:#ebf0fa;
    border-radius:20px;
    padding:50px;
    position:relative;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
    margin-bottom:30px;
}

.vision-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 6px;
    height: 100%;
    background: #eacd12;
}

.vision-label{
    color: #000000;
    font-size:13px;
    font-weight:700;
    letter-spacing:3px;
    margin-bottom:15px;
}

.vision-box h2{
    font-size:2.2rem;
    font-weight:800;
    line-height:1.4;
    margin:0;
}

.mission-card{
    background:#fffcfc;
    border-radius:20px;
    padding:35px;
    height:100%;
    transition:.4s;
    border:1px solid #e5e7eb;
}

.mission-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 40px rgba(0,0,0,.08);
}

.mission-number{
    display:block;
    font-size:42px;
    font-weight:800;
    color:rgba(204, 151, 28, 0.64);
    margin-bottom:15px;
}

.mission-card h5{
    font-weight:700;
    margin-bottom:15px;
}

.mission-card p{
    color:#6b7280;
    line-height:1.8;
}

/* Galery photo */

.gallery-counter{
    display:inline-block;
    margin-top:15px;
    background:#f3f4f6;
    color:#555;
    padding:8px 18px;
    border-radius:50px;
    font-size:14px;
    font-weight:600;
}

.gallery-photo-card{
    background:#fff;
    border-radius:25px;
    overflow:hidden;
    height:100%;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.gallery-photo-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.gallery-photo-image{
    position:relative;
    height:300px;
    overflow:hidden;
}

.gallery-photo-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.7s;
}

.gallery-photo-card:hover .gallery-photo-image img{
    transform:scale(1.08);
}

.gallery-overlay{
    position:absolute;
    inset:0;

    background:
    linear-gradient(
        rgba(0,0,0,.05),
        rgba(0,0,0,.55)
    );

    display:flex;
    justify-content:center;
    align-items:center;

    opacity:0;
    transition:.4s;
}

.gallery-photo-card:hover .gallery-overlay{
    opacity:1;
}

.gallery-view-btn{
    width:60px;
    height:60px;
    background:#fff;
    border-radius:50%;
    display:flex;
    justify-content:center;
    align-items:center;

    color:var(--primary);
    font-size:20px;

    transform:translateY(30px);
    transition:.4s;
}

.gallery-photo-card:hover .gallery-view-btn{
    transform:translateY(0);
}

.gallery-content{
    padding:25px;
}

.gallery-content h5{
    font-weight:700;
    margin-bottom:10px;
    line-height:1.5;
}

.gallery-content p{
    color:#6c757d;
    margin-bottom:0;
    line-height:1.8;
}
.gallery-photo-card::before{
    content:'';
    position:absolute;
    inset:0;
    border-radius:25px;
    pointer-events:none;
}
@media(max-width:768px){

    .gallery-photo-image{
        height:250px;
    }

    .gallery-content{
        padding:18px;
    }

}

/* article */

.article-card{
    background:#fff;
    border-radius:24px;
    overflow:hidden;
    height:100%;
    transition:.4s;
    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

.article-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.article-image{
    position:relative;
    height:260px;
    overflow:hidden;
}

.article-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.7s;
}

.article-card:hover .article-image img{
    transform:scale(1.08);
}

.article-category{
    position:absolute;
    top:20px;
    left:20px;

    background:var(--primary);

    color:#fff;
    padding:8px 16px;

    border-radius:50px;
    font-size:13px;
    font-weight:600;
}

.detail_article_category_item{
    display:flex;
    align-items:center;
    justify-content:space-between;

    padding:14px 18px;
    margin-bottom:10px;

    background:#f8fafc;

    border-radius:14px;

    text-decoration:none;
    color:#333;

    transition:.3s;
}

.detail_article_category_item:hover{
    background:var(--primary);
    color:#fff;

    transform:translateX(5px);
}

.detail_article_category_item i{
    font-size:12px;
}

.detail_article_widget{
    background:#fff;
    border-radius:20px;
    padding:25px;
    margin-bottom:25px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);

    border:1px solid #f1f1f1;
}

.detail_article_widget h4{
    position:relative;
    font-weight:700;
    margin-bottom:25px;
    padding-bottom:12px;
}

.detail_article_widget h4::after{
    content:'';

    position:absolute;
    left:0;
    bottom:0;

    width:50px;
    height:3px;

    background:var(--primary);
    border-radius:20px;
}

.article-body{
    padding:25px;
}

.article-meta{
    margin-bottom:15px;
    color:#888;
    font-size:14px;
}

.article-title{
    font-weight:700;
    line-height:1.5;
    margin-bottom:15px;
    min-height:85px;
}

.article-summary{
    color:#6c757d;
    line-height:1.8;
    margin-bottom:20px;
}

.article-btn{
    color:var(--primary);
    font-weight:600;
    text-decoration:none;
}

.article-btn:hover{
    color:#0d6efd;
}

@media(max-width:768px){

    .article-image{
        height:220px;
    }

    .article-title{
        min-height:auto;
    }

}

.detail_article_title{
    font-size:32px;
    font-weight:800;
    line-height:1.4;
    margin-bottom:20px;
}

.detail_article_meta{
    display:flex;
    gap:5px;
    margin-bottom:10px;
    color:#888;
}

.detail_article_image{
    overflow:hidden;
    border-radius:25px;
    margin-bottom:35px;
}

.detail_article_image img{
    width:100%;
    border-radius:25px;
    transition:1.2s;
}

.detail_article_image:hover img{
    transform:scale(1.05);
}

.detail_article_content{
    line-height:2;
    font-size:17px;
}

.detail_article_content img{
    max-width:100%;
    border-radius:15px;
    margin:20px 0;
}

.detail_article_widget{
    background:#fff;
    border-radius:20px;
    padding:25px;
    margin-bottom:25px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);

    border:1px solid #f1f1f1;
}

.detail_article_widget h4{
    position:relative;
    font-weight:700;
    margin-bottom:25px;
    padding-bottom:12px;
}

.detail_article_widget h4::after{
    content:'';

    position:absolute;
    left:0;
    bottom:0;

    width:50px;
    height:3px;

    background:var(--primary);
    border-radius:20px;
}

.detail_article_tags{
    display:flex;
    flex-wrap:wrap;
    gap:10px;
}

.detail_article_tags span{
    background:#f5f7fa;
    color:var(--primary);
    padding:8px 15px;
    border-radius:50px;
    font-size:14px;
}


.detail_article_related{
    display:flex;
    gap:15px;
    margin-bottom:20px;
}

.detail_article_related img{
    width:90px;
    height:70px;
    border-radius:10px;
    object-fit:cover;
}

.detail_article_related a{
    display:block;
    font-weight:600;
    color:#222;
    text-decoration:none;
    line-height:1.5;
}

.detail_article_related a:hover{
    color:var(--primary);
}

.detail_article_related small{
    color:#888;
}

/* Pagination */
.pagination .page-link{
    color: var(--primary);
    border-radius: 8px;
    margin: 0 3px;
    border: 1px solid #dee2e6;
}

.pagination .page-item.active .page-link{
    background: var(--primary);
    border-color: var(--primary);
    color: #fff;
}

.pagination .page-link:hover{
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

/*  */
.empty-result{
    background:#fff;
    padding:60px 40px;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.empty-result i{
    font-size:70px;
    color:var(--primary);
    margin-bottom:20px;
}

.empty-result h3{
    font-weight:700;
    margin-bottom:15px;
}

.empty-result p{
    color:#6c757d;
    margin-bottom:25px;
    font-size:16px;
}

.empty-result strong{
    color:var(--primary);
}

/* Layanan */
.insp-services-section{
    padding:100px 0;
    position:relative;
    overflow:hidden;

    background:
        radial-gradient(
            circle at top left,
            rgba(11,110,79,.08),
            transparent 30%
        ),

        radial-gradient(
            circle at bottom right,
            rgba(37,99,235,.08),
            transparent 30%
        ),

        #f8fafc;
}

/* Glow Background */

.insp-services-section::before{
    content:'';
    position:absolute;
    top:-200px;
    left:-200px;

    width:500px;
    height:500px;

    border-radius:50%;

    background:rgba(11,110,79,.08);
    filter:blur(120px);
}

.insp-services-section::after{
    content:'';
    position:absolute;
    right:-200px;
    bottom:-200px;

    width:500px;
    height:500px;

    border-radius:50%;

    background:rgba(37,99,235,.08);
    filter:blur(120px);
}

.insp-services-wrapper{
    position:relative;
    z-index:2;

    background:#ffffff;

    border-radius:32px;

    padding:60px;

    box-shadow:
        0 20px 60px rgba(15,23,42,.06);
}

/* Header */

.insp-services-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:40px;

    margin-bottom:60px;
    padding-bottom:35px;

    border-bottom:1px solid #e5e7eb;
}

.insp-section-badge{
    display:inline-block;

    color:#B7791F;

    font-size:13px;
    font-weight:700;

    letter-spacing:2px;

    margin-bottom:15px;
}

.insp-section-title{
    font-size:48px;
    line-height:1.15;
    font-weight:800;

    color:#0f172a;

    max-width:700px;

    margin-bottom:15px;
}

.insp-section-desc{
    color:#64748b;

    max-width:650px;

    font-size:17px;
    line-height:1.8;

    margin:0;
}

/* Button */

.insp-btn-services{
    text-decoration:none;

    background:
        linear-gradient(
            135deg,
            #bababa,
            #0E7490
        );

    color:#fff;

    padding:16px 32px;

    border-radius:50px;

    font-weight:600;

    transition:.3s;
}

.insp-btn-services:hover{
    color:#fff;

    transform:translateY(-3px);

    box-shadow:
        0 15px 30px rgba(11,110,79,.25);
}

/* Grid */

.insp-services-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

/* Card */

.insp-service-card{
    position:relative;

    background:#fff;

    border-radius:24px;

    padding:35px 28px;

    overflow:hidden;

    transition:.4s;

    border:1px solid #edf2f7;

    box-shadow:
        0 8px 25px rgba(0,0,0,.03);
}

.insp-service-card::before{
    content:'';

    position:absolute;
    top:0;
    left:0;

    width:100%;
    height:4px;

    background:
        linear-gradient(
            90deg,
            #0B6E4F,
            #0E7490,
            #2563EB
        );
}

.insp-service-card:hover{
    transform:translateY(-10px);

    box-shadow:
        0 20px 40px rgba(0,0,0,.08);
}

/* Number */

.insp-card-number{
    font-size:52px;
    font-weight:800;

    color:rgba(15,23,42,.06);

    margin-bottom:10px;
}

/* Icon */

.insp-card-icon{
    width:60px;
    height:60px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
        linear-gradient(
            135deg,
            rgba(11,110,79,.12),
            rgba(37,99,235,.12)
        );

    color:#0B6E4F;

    margin-bottom:25px;
}

.insp-card-icon i{
    font-size:20px;
}

/* Title */

.insp-service-card h3{
    font-size:24px;
    font-weight:700;

    color:#0f172a;

    margin-bottom:15px;
}

/* Description */

.insp-service-card p{
    color:#64748b;

    line-height:1.9;

    margin:0;
}

/* Responsive */

@media(max-width:1200px){

    .insp-services-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .insp-services-wrapper{
        padding:35px;
    }

    .insp-services-header{
        flex-direction:column;
        align-items:flex-start;
    }

    .insp-section-title{
        font-size:34px;
    }

    .insp-services-grid{
        grid-template-columns:1fr;
    }

}

/* kami */
.why-us-section{
    padding:100px 0;
    background:#ffffff;
}

.why-wrapper{
    background:#fff;
    border-radius:32px;
    padding:60px;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
}

.section-tag{
    color:#C7A46C;
    font-size:13px;
    font-weight:700;
    letter-spacing:3px;
}

.section-title{
    color:#102A43;
    font-size:42px;
    font-weight:800;
    line-height:1.2;
    margin:15px 0;
}

.section-desc{
    color:#6b7280;
    max-width:700px;
    margin-bottom:40px;
}

.reason-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.reason-item{
    display:flex;
    gap:18px;
    padding:22px;
    border:1px solid #edf0f3;
    border-radius:18px;
    transition:.3s;
}

.reason-item:hover{
    border-color:#d7c09a;
    transform:translateY(-3px);
}

.reason-icon{
    width:52px;
    height:52px;
    flex-shrink:0;
    border-radius:14px;
    background:linear-gradient(
        135deg,
        #102A43,
        #1D4E89
    );

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;
}

.reason-item h5{
    font-size:17px;
    color:#102A43;
    font-weight:700;
    margin-bottom:6px;
}

.reason-item p{
    margin:0;
    color:#6b7280;
    font-size:14px;
    line-height:1.7;
}

.stats-grid{
    display:flex;
    flex-direction:column;
    gap:20px;
}

.stat-card{
    text-align:center;
    padding:35px 20px;

    border-radius:24px;

    background:
        linear-gradient(
            135deg,
            #F8F3EA ,
            #b3a695
        );

    color:rgb(0, 0, 0);

    box-shadow:
        0 15px 35px rgba(16,42,67,.15);
}

.stat-card i{
    font-size:28px;
    margin-bottom:15px;
}

.stat-card h3{
    font-size:42px;
    font-weight:800;
    margin-bottom:5px;
}

.stat-card span{
    opacity:.9;
    text-transform:uppercase;
    letter-spacing:1px;
    font-size:12px;
}

/* News */
/* ==========================
   NEWS SECTION
========================== */

.news-section{
    padding:100px 0;
    background:#fff;
}

.news-header{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-bottom:40px;
}

.section-tag{
    color:#C7A46C;
    font-size:13px;
    font-weight:700;
    letter-spacing:2px;
}

.section-title{
    font-size:42px;
    font-weight:800;
    color:#102A43;
    margin-top:8px;
}

/* BUTTON */

.btn-news{
    display:inline-flex;
    align-items:center;
    gap:10px;

    padding:14px 24px;

    border-radius:50px;

    text-decoration:none;

    background:#102A43;
    color:#fff;

    font-weight:600;

    transition:.3s;
}

.btn-news:hover{
    background:#C7A46C;
    color:#fff;
    transform:translateY(-2px);
}

/* FEATURED */

.featured-news{
    position:relative;
    display:block;
    height:520px;

    border-radius:28px;
    overflow:hidden;

    text-decoration:none;
}

.featured-news img{
    width:100%;
    height:100%;
    object-fit:cover;

    transition:.5s;
}

.featured-news:hover img{
    transform:scale(1.05);
}

.featured-overlay{
    position:absolute;
    inset:0;

    padding:35px;

    display:flex;
    flex-direction:column;
    justify-content:flex-end;

    background:
    linear-gradient(
        to top,
        rgba(0,0,0,.80),
        rgba(0,0,0,.15)
    );
}

.news-category{
    align-self:flex-start;

    background:#C7A46C;
    color:#fff;

    padding:8px 15px;

    border-radius:50px;

    font-size:12px;
    font-weight:600;

    margin-bottom:15px;
}

.featured-meta{
    color:#fff;
    margin-bottom:10px;
}

.featured-overlay h3{
    color:#fff;
    font-size:32px;
    line-height:1.4;
    font-weight:700;
}

/* MINI NEWS */

.mini-news-list{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.mini-news{
    display:flex;
    gap:16px;

    background:#fff;

    padding:12px;

    border-radius:20px;

    border:1px solid #ECECEC;

    text-decoration:none;

    transition:.3s;
}

.mini-news:hover{
    border-color:#C7A46C;
    transform:translateX(6px);
}

.mini-news img{
    width:120px;
    height:95px;

    object-fit:cover;

    border-radius:14px;

    flex-shrink:0;
}

.mini-content{
    flex:1;
}

.mini-category{
    display:inline-block;

    background:#F8F3EA;
    color:#A67C52;

    padding:4px 10px;

    border-radius:30px;

    font-size:11px;
    font-weight:600;

    margin-bottom:8px;
}

.mini-content h5{
    color:#102A43;
    font-size:17px;
    line-height:1.5;
    margin-bottom:8px;
}

.mini-content small{
    color:#999;
}

/* MOBILE */

@media(max-width:991px){

    .news-header{
        flex-direction:column;
        align-items:flex-start;
        gap:20px;
    }

    .featured-news{
        height:320px;
    }

    .featured-overlay h3{
        font-size:24px;
    }

    .mini-news img{
        width:90px;
        height:80px;
    }
}

/* page news */

.halaman-berita{
    background:#ffffff;
}

/* HEADER */

.berita-header{
    margin-bottom:60px;
}

.berita-badge{
    display:inline-block;
    padding:10px 25px;
    background:#f8e7a1;
    color:#8b6d00;
    border-radius:50px;
    font-size:13px;
    font-weight:600;
    letter-spacing:1px;
}

.berita-header h1{
    margin-top:20px;
    color:#0F4C81;
    font-size:3rem;
    font-weight:800;
}

.berita-header p{
    max-width:700px;
    margin:auto;
    color:#666;
}

/* FEATURED */

.berita-featured{
    position:relative;
    border-radius:25px;
    overflow:hidden;
    margin-bottom:60px;
    box-shadow:0 15px 45px rgba(0,0,0,.12);
}

.berita-featured img{
    width:100%;
    height:600px;
    object-fit:cover;
    display:block;
}

.berita-overlay{
    position:absolute;
    left:0;
    right:0;
    bottom:0;
    padding:60px;
    background:linear-gradient(
        to top,
        rgba(8,47,90,.95),
        rgba(8,47,90,.7),
        transparent
    );
}

.berita-kategori{
    display:inline-block;
    background:#D4AF37;
    color:#082F5A;
    padding:8px 18px;
    border-radius:30px;
    font-weight:600;
}

.berita-overlay h4{
    margin-top:20px;
    color:white;
    font-size:1.4rem;
    font-weight:700;
    max-width:850px;
}

.berita-overlay p{
    color:#eee;
    max-width:700px;
    margin-top:15px;
    line-height:1.8;
}

.berita-btn{
    display:inline-block;
    margin-top:20px;
    background:#D4AF37;
    color:#082F5A;
    padding:10px 20px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.3s;
}

.berita-btn:hover{
    background:#f0c94a;
    color:#082F5A;
}

/* CARD */

.berita-card{
    background:white;
    border-radius:20px;
    overflow:hidden;
    height:100%;
    transition:.35s;
    box-shadow:0 8px 30px rgba(0,0,0,.06);
}

.berita-card:hover{
    transform:translateY(-8px);
    box-shadow:0 20px 45px rgba(15,76,129,.15);
}

.berita-image{
    overflow:hidden;
}

.berita-image img{
    width:100%;
    height:250px;
    object-fit:cover;
    transition:.5s;
}

.berita-card:hover .berita-image img{
    transform:scale(1.08);
}

.berita-content{
    padding:25px;
}

.berita-category{
    display:inline-block;
    background:#f8e7a1;
    color:#8b6d00;
    padding:7px 16px;
    border-radius:30px;
    font-size:12px;
    font-weight:600;
}

.berita-content h5{
    margin-top:15px;
    min-height:85px;
    line-height:1.7;
}

.berita-content h5 a{
    color:#082F5A;
    text-decoration:none;
    font-weight:700;
}

.berita-content h5 a:hover{
    color:#0F4C81;
}

.berita-date{
    color:#888;
    font-size:14px;
    margin-bottom:15px;
}

.berita-readmore{
    text-decoration:none;
    color:#0F4C81;
    font-weight:600;
}

.berita-readmore:hover{
    color:#D4AF37;
}

/* PAGINATION */

.halaman-berita .pagination{
    justify-content:center;
}

.halaman-berita .pagination .page-item{
    margin:0 4px;
}

.halaman-berita .pagination .page-link{
    border:none;
    border-radius:12px;
    color:#0F4C81;
    padding:10px 18px;
    box-shadow:0 4px 12px rgba(0,0,0,.06);
}

.halaman-berita .pagination .active .page-link{
    background:#0F4C81;
    color:white;
}

/* MOBILE */

@media(max-width:991px){

    .berita-featured img{
        height:400px;
    }

    .berita-overlay{
        padding:30px;
    }

    .berita-overlay h2{
        font-size:1.7rem;
    }

}

@media(max-width:768px){

    .berita-header h1{
        font-size:2rem;
    }

    .berita-featured img{
        height:300px;
    }

    .berita-content h5{
        min-height:auto;
    }

}

.news-detail-section{
    padding:80px 0;
    background:#FAF8F4;
}

.article-content-card{
    background:#fff;
    border-radius:30px;
    padding:40px;
    box-shadow:0 15px 40px rgba(0,0,0,.05);
}

.article-title{
    font-size:22px;
    line-height:1.3;
    font-weight:800;
    color:#102A43;
    margin-bottom:25px;
}

.article-meta{
    display:flex;
    flex-wrap:wrap;
    gap:20px;
    margin-bottom:20px;
    color:#777;
}

.badge-category{
    background:#C7A46C;
    color:#fff;
    padding:8px 16px;
    border-radius:50px;
}

.article-image{
    margin-bottom:35px;
}

.article-image img{
    width:100%;
    border-radius:24px;
}

.article-body{
    color:#555;
    line-height:2;
    font-size:17px;
}

.sidebar-sticky{
    position:sticky;
    top:120px;
}

.sidebar-card{
    background:#fff;
    border-radius:24px;
    padding:25px;
    margin-bottom:25px;

    box-shadow:0 10px 30px rgba(0,0,0,.04);
}

.sidebar-card h5{
    color:#102A43;
    font-weight:700;
    margin-bottom:20px;
}

.search-box{
    display:flex;
}

.search-box input{
    flex:1;
    border:1px solid #e5e7eb;
    border-radius:12px 0 0 12px;
    padding:12px;
}

.search-box button{
    width:50px;
    border:none;
    background:#102A43;
    color:#fff;
    border-radius:0 12px 12px 0;
}

.category-list{
    list-style:none;
    padding:0;
    margin:0;
}

.category-list li{
    border-bottom:1px solid #eee;
}

.category-list li:last-child{
    border:none;
}

.category-list a{
    display:block;
    padding:12px 0;
    color:#444;
    text-decoration:none;
}

.category-list a:hover{
    color:#C7A46C;
}

.mini-post{
    display:flex;
    gap:15px;
    align-items:center;

    text-decoration:none;

    margin-bottom:18px;
}

.mini-post img{
    width:95px;
    height:95px;

    flex-shrink:0;

    border-radius:14px;

    object-fit:cover;
    object-position:center;

    display:block;
}



.mini-post h6{
    margin-bottom:8px;
    color:#102A43;
    line-height:1.5;

    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}

.mini-post small{
    color:#888;
}


/* album */
.album-section{
    padding:100px 0;

    background:
    linear-gradient(
        180deg,
        #FAF7F2 0%,
        #F8F3EA 50%,
        #F3ECE0 100%
    );

    position:relative;
    overflow:hidden;
}

.album-section::before{
    content:'';
    position:absolute;

    width:350px;
    height:350px;

    border-radius:50%;

    background:rgba(199,164,108,.08);

    top:-150px;
    left:-120px;

    filter:blur(50px);
}

.album-section::after{
    content:'';
    position:absolute;

    width:300px;
    height:300px;

    border-radius:50%;

    background:rgba(16,42,67,.04);

    bottom:-120px;
    right:-120px;

    filter:blur(50px);
}

.album-section .container{
    position:relative;
    z-index:2;
}

/* category news */
.news-category-header{
    text-align:center;
    margin-bottom:60px;
}

.news-category-label{
    display:inline-block;

    background:linear-gradient(
        135deg,
        #0B6E4F,
        #0E7490
    );

    color:#fff;

    padding:8px 18px;

    border-radius:30px;

    font-size:12px;
    font-weight:700;
    letter-spacing:1px;

    margin-bottom:20px;
}

.news-category-header h1{
    font-size:52px;
    font-weight:800;
    color:#0f172a;

    margin-bottom:15px;
}

.news-category-header p{
    color:#64748b;
    font-size:18px;
}

/* Empty */

.news-empty{
    text-align:center;

    background:#fff;

    padding:40px;

    border-radius:20px;

    box-shadow:0 10px 30px rgba(0,0,0,.05);
}

/* Card */

.news-card{
    background:#fff;

    border-radius:24px;

    overflow:hidden;

    height:100%;

    transition:.4s;

    box-shadow:
        0 10px 30px rgba(0,0,0,.05);

    border:1px solid #edf2f7;
}

.news-card:hover{
    transform:translateY(-10px);

    box-shadow:
        0 20px 50px rgba(0,0,0,.08);
}

/* Image */

.news-image{
    position:relative;
    overflow:hidden;
}

.news-image img{
    width:100%;
    height:280px;
    object-fit:cover;

    transition:.5s;
}

.news-card:hover .news-image img{
    transform:scale(1.08);
}

/* Category Badge */

.news-category-badge{
    position:absolute;

    top:20px;
    left:20px;

    background:rgba(255,255,255,.95);

    backdrop-filter:blur(10px);

    padding:10px 16px;

    border-radius:30px;

    font-size:12px;
    font-weight:700;

    color:#0B6E4F;
}

/* Content */

.news-content{
    padding:28px;
}

.news-meta{
    display:flex;
    gap:20px;

    flex-wrap:wrap;

    margin-bottom:15px;

    color:#64748b;
    font-size:14px;
}

.news-meta i{
    color:#0B6E4F;
    margin-right:5px;
}

.news-content h3{
    font-size:24px;
    font-weight:700;

    color:#0f172a;

    line-height:1.4;

    margin-bottom:15px;

    min-height:70px;
}

.news-content p{
    color:#64748b;

    line-height:1.8;

    margin-bottom:25px;
}

/* Button */

.news-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;

    text-decoration:none;

    color:#0B6E4F;

    font-weight:700;

    transition:.3s;
}

.news-btn:hover{
    color:#2563EB;
}

.news-btn i{
    transition:.3s;
}

.news-btn:hover i{
    transform:translateX(5px);
}

/* Responsive */

@media(max-width:768px){

    .news-category-header h1{
        font-size:34px;
    }

    .news-image img{
        height:220px;
    }

}

/* Pengumuman */
.announcement-section{
    padding:100px 0;
    background:#FAF8F4;
}

.section-tag{
    display:inline-block;

    padding:10px 18px;

    background:#EFE5D2;

    color:#A87932;

    border-radius:50px;

    font-size:14px;
    font-weight:600;
}

.section-title{
    margin-top:20px;

    font-size:42px;
    font-weight:800;

    color:#102A43;
}

.section-desc{
    max-width:700px;
    margin:auto;

    color:#6b7280;
}

.announcement-card{
    background:#fff;

    border-radius:28px;

    padding:30px;

    height:100%;

    transition:.3s;

    border:1px solid #ececec;
}

.announcement-card:hover{
    transform:translateY(-8px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.08);
}

.announcement-top{
    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-bottom:20px;
}

.announcement-date{
    color:#9ca3af;
    font-size:14px;
}

.announcement-badge{
    padding:8px 16px;

    border-radius:50px;

    font-size:13px;
    font-weight:600;
}

.active .announcement-badge{
    background:#EAFBF0;
    color:#16A34A;
}

.upcoming .announcement-badge{
    background:#FFF7D6;
    color:#D97706;
}

.expired .announcement-badge{
    background:#FEE2E2;
    color:#DC2626;
}

.announcement-card h3{
    font-size:24px;
    font-weight:700;

    color:#102A43;

    margin-bottom:15px;

    line-height:1.5;
}

.announcement-card p{
    color:#6b7280;
    line-height:1.9;

    margin-bottom:25px;
}

.announcement-footer{
    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:10px;
}

.announcement-period{
    color:#6b7280;
    font-size:14px;
}

.announcement-link{
    color:#102A43;

    text-decoration:none;

    font-weight:600;
}

.announcement-link:hover{
    color:#A87932;
}

.announcement-pagination .pagination{
    gap:10px;
}

.announcement-pagination .page-link{
    border:none;

    width:45px;
    height:45px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:12px;

    background:#fff;

    color:#102A43;

    box-shadow:
    0 5px 15px rgba(0,0,0,.06);
}

.announcement-pagination .page-item.active .page-link{
    background:#102A43;
    color:#fff;
}

.announcement-pagination .page-link:hover{
    background:#C7A46C;
    color:#fff;
}

.announcement-detail{
    padding:80px 0;
    background:#FAF8F4;
}

.detail-card{
    background:#fff;
    padding:50px;
    border-radius:30px;

    box-shadow:
    0 15px 40px rgba(0,0,0,.05);
}

.detail-title{
    font-size:42px;
    font-weight:800;

    color:#102A43;

    line-height:1.4;

    margin:20px 0;
}

.detail-meta{
    display:flex;
    flex-wrap:wrap;
    gap:20px;

    color:#6b7280;

    margin-bottom:20px;
}

.detail-content{
    line-height:2;
    color:#374151;
}

.status-badge{
    display:inline-block;

    padding:10px 18px;

    border-radius:50px;

    font-size:14px;
    font-weight:600;
}

.activebadge{
    background:#EAFBF0;
    color:#16A34A;
}

.upcoming{
    background:#FFF7D6;
    color:#D97706;
}

.expired{
    background:#FEE2E2;
    color:#DC2626;
}

.sidebar-card{
    background:#fff;
    padding:30px;
    border-radius:24px;

    margin-bottom:25px;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);
}

.sidebar-card h5{
    color:#102A43;
    font-weight:700;

    margin-bottom:20px;
}

.announcement-info{
    list-style:none;
    padding:0;
    margin:0;
}

.announcement-info li{
    display:flex;
    justify-content:space-between;

    padding:12px 0;

    border-bottom:1px solid #eee;
}

.latest-item{
    display:block;

    text-decoration:none;

    padding:15px 0;

    border-bottom:1px solid #f2f2f2;
}

.latest-item h6{
    color:#102A43;
    margin-bottom:5px;
    line-height:1.5;
}

.latest-item small{
    color:#9ca3af;
}

.latest-item:hover h6{
    color:#C7A46C;
}

/* Whitepaper */


.wp-hero{
    background: linear-gradient(
        135deg,
        #0F5E4A 0%,
        #0A4F8A 100%
    );

    padding:120px 0 140px;
    color:#fff;
}

.wp-hero h1{
    font-size:48px;
    font-weight:700;
    margin:20px 0;
}

.wp-hero p{
    max-width:700px;
    margin:auto;
    opacity:.9;
    font-size:18px;
}

.wp-badge{
    display:inline-block;
    padding:10px 25px;
    border-radius:50px;

    background:rgba(255,255,255,.15);

    backdrop-filter:blur(10px);

    font-size:14px;
    letter-spacing:1px;
    font-weight:600;
}

/* ===== FEATURED ===== */

.featured-paper{
    background:#fff;

    border-radius:25px;

    padding:40px;

    margin-top:-80px;

    position:relative;
    z-index:10;

    box-shadow:
    0 20px 60px rgba(0,0,0,.08);

    margin-bottom:60px;
}

.featured-label{
    display:inline-block;

    background:#D4A017;
    color:#fff;

    padding:8px 15px;

    border-radius:50px;

    font-size:13px;
    font-weight:600;
}

.featured-paper h2{
    margin-top:20px;
    color:#0A4F8A;
    font-weight:700;
}

.featured-paper p{
    color:#666;
    line-height:1.8;
}

.paper-meta{
    margin:20px 0;
}

.paper-meta span{
    background:#f8f9fa;
    padding:10px 15px;
    border-radius:8px;
}

.pdf-preview{
    height:280px;

    border-radius:20px;

    background:linear-gradient(
        135deg,
        #D4A017,
        #F0C75E
    );

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:100px;
}

/* EMPTY FEATURED */

.empty-featured{
    background:#fff;
    border-radius:25px;
    padding:60px 40px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.08);
    margin-bottom:50px;
}

.empty-icon{
    width:110px;
    height:110px;
    margin:auto;
    border-radius:50%;
    background:linear-gradient(
        135deg,
        #D4A017,
        #F0C75E
    );

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:50px;

    margin-bottom:25px;
}

.empty-featured h3{
    color:#0A4F8A;
    font-weight:700;
    margin-bottom:15px;
}

.empty-featured p{
    color:#6c757d;
    max-width:550px;
    margin:auto;
}

/* EMPTY LIST */

.empty-whitepaper{
    background:#fff;
    border-radius:25px;
    padding:80px 40px;
    text-align:center;
    box-shadow:0 15px 40px rgba(0,0,0,.06);
}

.empty-whitepaper-icon{
    font-size:80px;
    color:#D4A017;
    margin-bottom:20px;
}

.empty-whitepaper h3{
    color:#0A4F8A;
    font-weight:700;
    margin-bottom:10px;
}

.empty-whitepaper p{
    color:#6c757d;
}

/* ===== DOWNLOAD BUTTON ===== */

.btn-download{
    display:inline-block;

    background:#0A4F8A;
    color:#fff;

    text-decoration:none;

    padding:14px 28px;

    border-radius:50px;

    transition:.3s;
}

.btn-download:hover{
    background:#0F5E4A;
    color:#fff;

    transform:translateY(-2px);
}

/* ===== GRID ===== */

.paper-section{
    padding:20px 0 80px;
}

/* ===== CARD ===== */

.paper-card{
    background:#fff;

    border-radius:20px;

    padding:30px;

    height:100%;

    border:1px solid #edf0f2;

    transition:.3s;

    box-shadow:
    0 5px 15px rgba(0,0,0,.03);
}

.paper-card:hover{

    transform:translateY(-8px);

    box-shadow:
    0 15px 35px rgba(0,0,0,.08);
}

.paper-icon{
    width:70px;
    height:70px;

    border-radius:15px;

    background:#fff4e0;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:32px;

    color:#D4A017;

    margin-bottom:20px;
}

.paper-card h4{
    color:#0A4F8A;

    font-size:22px;

    font-weight:700;

    margin-bottom:15px;
}

.paper-card p{
    color:#666;
    line-height:1.8;
}

.paper-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;

    margin-top:25px;
}

.paper-footer a{
    text-decoration:none;

    color:#0A4F8A;

    font-weight:600;
}

.paper-footer a:hover{
    color:#0F5E4A;
}

/* ===== RESPONSIVE ===== */

@media(max-width:768px){

    .wp-hero{
        padding:80px 0 120px;
    }

    .wp-hero h1{
        font-size:32px;
    }

    .featured-paper{
        padding:25px;
    }

    .pdf-preview{
        margin-bottom:20px;
    }

}

.wp-detail-hero{
    padding:100px 0 80px;

    background:
    linear-gradient(
        135deg,
        #102A43,
        #1B3F5D
    );

    color:#fff;
}

.wp-category{
    display:inline-block;

    background:
    rgba(255,255,255,.15);

    padding:10px 18px;

    border-radius:50px;

    margin-bottom:20px;
}

.wp-detail-hero h1{
    font-size:48px;
    font-weight:800;
    color:#D4A017;
    line-height:1.4;

    max-width:900px;
}

.wp-meta{
    display:flex;
    flex-wrap:wrap;

    gap:25px;

    margin-top:25px;

    opacity:.9;
}

.wp-detail-section{
    padding:80px 0;

    background:#FAF8F4;
}

.wp-document-card{
    background:#fff;

    border-radius:28px;

    padding:40px;

    margin-bottom:30px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.06);
}

.pdf-cover{
    height:260px;

    border-radius:20px;

    background:
    linear-gradient(
        135deg,
        #C0392B,
        #E74C3C
    );

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:90px;

    color:#fff;

    margin-bottom:30px;
}

.download-box{
    display:flex;

    justify-content:space-between;

    align-items:center;

    flex-wrap:wrap;

    gap:20px;
}

.btn-download-pdf{
    background:#102A43;

    color:#fff;

    text-decoration:none;

    padding:15px 30px;

    border-radius:50px;

    font-weight:600;
}

.btn-download-pdf:hover{
    color:#fff;
    background:#0C2033;
}

.wp-content-card{
    background:#fff;

    border-radius:28px;

    padding:40px;

    box-shadow:
    0 10px 30px rgba(0,0,0,.06);
}

.wp-content-card h3{
    color:#102A43;

    margin-bottom:20px;
}

.wp-content-card p{
    line-height:2;
    color:#4B5563;
}

.sidebar-card{
    background:#fff;

    border-radius:24px;

    padding:30px;

    margin-bottom:25px;

    box-shadow:
    0 10px 25px rgba(0,0,0,.05);
}

.stat-item{
    text-align:center;
}

.stat-item strong{
    display:block;

    font-size:40px;

    color:#102A43;
}

.related-paper{
    display:flex;

    gap:12px;

    text-decoration:none;

    color:#102A43;

    padding:15px 0;

    border-bottom:1px solid #eee;
}

.related-paper i{
    color:#C0392B;
    margin-top:4px;
}

.related-paper:hover{
    color:#A87932;
}

/* teams */
.team-section{
    background:#fff;
    padding:100px 0;
}

.team-subtitle{
    display:inline-block;

    padding:8px 18px;

    background:#F4ECE0;

    color:#A87932;

    border-radius:50px;

    font-size:14px;
    font-weight:600;

    margin-bottom:15px;
}

.team-title{
    color:#102A43;
    font-weight:800;
    margin-bottom:15px;
}

.team-description{
    max-width:650px;
    margin:auto;

    color:#6B7280;
    line-height:1.8;
}

.team-card{
    background:#fff;

    border-radius:24px;

    overflow:hidden;

    border:1px solid #ECECEC;

    transition:.35s;

    height:100%;
}

.team-card:hover{
    transform:translateY(-8px);

    box-shadow:
    0 20px 40px rgba(0,0,0,.08);
}

.team-photo{
    height:440px;
    overflow:hidden;
}

.team-photo img{
    width:100%;
    height:100%;

    object-fit:cover;
    object-position:top center;

    display:block;

    transition:.5s;
}

.team-card:hover .team-photo img{
    transform:scale(1.05);
}

.team-info{
    padding:25px;
    text-align:center;
}

.team-info h5{
    color:#102A43;
    font-weight:700;

    margin-bottom:8px;
}

.team-info span{
    color:#A87932;

    font-size:15px;
    font-weight:600;

    display:block;

    margin-bottom:20px;
}

.team-social{
    display:flex;
    justify-content:center;
    gap:10px;
}

.team-social a{
    width:42px;
    height:42px;

    border-radius:50%;

    background:#F8F8F8;

    color:#102A43;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    transition:.3s;
}

.team-social a:hover{
    background:#102A43;
    color:#fff;
}

@media(max-width:991px){

    .team-photo{
        height:400px;
    }

}

@media(max-width:768px){

    .team-photo{
        height:380px;
    }

    .team-title{
        font-size:32px;
    }

}

/* Contact */
.contact-section{
    position: relative;
    padding: 120px 0;
    background:
    linear-gradient(
        180deg,
        #f8fafc 0%,
        #ffffff 100%
    );
    overflow: hidden;
}

.contact-section::before{
    content:'';
    position:absolute;
    top:-200px;
    right:-200px;
    width:500px;
    height:500px;
    border-radius:50%;
    background:rgba(10,79,138,.04);
}

.contact-section::after{
    content:'';
    position:absolute;
    bottom:-150px;
    left:-150px;
    width:400px;
    height:400px;
    border-radius:50%;
    background:rgba(212,160,23,.05);
}

/* HEADER */

.section-header{
    margin-bottom:70px;
}

.contact-badge{
    display:inline-flex;
    align-items:center;
    gap:8px;

    padding:12px 24px;

    border-radius:100px;

    background:rgba(10,79,138,.08);

    color:#0A4F8A;

    font-size:13px;
    font-weight:700;

    letter-spacing:1px;
}

.section-header h2{
    margin-top:20px;

    font-size:52px;
    font-weight:800;

    color:#102A43;
}

.section-header p{
    max-width:750px;
    margin:20px auto 0;

    color:#64748B;

    font-size:18px;
    line-height:1.8;
}

/* CARD */

.contact-info-card,
.contact-form-card,
.map-card{

    background:#fff;

    border-radius:32px;

    padding:40px;

    height:100%;

    border:1px solid #eef2f7;

    box-shadow:
    0 20px 50px rgba(15,23,42,.06);

    transition:.35s ease;
}

.contact-info-card:hover,
.contact-form-card:hover,
.map-card:hover{

    transform:translateY(-6px);

    box-shadow:
    0 30px 60px rgba(15,23,42,.09);
}

/* TITLE */

.contact-info-card h4,
.contact-form-card h4{

    font-size:28px;
    font-weight:700;

    color:#102A43;

    margin-bottom:35px;
}

/* CONTACT ITEM */

.contact-item{

    display:flex;
    align-items:flex-start;

    gap:18px;

    padding-bottom:25px;

    margin-bottom:25px;

    border-bottom:1px solid #f1f5f9;
}

.contact-item:last-child{
    border-bottom:none;
}

.contact-item i{

    width:60px;
    height:60px;

    border-radius:18px;

    background:
    linear-gradient(
        135deg,
        #0A4F8A,
        #0F5E4A
    );

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:20px;

    flex-shrink:0;
}

.contact-item strong{

    display:block;

    color:#102A43;

    margin-bottom:6px;

    font-size:15px;
}

.contact-item p{

    margin:0;

    color:#64748B;

    line-height:1.7;
}

/* SOCIAL */

.contact-social{

    display:flex;

    gap:12px;

    margin-top:20px;
}

.contact-social a{

    width:48px;
    height:48px;

    border-radius:14px;

    background:#F8FAFC;

    color:#0A4F8A;

    display:flex;
    align-items:center;
    justify-content:center;

    text-decoration:none;

    transition:.3s;
}

.contact-social a:hover{

    background:#0A4F8A;

    color:#fff;

    transform:translateY(-4px);
}

/* FORM */

.form-control{

    height:58px;

    border-radius:16px;

    border:1px solid #dbe4ee;

    padding:0 20px;

    font-size:15px;

    background:#fbfdff;
}

textarea.form-control{

    height:auto;
    min-height:150px;

    padding:18px 20px;
}

.form-control:focus{

    border-color:#0A4F8A;

    box-shadow:
    0 0 0 4px rgba(10,79,138,.08);

    background:#fff;
}

/* BUTTON */

.btn-contact{

    width:100%;

    border:none;

    border-radius:18px;

    padding:16px;

    font-size:16px;
    font-weight:700;

    color:#fff;

    background:
    linear-gradient(
        135deg,
        #0A4F8A,
        #0F5E4A
    );

    transition:.35s;
}

.btn-contact:hover{

    transform:translateY(-3px);

    box-shadow:
    0 15px 30px rgba(10,79,138,.25);
}

/* MAP */

.map-card{
    padding:15px;
}

.map-card iframe{

    width:100%;
    height:100%;

    min-height:560px;

    border:none;

    border-radius:24px;

    filter:
    grayscale(15%)
    contrast(105%);
}

/* RESPONSIVE */

@media(max-width:991px){

    .section-header h2{
        font-size:38px;
    }

    .contact-section{
        padding:80px 0;
    }

    .map-card iframe{
        min-height:350px;
    }
}

@media(max-width:576px){

    .contact-info-card,
    .contact-form-card,
    .map-card{
        padding:25px;
    }

    .section-header h2{
        font-size:30px;
    }
}

/* ===================================
   JOURNAL SECTION
=================================== */

.journal-section{
    background:#f8fafc;
}

.journal-heading{
    max-width:750px;
    margin:auto;
    margin-bottom:60px;
}

.journal-badge{
    display:inline-block;
    padding:10px 22px;
    border-radius:50px;

    background:rgba(11,110,79,.1);
    color:#0B6E4F;

    font-size:13px;
    font-weight:700;
    letter-spacing:1px;
}

.journal-heading h2{
    margin-top:18px;
    font-size:42px;
    font-weight:800;
    color:#0F172A;
}

.journal-heading p{
    color:#64748B;
    line-height:1.8;
}

/* CARD */

.journal-card{
    background:#fff;
    border-radius:24px;

    overflow:hidden;

    height:100%;

    transition:.35s;

    box-shadow:
    0 10px 30px rgba(0,0,0,.05);
}

.journal-card:hover{

    transform:translateY(-10px);

    box-shadow:
    0 20px 50px rgba(0,0,0,.10);
}

.journal-image{
    height:220px;
    overflow:hidden;
}

.journal-image img{
    width:100%;
    height:100%;
    object-fit:cover;

    transition:.5s;
}

.journal-card:hover img{
    transform:scale(1.08);
}

.journal-body{
    padding:30px;
}

.journal-icon{
    width:60px;
    height:60px;

    border-radius:16px;

    background:linear-gradient(
        135deg,
        #0B6E4F,
        #0A4F8A
    );

    display:flex;
    align-items:center;
    justify-content:center;

    color:#fff;
    font-size:24px;

    margin-bottom:20px;
}

.journal-body h4{
    font-size:22px;
    font-weight:700;
    color:#0F172A;

    margin-bottom:15px;
}

.journal-body p{
    color:#64748B;
    line-height:1.8;

    min-height:90px;
}

.journal-btn{
    display:inline-flex;
    align-items:center;

    padding:12px 24px;

    border-radius:50px;

    text-decoration:none;

    background:linear-gradient(
        135deg,
        #0B6E4F,
        #0A4F8A
    );

    color:#fff;
    font-weight:600;

    transition:.3s;
}

.journal-btn:hover{
    color:#fff;
    transform:translateY(-2px);
}