/* Style Publikasi */

* {
    font-family: 'Poppins', sans-serif;
}

.publikasi-section {
    position: relative;
    height: 410px;
    display: flex;
    align-items: center;
    /* Vertikal center */
    justify-content: center;
    /* Horizontal center */
    overflow: visible;
}

.publikasi-section .bg-img {
    top: 50%;
    left: 50%;
    min-height: 100%;
    min-width: 100%;
    background-size: cover;
    position: absolute;
    inset: 0;
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.4);
    z-index: 1;
    background-position: center center;
}

.publikasi-section .judul {
    position: relative;
    z-index: 2;
    color: white;
    font-size: 4rem;
    font-weight: bold;
    text-align: center;
    font-family: 'Poppins', sans-serif;
}

.logo-banner {
    z-index: 4;
    width: 100px;
    position: absolute;
    bottom: -65px;
    left: 240px;
}

@media (max-width: 1200px) {
    .logo-banner {
        left: 100px;
    }
}

/* Style Berita Terbaru */
.berita-highlight {
    max-width: 900px;
    margin: 60px auto;
    padding: 0 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.berita-image {
    position: relative;
}

.berita-image img {
    width: 100%;
    height: 380px;
    border-radius: none;
    object-fit: cover;
}

.headline {
    max-width: 180px;
    padding: 10px;
    background-color: #F15A24;
    color: white;
    text-align: center;
    position: absolute;
    top: -40px;
    z-index: -1;
    border-radius: 20px 20px 0 0;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
}

.headline-artikel {
    max-width: 180px;
    padding: 10px;
    background-color: #444444;
    color: white;
    text-align: center;
    position: absolute;
    top: -40px;
    z-index: -1;
    border-radius: 20px 20px 0 0;
    font-size: 20px;
    font-family: 'Poppins', sans-serif;
}

.berita-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-family: 'Poppins', sans-serif;
}

.berita-date {
    color: #666;
    font-size: 16px;
    margin: 0;
    font-weight: 500;
    font-family: 'Poppins', sans-serif;
}

.berita-title {
    font-size: 2rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.4;
    color: #000;
    font-family: 'Poppins', sans-serif;
}

.berita-desc {
    font-size: 16px;
    color: #444;
    line-height: 1.6;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    text-align: justify !important;
}

.berita-desc strong {
    font-weight: bold;
    color: #000;
    font-family: 'Poppins', sans-serif;
}

.berita-button-wrapper {
    display: flex;
    justify-content: flex-end;
}

.berita-button {
    background-color: #e27024;
    color: #FFF;
    padding: 10px 20px;
    border: none;
    border-radius: 999px;
    font-size: 14px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.berita-button:hover {
    background-color: #FF6600;
}

/* Style Berita Lainnya */
section h2 {
    text-align: left;
    font-size: 28px;
    font-weight: 500;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
}

.artikel-card {
    background-color: #fff;
    /* border: 2px solid #444444; */
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
}

.artikel-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.artikel-card:hover {
    background-color: #444444;
    color: #fff;
    cursor: pointer;
}

.artikel-card:hover h3,
.artikel-card:hover p,
.artikel-card:hover .berita-footer a,
.artikel-card:hover .berita-footer span {
    color: #fff !important;
}

.berita-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.berita-card {
    background-color: #fff;
    border: 2px solid #F15A24;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    padding: 16px;
}

.berita-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 16px;
}

.berita-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    font-family: 'Poppins', sans-serif;
    color: #000;
}

.berita-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 10px;
    font-family: 'Poppins', sans-serif;
}

.berita-info p {
    font-size: 0.9rem;
    font-weight: 400;
    color: #555;
    margin-bottom: auto;
    font-family: 'Poppins', sans-serif;
}

.berita-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.8rem;
    margin-top: 20px;
    font-family: 'Poppins', sans-serif;
}

.berita-footer p {
    color: #F15A24;
    font-weight: 600;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
}

.berita-card:hover {
    background-color: #F15A24;
    color: #fff;
    border-color: #F15A24;
    cursor: pointer;
}

.berita-card:hover h3,
.berita-card:hover p,
.berita-card:hover .berita-footer a,
.berita-card:hover .berita-footer span {
    color: #fff !important;
}

.galeri-button {
    background-color: #F15A24;
    border: none;
    padding: 10px 30px;
    font-weight: 600;
    border-radius: 10px;
    transition: background 0.3s ease;
}

.galeri-button:hover {
    background-color: #d64e1f;
}


.galeri-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
    cursor: pointer;
}

.galeri-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
}

.galeri-card-index {
    background: white;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.3s;
    cursor: pointer;
}

.galeri-card-index img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.galeri-card:hover {
    transform: translateY(-4px);
}

.h2-title {
    font-size: 16vw;
    font-weight: 800;
    background: linear-gradient(to top, #ffffff 20%, #F15A24 120%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 1;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.h3-title {
    font-size: 4vw;
    font-weight: 700;
    color: #000;
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    text-align: center;
    line-height: 1.2;
    font-family: 'Poppins', sans-serif;
}

.nowrap {
    white-space: nowrap;
}


.title-wrapper {
    position: relative;
    text-align: center;
    margin-bottom: 120px;
}

.title-wrapper-galeri {
    position: relative;
    text-align: center;
    margin-bottom: 60px;
}

.h2-artikel {
    font-size: 14vw;
    font-weight: 800;
    background: linear-gradient(to top, #ffffff 20%, #F15A24 120%);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-transform: uppercase;
    letter-spacing: -2px;
    line-height: 1;
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.h3-artikel {
    font-size: 4vw;
    font-weight: 700;
    color: #000;
    position: absolute;
    top: 85%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    font-family: 'Poppins', sans-serif;
}

.publikasi-text {
    font-weight: 700;
    font-size: 4.5rem;
    /* line-height: auto; */
    letter-spacing: -2px;
    font-family: 'Poppins', sans-serif;
}

.btn-modal {
    padding: 8px 15px;
    border-radius: 25px;
    border: #FFF 4px solid;
    background-color: transparent;
    color: #FFF;
}