html,
body {
    margin: 0;
    font-size: 100%;
    scroll-behavior: smooth;
    font-family: 'Josefin Sans' !important;
    padding:0 !important;
}

:root {
    --main-color: #A3423C;
    --sub-text-color:#555555;
    --red-color: #A3423C;
    --second-color:#FFFCF7;
    --yellow-color:#EAB942;
    --blue-color:#3376BA;
    --footer-black:#1F1F1F;
    --silk-color:#FFF5E1;
    --fa-family-classic: "Font Awesome 6 Free";
}

/* Focus indicators for accessibility */
:focus-visible {
    outline: 2px solid var(--main-color);
    outline-offset: 2px;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
    outline: 2px solid var(--main-color);
    outline-offset: 2px;
}
.text-audio{
    font-size: 1rem;
}

#nav-row {
    position: sticky !important;
    top: 0;
    z-index: 1001;
    /* From https://css.glass */
    background: rgba(255, 255, 255, 0.536);
    backdrop-filter: blur(5px);
    -webkit-backdrop-filter: blur(5px);
}

.text-main{
    color:var(--main-color)
}

.text-second{
    color:var(--sub-text-color)
}

.text-gray-soft{
    color:rgba(51, 51, 51, .5) !important;
}

.btn-bullet{
    width:50px;
    height:50px;
}

.btn-bullet i{
    font-size: 22px;
}

.ls-4{
    letter-spacing: 3px;
}

.btn-custom{
    background-color: var(--main-color) !important;
    text-transform: uppercase;
    letter-spacing: 3px;
    color:white !important;
    border-radius: 0px !important;
    padding:17px 24px 15px 24px !important;
    text-decoration: none;
    transition: .5s
}

.btn-custom:hover, .btn-custom-outline:hover, .btn-grey-outline:hover{
    background-color: black !important;
    color:white !important;
    transition: .5s;
}

.btn-custom-outline{
    background-color: white !important;
    border: 1px solid var(--main-color)  !important;
    color: var(--main-color)  !important;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding:17px 24px 15px 24px  !important;
    text-decoration: none;
    transition: .5s;
    border-radius: 0px !important;
}

.btn-grey-outline{
    background-color: white !important;
    border: 1px solid var(--sub-text-color)  !important;
    color: var(--sub-text-color)  !important;
    text-transform: uppercase;
    letter-spacing: 3px;
    padding:17px 24px 15px 24px  !important;
    text-decoration: none;
    transition: .5s;
    border-radius: 0px !important;
}

.overflow-7{
    display: -webkit-box;
    -webkit-line-clamp: 7;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.overflow-3{
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.overflow-2{
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.overflow-1{
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}

.list-style-none{
    list-style: none;
}

.nav-area {
    background: var(--main-color);
}

.logo{
    width:50%;
}

.nav-menu{
    width: 75%;
    justify-content: space-between;
    list-style: none;
    position: relative;
}

.nav-menu li {
    position: relative;
}

.has-dropdown {
    position: relative;
}

.dropdown-menu-custom {
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    list-style: none;
    padding: 15px 0;
    margin: 0;
    min-width: 200px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
}

.has-dropdown:hover .dropdown-menu-custom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu-custom li {
    padding: 0;
}

.dropdown-menu-custom li a {
    display: block;
    padding: 5px 25px;
    color: black !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.dropdown-menu-custom li a:hover {
    background: var(--second-color);
    color: var(--main-color) !important;
    padding-left: 30px;
}

/* Chevron Animation */
.has-dropdown > a i {
    transition: transform 0.3s ease;
}

.has-dropdown:hover > a i {
    transform: rotate(180deg);
}

.input-cont ::placeholder {
    color: #0000004D !important;
    opacity: .3; /* supaya tidak transparan */ 
}

/* Search Dropdown Styles */
.search-dropdown {
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    width: 75vw;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 999;
}

.search-article {
    width:75vw;
}

.search-dropdown.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-article.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.search-dropdown form{
    border: none;
    padding: 8px 30px;
    margin: 0 7vw;
    max-width: 100%;
    position: relative;
    border-bottom: 1px solid var(--sub-text-color);
    background: #fff;
}

.search-article form{
    border: none;
    padding: 8px 30px;
    margin: 0 7vw;
    max-width: 100%;
    border-bottom: 1px solid var(--sub-text-color);
}

.search-dropdown form::after{
    content: "";
    position: absolute;
    right: -24px;
    top: 51%;
    height: 50%;
    width: 25px;
    border-right: 1px solid var(--sub-text-color);
    border-bottom: 1px solid var(--sub-text-color);
    border-radius: 0 0 25px 0;
}

.search-dropdown input, .search-article input{
    font-size: 17px;
    color: var(--sub-text-color);
    width: 100%;
    background: transparent;
}

.search-dropdown input::placeholder, .search-article input::placeholder{
    color: var(--sub-text-color);
}

/* Search Results */
.search-results {
    max-height: 420px;
    overflow-y: auto;
    background: #fff;
    margin: 0 7vw;
    padding-bottom: 8px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,.08);
    position: relative;
}

.search-results:empty {
    display: none;
}

.search-results-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px 10px;
    border-bottom: 1px solid #eee;
}

.search-results-header .search-results-count {
    font-size: 12px;
    color: #999;
}

.search-results .search-category {
    padding: 14px 0 6px;
}

.search-results .search-category-title {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    text-transform: uppercase;
    color: var(--main-color, #3376BA);
    letter-spacing: 1.5px;
    margin-bottom: 4px;
    font-weight: 700;
}

.search-results .search-category-title i {
    font-size: 13px;
}

.search-results .search-category-count {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 18px;
    height: 18px;
    padding: 0 5px;
    font-size: 10px;
    font-weight: 600;
    color: #fff;
    background: var(--main-color, #3376BA);
    border-radius: 9px;
    margin-left: 6px;
}

.search-results .search-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 12px;
    margin: 2px 0;
    text-decoration: none;
    color: #333;
    border-radius: 8px;
    transition: background .2s ease, transform .15s ease;
}

.search-results .search-item:hover {
    background: #f5f5f5;
    transform: translateX(2px);
}

.search-results .search-item-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    background: #f0f0f0;
    color: #666;
    font-size: 14px;
    margin-top: 2px;
    transition: background .2s ease, color .2s ease;
}

.search-results .search-item:hover .search-item-icon {
    background: var(--main-color, #3376BA);
    color: #fff;
}

.search-results .search-item-body {
    flex: 1;
    min-width: 0;
}

.search-results .search-item-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
    color: #222;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.search-results .search-item:hover .search-item-title {
    color: var(--main-color, #3376BA);
}

.search-results .search-item-excerpt {
    font-size: 12px;
    color: #888;
    margin-top: 2px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.4;
}

.search-results .search-item-meta {
    font-size: 11px;
    color: #aaa;
    margin-top: 3px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.search-results .search-item-meta i {
    font-size: 10px;
}

.search-results .search-item-arrow {
    flex-shrink: 0;
    color: #ccc;
    font-size: 12px;
    align-self: center;
    transition: color .2s ease, transform .15s ease;
}

.search-results .search-item:hover .search-item-arrow {
    color: var(--main-color, #3376BA);
    transform: translateX(3px);
}

.search-results .search-empty,
.search-results .search-loading {
    padding: 32px 0;
    text-align: center;
    color: #999;
    font-size: 14px;
}

.search-results .search-empty i,
.search-results .search-loading i {
    display: block;
    font-size: 28px;
    margin-bottom: 10px;
    color: #ccc;
}

.search-mobile .search-results {
    margin: 0;
    max-height: 60vh;
    padding: 0 12px 8px;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 6px 16px rgba(0,0,0,.06);
}

.search-results::-webkit-scrollbar {
    width: 5px;
}

.search-results::-webkit-scrollbar-track {
    background: transparent;
}

.search-results::-webkit-scrollbar-thumb {
    background: #ddd;
    border-radius: 3px;
}

.search-results::-webkit-scrollbar-thumb:hover {
    background: #bbb;
}

.search-results-cancel {
    position: sticky;
    bottom: 8px;
    display: flex;
    justify-content: center;
    padding: 8px 0 4px;
    background: linear-gradient(to bottom, transparent, #fff 40%);
    pointer-events: none;
}

.search-results-cancel .btn-cancel {
    pointer-events: all;
    font-size: 13px;
    padding: 6px 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,.12);
}

/* Search History */
.search-history {
    padding: 14px 20px 8px;
}

.search-history-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 10px;
    margin-bottom: 2px;
}

.search-history-header span {
    font-size: 12px;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.search-history-header button {
    font-size: 12px;
    color: #999;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
}

.search-history-header button:hover {
    color: var(--main-color, #3376BA);
}

.search-history-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 8px;
    cursor: pointer;
    border-radius: 6px;
    transition: background .15s ease;
}

.search-history-item:hover {
    background: #f5f5f5;
}

.search-history-item i.history-icon {
    font-size: 14px;
    color: #bbb;
    flex-shrink: 0;
}

.search-history-item span {
    flex: 1;
    font-size: 14px;
    color: #333;
    text-align: left;
}

.search-history-item .history-remove {
    font-size: 12px;
    color: #ccc;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px 6px;
    border-radius: 4px;
    opacity: 0;
    transition: opacity .15s ease, color .15s ease;
}

.search-history-item:hover .history-remove {
    opacity: 1;
}

.search-history-item .history-remove:hover {
    color: #e74c3c;
}

.search-dropdown input:focus, .search-article input:focus{
    outline: none;
}

.search-dropdown i, .search-article i{
    font-size: 18px;
}

.px-7v{
    padding: 0 7vw !important;
}

.nav-menu a{
    text-decoration: none;
    color:black;
}

.nav-menu .active a{
    color:var(--main-color);
}

.box-img{
    height:50vh;
}

.sub-text{
    color:var(--sub-text-color);
}

.desc-text{
    font-family: 'Cormorant Garamond' !important;
    font-size: 1.25rem;
    line-height: 30px;
}
h3.desc-text{
    font-size: 1.75rem;
    line-height: 1.3;
}

.bg-artikel{
    background-color: var(--second-color);
}

.nav-link {
    color: var(--sub-text-color) !important;
    padding-left: 20px;
    padding-right: 20px;
    position: relative;
    white-space: nowrap;
}

.nav-item:not(:last-child) .nav-link::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 30%; /* atur tinggi border di sini */
    width: 1px;
    background: var(--sub-text-color);
}

.nav-item:first-child .nav-link {
    padding-left: 0;
}

.nav-item:last-child .nav-link {
    padding-right: 0;
}

.nav-pills .nav-link.active,
.nav-pills .show > .nav-link {
    background: transparent !important;
}

/* #pills-tab {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    -ms-overflow-style: none;
} */

/* #pills-tab::-webkit-scrollbar {
    display: none;
} */

.thumbnail-art{
    height:150px;
}

.thumbnail-art-2{
    height:110px;
}

.thumbnail-art-default, .thumbnail-art-default-2{
    background: var(--red-color);
    color: var(--silk-color);
}

.thumbnail-art-default h6{
    font-size: 8px;
}

.thumbnail-art-default-2 h6{
    font-size: 8px;
}


.col-md-4:nth-child(even) .thumbnail-art-default{
    background: var(--footer-black) !important;
}

article:nth-child(even) .thumbnail-art-default-2 {
    background: var(--footer-black) !important;
}

.thumbnail-mag{
    background: var(--red-color);
    height:180px;
    color: var(--silk-color);
}

.thumbnail-mag h6{
    font-size: 10px;
}

.thumbnail-mag p{
    font-size: 7px;
}

.col-md-6:nth-child(even) .thumbnail-mag {
    background: var(--footer-black) !important;
}

.page-link{
    background-color: transparent !important;
    border:none !important;
    color: black !important;
}

.page-link{
    border-top: 3px solid transparent !important;
}

.page-link.active{
    color: var(--main-color) !important;
    border-top: 3px solid var(--main-color) !important;
}

.text-tagline{
    font-size: 96px;
    font-weight: 300;
    left:-10%;
}
.text-tagline2{
    font-size: 96px;
    font-weight: 300;
    right:-10%;
}
.text-tagline3{
    font-size: 96px;
    font-weight: 300;
}


  .text-tagline4 {
    font-size: 56px;
    font-weight: 300;
    line-height: 1.2;
    color:white;
    text-transform: uppercase;
    letter-spacing: -0.02em;
  }

  .tagline-wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .tagline-part-left {
    width: 50%;
    align-self: flex-start;
    text-align: left;
    /* NO overflow clamp — JS handles the split */
  }

  .tagline-part-right {
    width: 50%;
    align-self: flex-end;
    text-align: right;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  /* Resize demo */
  .resize-demo {
    width: 100%;
    max-width: 1200px;
    background: #1a1a1a;
    border: 1px solid #2a2a2a;
    border-radius: 8px;
    padding: 24px;
    resize: horizontal;
    overflow: auto;
    min-width: 300px;
  }
  .demo-label {
    color: #555;
    font-size: 11px;
    font-family: monospace;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }

.box-tagline{
    width:123px;
    height: 123px;
    background-color: var(--yellow-color);
    right:-10%;
    top:0;
}

.box-tagline2{
    width:123px;
    height: 123px;
    background-color: var(--blue-color);
}

.box-tagline3{
    width:123px;
    height: 123px;
    background-color: var(--blue-color);
    bottom:10%;
    left: 10%;
}

.box-tagline4{
    width:123px;
    height: 123px;
    background-color: var(--red-color);
}

.box-tagline5{
    width:123px;
    height: 123px;
    background-color: var(--blue-color);
}

.box-tagline6{
    width:123px;
    height: 123px;
    background-color: var(--yellow-color);
}

.box-tagline7{
    width:123px;
    height: 123px;
    background-color: var(--red-color);
}

.konten-bod{
    width:240px;
}

.konten-bod:nth-child(even) {
    margin-top: 3rem !important; /* mt-5 = 3rem */
    padding-top: 1rem !important; /* pt-3 = 1rem */
}

.bod-box {
    width: 100%;
    height: 300px;
    overflow: visible;
}

.inner-box {
    width: 230px;
    height: 230px;
    border-radius: 0 0 100% 0;
    overflow: visible;
}

/* Pattern berulang setiap 4 konten-bod */
.konten-bod:nth-child(4n+1) .inner-box {
    background-color: var(--blue-color); /* 1, 5, 9... */
}

.konten-bod:nth-child(4n+2) .inner-box {
    background-color: var(--yellow-color); /* 2, 6, 10... */
}

.konten-bod:nth-child(4n+3) .inner-box {
    background-color: var(--red-color); /* 3, 7, 11... */
}

.konten-bod:nth-child(4n+4) .inner-box {
    background-color: var(--footer-black); /* 4, 8, 12... */
}

.bod-box img {
    height: 280px;
    left: -10%;
    clip-path: ellipse(150% 150% at -20% -20%);
}

.slick-next:hover{
    opacity: 1!important;
}

.covermag{
    width: 60%;
}

footer{
    background:var(--footer-black);
    font-family: 'DM Sans';
}

footer img{
    width:100%;
}

footer p{
    font-size: 1rem;
}

.contact-us a{
    text-decoration: none !important;
}

.contact-us {
    position: relative;
}

.contact-us a {
    display: inline-flex;
    align-items: center;
    overflow: hidden;
}

.contact-us i {
    display: inline-block;
    transition: none;
}

.contact-us:hover i {
    animation: flyRightBack 0.8s ease-in-out forwards;
}

@keyframes flyRightBack {
    0% {
        transform: translateX(0);
        opacity: 1;
    }
    40% {
        transform: translateX(100px);
        opacity: 0;
    }
    41% {
        transform: translateX(-10px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Sidebar Styles */
.sidebar-menu {
    position: fixed;
    top: 0;
    left: -100%;
    width: 300px;
    height: 100vh;
    background: var(--main-color);
    z-index: 9999;
    transition: left 0.3s ease;
    overflow-y: auto;
}

.sidebar-menu.active {
    left: 0;
}

.sidebar-header {
    background: rgba(0, 0, 0, 0.1);
    color: white;
}

.sidebar-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-nav li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.sidebar-nav li a {
    display: block;
    padding: 15px 25px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sidebar-nav li.active a,
.sidebar-nav li a:hover {
    background: rgba(0, 0, 0, 0.2);
    padding-left: 35px;
}

/* Dropdown Mobile */
.has-dropdown-mobile .dropdown-mobile {
    list-style: none;
    padding: 0;
    margin: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: rgba(0, 0, 0, 0.15);
}

.has-dropdown-mobile.active .dropdown-mobile {
    max-height: 500px;
}

.has-dropdown-mobile .dropdown-mobile li a {
    padding-left: 45px;
    font-size: 14px;
}

.has-dropdown-mobile > a i {
    transition: transform 0.3s ease;
}

.has-dropdown-mobile.active > a i {
    transform: rotate(180deg);
}

/* Sidebar Overlay */
.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9998;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Sidebar Search */
.sidebar-search input::placeholder {
    color: rgba(255, 255, 255, 0.7);
}

.sidebar-search input {
    color: white;
}

.search-mobile {
    position: sticky;
    top: 0;
    z-index: 998;
}


.search-mobile form {
    border: none;
    padding: 8px 30px;
    margin: 0 7vw;
    max-width: 100%;
    position: relative;
    border-bottom: 1px solid var(--sub-text-color);
}

.search-mobile form::after {
    content: "";
    position: absolute;
    right: -24px;
    top: 51%;
    height: 50%;
    width: 25px;
    border-right: 1px solid var(--sub-text-color);
    border-bottom: 1px solid var(--sub-text-color);
    border-radius: 0 0 25px 0;
}

.search-mobile input {
    font-size: 16px;
    color: var(--sub-text-color);
}

.search-mobile input::placeholder {
    color: var(--sub-text-color);
    opacity: 0.7;
}

.search-mobile input:focus {
    outline: none;
}

.sidebar-search {
    display: none !important;
}

.half-red {
    width: 20%;
    bottom: -150%;
    right: 0;
    transform: translate(0, -150%);
    z-index: -1;
}

.half-red2 {
    width: 20%;
    top: 0;
    transform: scaleX(-1);
}

.half-yellow {
    width: 20%;
    right: 5%;
    top: -25%;
    transform: scaleX(-1);
}

.half-yellow2 {
    width: 30%;
    right: 10%;
    position: relative;
    z-index: 2;
}


.half-yellow3 {
    width: 60%;
    position: relative;
}

.quotes-banner{
    background: url(../img/quotes-banner.webp) center no-repeat;
    background-size: cover;
    height: 100%;
}

.border-start-cst {
    border-left: 1px solid var(--blue-color) !important;
}

.grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.grid-item {
    background: #f2f2f2;
    height:280px;
}

/* Tablet */
@media (max-width: 768px) {
    .grid-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

.td-border-half {
    position: relative;
    padding: 12px 20px;
}

/* Border kiri */
.td-border-half::before,
.td-border-half::after {
    content: "";
    position: absolute;
    top: 30%;          /* biar tinggi cuma 50% */
    height: 35%;
    width: 1px;
    background-color: var(--sub-text-color); /* warna border */
}

/* Kiri */
.td-border-half::before {
    left: 0;
}

/* Kanan */
.td-border-half::after {
    right: 0;
}

#video-banner{
    height: calc(100vh - var(--nav-height, 90px));
}
#gambar-banner{
    height: calc(100vh - var(--nav-height, 90px));
}
.list-audio:nth-child(even) {
    margin-left: auto !important;
}

.photobox{
    height:200px;
}

/* Share Widget Styles - Position below button */
.share-widget,.share-widget2 {
    position: absolute;
    top: calc(100% + 10px); /* 10px di bawah button */
    left: 0;
    background: #2c2c2c;
    border-radius: 12px;
    padding: 10px;
    width: 200px;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.share-widget.active, .share-widget2.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.share-content {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.share-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: transparent;
    border: none;
    color: white;
    padding: 10px 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s ease;
    text-align: left;
    width: 100%;
}

.share-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.share-item i {
    font-size: 18px;
    width: 20px;
}

.share-item span {
    font-size: 14px;
}

/* Share Overlay - Optional, bisa dihilangkan jika tidak perlu */
.share-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.share-overlay.active {
    opacity: 1;
    visibility: visible;
}

.title-gallery{
    font-size: 44px;
}

.profilepic{
    width: 45px;
    height: 45px;
    background-color: var(--sub-text-color);
}

.profilepic2{
    width: 45px;
    height: 45px;
    background-color: var(--sub-text-color);
}

.audio-player {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  /* ── PROGRESS BAR ROW ── */
  .progress-row {
    display: flex;
    align-items: center;
  }

  /* ── TIME ROW ── */
  .time-row {
    display: flex;
    justify-content: space-between;
  }

  .time {
    color: #aaa;
    letter-spacing: 0.5px;
    white-space: nowrap;
    user-select: none;
  }

  .progress-track {
    flex: 1;
    height: 3px;
    background: #444;
    border-radius: 2px;
    position: relative;
    cursor: pointer;
  }

  .progress-track:hover { height: 5px; }
  .progress-track { transition: height 0.15s ease; }

  .progress-fill {
    height: 100%;
    background: #e03030;
    border-radius: 2px;
    position: relative;
    pointer-events: none;
  }

  /* Thumb dot — muncul saat hover */
  .progress-thumb {
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%) scale(0);
    transition: transform 0.15s ease;
    pointer-events: none;
  }

  .progress-track:hover .progress-thumb {
    transform: translateY(-50%) scale(1);
  }

  /* ── CONTROLS ROW ── */
  .controls-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
  }

  .ctrl-btn {
    background: none;
    border: none;
    cursor: pointer;
    color: #aaa;
    padding: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.15s ease;
    line-height: 1;
  }

  .ctrl-btn:hover { color: #fff; }

  .ctrl-btn svg {
    width: 16px;
    height: 16px;
    fill: currentColor;
  }

  .ctrl-btn.play-pause svg {
    width: 18px;
    height: 18px;
  }

/* Two Column Text Layout */
.two-column-text {
    column-count: 2;
    column-gap: 40px;
    text-align: justify;
    line-height: 1.8;
}

.two-column-text p {
    margin-bottom: 20px;
    break-inside: avoid; /* Prevent paragraph break between columns */
}

/* Responsive - Single column di mobile */
@media (max-width: 768px) {
    .two-column-text {
        column-count: 1;
        column-gap: 0;
    }
}

.obj{
    z-index:1000;
}

.donasibox-1,.donasibox-2,.donasibox-3{
    background-color: white;
}

/* Rekening Grid Layout */
.rekening-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0px 40px;
}

.rekening-item h6 {
    font-weight: 600;
    color: #333;
}

.rekening-item p {
    color: var(--sub-text-color);
    font-size: 14px;
}

.rekening-item .border-bottom {
    border-color: rgba(0, 0, 0, 0.1) !important;
}

/* Responsive - 1 column di mobile */
@media (max-width: 768px) {
    .rekening-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

.stripe{
    height: 73px;
    width: 5px;
    background-color: var(--red-color);
    left: -4%;
}

.triangle-shape {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 123px 123px 0 0;
    border-color: #EAB942 transparent transparent transparent;
}

.contact-info {
    max-width: 600px;
}

.contact-item i {
    color: #333;
    width: 50px;
    text-align: center;
}

.contact-item h5 {
    font-size: 20px;
    font-weight: 400;
    color: #333;
}

.contact-item p,
.contact-item .text-muted {
    color: #666;
    font-size: 16px;
}

.box-contact{
    position:relative;
    top:-10%;
}

.iman{
    width: 2%;
}

.logo-audio{
    bottom: -10%;
}

.fund{
    display: inline;
}

.area-triangle{
    position: relative !important;
}

.area-donasi{
    background-color: white;
}

.bg-kontak{
    background-color: white;
}

.w-85{
    width: 85% !important;
}

/* Responsive */
/* Ultra Wide Monitor */
@media (max-width: 1780px) {
    
}

/* 1366 x 768 - Laptop Standard */
@media (max-width: 1366px) {
    
}

/* 1280 x 780 - Small Laptop */
@media (max-width: 1280px) {
    .text-tagline3 {
        font-size: 76px;
    }
    .inner-box {
        width: 180px;
        height: 180px;
    }
    .bod-box, .bod-box img {
        height: 220px;
    }
    footer{
        font-size: 14px;
    }
}

@media (max-width: 1280px) and (max-height: 800px) {
    .half-red {
        width: 20%;
        right: 0;
    }
    .thumbnail-mag {
        height: 160px;
    }
    .thumbnail-art-2 {
        height: 100px;
    }
}

/* 1151 x 600 */
@media (max-width: 1151px) {
    
}

/* 1080 x 576 */
@media (max-width: 1025px) {
    .thumbnail-art-2 {
        height: 85px;
    }
    .logo-audio{
        bottom: -3%;
    }
    .donate{
        top: -5% !important;
    }
    .thumbnail-mag {
        height: 160px;
    }
    .half-yellow {
        top: -15%;
    }
    .text-tagline3 {
        font-size: 56px;
    }
    .title-gallery {
        font-size: 37px;
    }
    .half-red {
        width: 20%;
        right: 0;
    }
    .text-tagline, .text-tagline2 {
        font-size: 76px;
    }
    .box-tagline, .box-tagline2, .box-tagline3, .box-tagline4, .box-tagline5, .box-tagline6, .box-tagline7{
        height:100px;
        width:100px;
    }
    .grid-item {
        height: 180px;
    }
}

@media (max-width: 1025px) and (max-height: 600px) {
    .thumbnail-art{
        height: 125px;
    }
    .half-red {
        width: 20%;
        right: 0;
    }
    .nav-menu a{
        font-size: 12px;
    }
    .donate{
        top: -5%;
    }
}

/* Tablet & Mobile Breakpoint */
@media (max-width: 992px) {
    p{
        font-size: 1.25rem;
    }
    .desc-text li{
        font-size: 1.25rem;
    }
    #hero-download{
        display: none;
    }
    #searchArticleContent{
        display: none;
    }
    .nav-area {
        width: 100vw;
        justify-content: flex-start !important;
    }
    
    .logo {
        width: 80px !important;
    }

    .thumbnail-art {
        height: 110px;
    }
    .text-tagline {
        font-size: 60px;
        left: -20%;
    }
    .text-tagline2 {
        font-size: 60px;
        right: -20%;
    }
    .box-tagline, .box-tagline2, .box-tagline3, .box-tagline4, .box-tagline5, .box-tagline6, .box-tagline7 {
        width: 100px;
        height: 100px;
    }
    .covermag{
        width:100%;
    }
    footer img {
       display: none;
    }
    .half-red {
        width: 22%;
        right: 0;
    }
}

@media (max-width: 920px) {
    .logo-audio{
        bottom: -3%;
    }
    .donate{
        top: -3.5% !important;
    }
    .sudden-tagline{
        font-size: 25px;
        font-weight: 400;
    }
    .title-gallery {
        font-size: 22px;
    }
    .thumbnail-mag {
        height: 150px;
    }
    .half-yellow {
        right: 0%;
        top: -15%;
    }
    #gambar-banner {
        height: calc(40vh - var(--nav-height, 90px));
    }
    #gambar-banner .position-relative{
        bottom: -12% !important;
    }
    .share-widget2 {
        right: 25%;
    }
}

@media (max-width: 860px) {
    .logo-audio {
        bottom: -4%;
    }
    .half-yellow2 {
        width: 20%;
        right: 5%;
    }
    .donate{
        top: -3.5%;
    }
    .sudden-tagline{
        font-size: 20px;
    }
    .share-widget2 {
        right: 0%;
    }
    .photobox {
        height: 170px;
    }
    .thumbnail-mag {
        height: 150px;
    }
    .title-gallery {
        font-size: 27px;
    }
    .text-tagline {
        left: -10%;
    }
    .text-tagline2 {
       right : -10%;
    }
    .half-red {
        width: 19%;
        right: 0;
        bottom: 0%;
        transform: translate(0, -50%);
    }
    .btn-custom, .btn-custom-outline, .btn-grey-outline {
        padding: 12px 13px 10px 13px !important;
        font-size: 13px !important;
    }
    .half-yellow {
        top: -15%;
    }
}

/* 780 x 487 */
@media (max-width: 780px) {
    .area-triangle{
        display: none;
    }
    .triangle-shape{
        border-width: 30px 30px 0 0;
    }
}

/* Tablet Portrait */
@media (max-width: 768px) {
    .quotes-banner {
        background: url(../img/quotes-banner.webp) center no-repeat;
        background-size: cover;
        height: 50vh;
    }
    footer img {
       display: block;
        width: 15%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -10%);
        position: relative;
    }
    .logo {
        width: 100px !important;
    }
    .desc-text {
        line-height: normal;
    }
    .text-tagline {
        font-size: 46px;
        left: -6%;
    }
    .text-tagline2 {
        font-size: 46px;
        right: -6%;
    }
    .box-tagline, .box-tagline2, .box-tagline3, .box-tagline4, .box-tagline5, .box-tagline6, .box-tagline7 {
        width: 91px;
        height: 91px;
    }
    .btn-custom, .btn-custom-outline, .btn-grey-outline {
        padding: 9px 10px 7px 10px !important;
        font-size: 13px !important;
    }
    footer {
        font-size: 14px;
    }
    .konten-bod:nth-child(even) {
        margin-top: 0rem !important;
        padding-top: 0rem !important;
    }
    .thumbnail-art {
        height: 100px;
        width: 100%;
    }
    .jadwal-tabel{
        text-align: center;
    }
    .jadwal-tabel p{
        padding:10px 0px 30px 0px;
    }
    .inner-box {
        width: 130px;
        height: 130px;
    }
    .bod-box, .bod-box img {
        height: 160px;
    }
    .covermag {
        width: 80%;
        margin-bottom: 20px;
    }
    #magazine{
        text-align: center;
    }

    #magazine .btn-grey-outline{
        margin-top:20px;
    }
    footer{
        text-align: center;
    }
    footer .sub-footer{
        text-align: start;
    }
    .half-red {
        width: 20%;
        right: 0;
    }
}

@media (max-width: 668px) {
    .half-red {
        width: 30%;
        right: 0;
    }
    .donasibox-1{
        background-color: #F8F8F8;
    }
    .fund{
        display: block;
        padding:20px 0;
    }
    .donasibox-3{
        background-color: transparent;
    }
    .bg-kontak{
        background-color: transparent;
    }
}

@media (max-width: 640px) {
    .text-tagline {
        font-size: 36px;
        left: -10%;
    }
    .text-tagline2 {
        font-size: 36px;
        right: -10%;
    }
    .box-tagline, .box-tagline2, .box-tagline3, .box-tagline4, .box-tagline5, .box-tagline6, .box-tagline7 {
        width: 60px;
        height: 60px;
    }
    .box-tagline{
        top: unset;
        bottom: 0;
        left: -10%;
    }
    .covermag {
        width: 40%;
    }
    .search-mobile form::after {
        top: 72%;
        height: 30%;
    }
    .half-red {
        width: 25%;
        right: 0;
    }
}

/* Large Phone Landscape */
@media (max-width: 576px) {
    .thumbnail-art-2 {
        height: 109px;
    }
    .thumbnail-art-2 img{
        width:25% !important;
    }
    .donate {
        top: -8.5% !important;
    }
    .share-widget2 {
        right: 30%;
    }
    #gambar-banner {
        height: calc(60vh - var(--nav-height, 90px));
    }
    .thumbnail-mag {
        height: 200px;
    }
    .grid-item {
        height: 150px;
    }
    .iman{
        width: 5%;
    }
    .text-tagline3 {
        font-size: 40px;
    }
    .half-yellow3 {
        width: 40%;
        bottom: -190%;
    }
    .jadwal-tabel h3, .jadwal-tabel p {
        text-align: center;
        margin-bottom: 15px !important;
    }
    .text-tagline, .text-tagline2 {
        font-size: 47px !important;
    }
    .text-tagline {
        left: -4% !important;
    }
    .text-tagline2 {
        right: -4% !important;
    }
    .box-tagline, .box-tagline2, .box-tagline3, .box-tagline4, .box-tagline5, .box-tagline6, .box-tagline7 {
        width: 81px;
        height: 81px;
    }
    .box-tagline {
        bottom: 0 !important;
        left: -10% !important;
        top: unset !important;
    }
    .konten-bod:nth-child(even) {
        margin-top: 0rem !important;
        padding-top: 0rem !important;
    }
    .covermag {
        width: 40%;
    }
    .konten-majalah h3, .konten-majalah p, .radio h3, .radio p, .radio small {
        text-align: center !important;
        margin: 5px 0;
        justify-content: center;
        display: flex;
    }
    .slick-next {
        top: 25% !important;
        right: 3% !important;
    }
    .slick-prev {
        top: 25% !important;
        left: 3% !important;
    }
    .box-tagline2 {
        left: 82% !important;
    }

    .box-tagline3 {
        bottom: 20%;
        left: 0% !important;
    }
    .half-red {
        width: 25%;
        right: 0;
    }
}

@media (max-width: 451px) {
    .half-yellow3 {
        width: 35%;
        bottom: -318%;
        position: relative;
    }
    .text-p-gallery{
        font-weight: 300;
        font-size: 16px;
    }
    .title-gallery {
        font-size: 23px;
    }
    .text-tagline, .text-tagline2 {
        font-size: 30px !important;
    }
    .text-tagline, .box-tagline {
        left: -1% !important;
    }
    .text-tagline2 {
        right: -1% !important;
    }
    .box-tagline, .box-tagline2, .box-tagline3, .box-tagline4, .box-tagline5, .box-tagline6, .box-tagline7 {
        width: 61px;
        height: 61px;
    }
    .slider {
        right: unset;
    }
    .inner-box{
        left:40%;
    }
    .half-red {
        width: 25%;
        right: 0;
    }
}

@media (max-width: 431px) {
    .inner-box {
        width: 120px;
        height: 120px;
    }
    .text-tagline4 {
        font-size: 40px;
    }
    .sudden-tagline{
        font-size: 20px;
        font-weight: 400;
        line-height: inherit;
    }
    .share-widget2 {
        right: 25%;
    }
    .thumbnail-mag {
        height: 170px;
    }
    .half-yellow3 {
        bottom: -272%;
    }
    .half-red {
        width: 25%;
        right: 0;
    }
    .text-tagline3 {
        font-size: 36px;
    }
    .half-yellow {
        width: 30%;
        right: 0;
        top: -10%;
    }
    .iman{
        width:7%;
    }
    .grid-item {
        height: 130px;
    }
}

@media (max-width: 420px) {
    .logo-audio {
        bottom: -3%;
    }
    .half-yellow2{
        width: 20%;
    }
    .area-donasi{
        background-color: transparent;
    }
    .donate{
        top: -5% !important;
    }
    .share-widget2 {
        right: 24%;
    }
    .thumbnail-mag {
        height: 160px;
    }
    .half-yellow3 {
        bottom: -280%;
    }
    .box-img {
        height: 25vh;
    }
    .thumbnail-art {
        height: 120px;
        width: 80%;
    }
    .text-tagline, .box-tagline {
        left: -8% !important;
    }
    .text-tagline2 {
        right: -8% !important;
    }
    .box-tagline2 {
        left: 84% !important;
    }
    .box-tagline3 {
        left: -6% !important;
    }
    .inner-box {
        left: unset;
    }
    .half-red {
        width: 25%;
        right: 0;
    }
}

@media (max-width: 391px) {
    .half-yellow3 {
        bottom: -307%;
    }
    .half-red {
        width: 25%;
        right: 0;
    }
}

@media (max-width: 384px) {
    .half-red {
        width: 25%;
        right: 0;
    }
}

/* iPhone SE, Small Phones */
@media (max-width: 375px) {
    .box-img {
        height: 30vh;
    }
    .thumbnail-art {
        height: 130px !important;
    }
    .text-tagline, .text-tagline2 {
        font-size: 33px !important;
    }
    .text-tagline {
        left: -5%;
    }
    .text-tagline2 {
        right: -5%;
    }
    .box-tagline, .box-tagline2, .box-tagline3, .box-tagline4, .box-tagline5, .box-tagline6, .box-tagline7 {
        width: 55px;
        height: 55px;
    }
    .box-tagline {
        bottom: 0 !important;
        left: -9% !important;
        top: unset !important;
    }
    .jadwal-tabel h3, .jadwal-tabel p {
        text-align: center;
        margin-bottom: 15px !important;
    }
    .konten-bod:nth-child(even) {
        margin-top: 0rem !important;
        padding-top: 0rem !important;
    }
    .slider {
        right: unset;
    }
    .covermag {
        width: 40%;
    }
    .konten-majalah h3, .konten-majalah p, .radio h3, .radio p, .radio small {
        text-align: center !important;
        margin: 5px 0;
        justify-content: center;
        display: flex;
    }
    #magazine p {
        text-align: center;
    }
    .slick-next {
        top: 25% !important;
        right: 3% !important;
    }
    .slick-prev {
        top: 25% !important;
        left: 3% !important;
    }
    .box-tagline2 {
        left: 85% !important;
    }
    .box-tagline3 {
        left: -15% !important;
    }
    footer img {
        width: 20%;
    }
    footer {
        text-align: center;
        font-size: 14px;
    }
    footer .col-4 {
        margin-top: 20px;
        text-align: start;
    }
    .inner-box {
        width: 180px;
        height: 180px;
    }
    .half-red {
        width: 25%;
        right: 0;
    }
}

@media (max-width: 361px) {
    .inner-box {
        width: 130px;
        height: 130px;
    }
    .thumbnail-mag {
        height: 140px;
    }
    .half-yellow3 {
        bottom: -340%;
    }
    .half-red {
        width: 25%;
        right: 0;
    }
}

@media (max-width: 345px) {
    .thumbnail-art {
        height: 105px !important;
    }
    .donate {
        top: -3% !important;
    }
    .sudden-tagline{
        font-size: 15px;
    }
    .share-widget2 {
        right: 18%;
    }
    /* Previous → Prev */
    .pagination .page-item:first-child .page-link {
        font-size: 0;
    }
    .pagination .page-item:first-child .page-link::after {
        content: "Prev";
        font-size: 14px;
        vertical-align: middle;
        margin-right: 0.25rem;
    }
    .pagination .page-item:first-child .page-link i.mdil {
        font-size: 14px;
    }

    /* Next → Nex (urutan: Nex >) */
    .pagination .page-item:last-child .page-link {
        font-size: 0;
    }
    .pagination .page-item:last-child .page-link::before {
        content: "Next";
        font-size: 14px;
        vertical-align: middle;
        margin-right: 0.25rem;
    }
    .pagination .page-item:last-child .page-link i.mdil {
        font-size: 14px;
    }
    .half-red {
        width: 25%;
        right: 0;
    }
    .inner-box {
        width: 95px;
        height: 95px;
    }
    .bod-box img {
        height: 130px;
    }
}

/* Very Small Phones */
@media (max-width: 320px) {
    
}

/*--//Responsive--*/