    @import "https://fonts.googleapis.com/css2?family=Playfair+Display:wght@700&family=Inter:wght@300;400;500;600&display=swap";
    @import "https://fonts.googleapis.com/icon?family=Material+Icons";
@import "https://fonts.googleapis.com/css2?family=Material+Symbols+Outlined:opsz,wght,FILL,GRAD@20..48,100..700,0..1,-50..200";
    /* --- CSS VARIABLES & RESET --- */ :root {
      --fox-font-size: 14px;
    }
    @media (min-width: 601px) {
      :root {
        --fox-font-size: 16px;
      }
    }
    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    body {
      font-family: 'Inter', sans-serif;
      background-color: var(--fox-bg);
      color: var(--fox-text);
      line-height: 1.6;
      overflow-x: hidden;
      font-size: var(--fox-font-size);
    }
/* Update class khusus untuk Material Symbols */
.material-symbols-outlined {
  font-variation-settings:
  'FILL' 0,
  'wght' 400,
  'GRAD' 0,
  'opsz' 24;
  display: inline-block;
  line-height: 1;
  vertical-align: middle;
}
    .gold-text {
            background: linear-gradient(to right, var(--fox-brand), var(--fox-brand-soft), var(--fox-brand-dark));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 700;
        }	
    details {
      width: 100%;
      border-radius: .5rem;
      background: white;
      overflow: hidden;
      transition: all 0.3s ease;
      margin:  0;
    }
    details[open] {
      padding-bottom: 1rem;
    }
    details > summary {
      padding: 1rem 1.5rem;
      font-size: 1.1rem;
      letter-spacing: 1px;
      cursor: pointer;
      list-style: none;
      color: #222;
/*      border-bottom: 1px solid var(--fox-border);*/
      display: flex;
      align-items: center;
      justify-content: space-between;
    }
    details > summary > i {
      font-size: 2rem;
      transition: transform .35s ease;
    }
    details[open] > summary > i {
      transform: rotate(-90deg);
    }
    details > summary::-webkit-details-marker {
      display: none;
    }
    details .details-content {
      padding: 1rem;
		border-top: 1px solid var(--fox-muted);
    }
    .box {
      background: var(--fox-surface);
      box-shadow: var(--fox-shadow);
      padding: 1rem;
    }
    .fox-bg-blue {
      background: var(--fox-blue-soft);
    }
    .fox-bg-yellow {
      background: var(--fox-gold-soft);
    }
    .fox-bg-green {
      background: var(--fox-green-soft);
    }
    .fox-bg-red {
      background: var(--fox-red-soft);
    }
    .overlay {
      position: fixed;
      top: 0;
      left: 0;
      overflow: hidden;
      background: rgba(0, 0, 0, .7);
      transition: opacity .4s ease;
      opacity: 0;
      z-index: 800;
    }
    .header {
      height: 64px;
      background: var(--fox-surface);
      border-bottom: 2px solid var(--fox-gold);
      display: grid;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
		z-index: 1000;
    }

    .site {
      display: flex;
      align-items: center;
      padding: 0 1rem;
    }
    .sitename {
      font-weight: 800;
      font-size: 1.2rem;
      letter-spacing: -0.5px;
      text-transform: uppercase;
    }
    .navigation {
      height: 64px;
      background: var(--fox-surface);
      display: flex;
      align-items: center;
      justify-content: space-between;
				z-index: 1000;

    }
    .main {
      padding: 4rem 0 0 0;
    }
    section {
      padding-bottom: 2rem;
    }
    .menu {
      display: flex;
      flex-direction: column;
      background: var(--fox-surface);
      box-shadow: var(--fox-shadow);
      padding: 1.5rem 1rem;
      position: fixed;
				z-index: 1100;

    }
    .menu > a {
      text-decoration: none;
      color: var(--fox-text);
      display: flex;
      align-items: center;
      gap: .5rem;
      height: 48px;
      border-bottom: 1px solid var(--fox-border);
      padding: 0 8px;
    }
    .menu > a:last-child {
      border-bottom: none;
    }
    .btn-profile {
      height: 40px;
      width: 40px;
      border-radius: 50%;
      padding: 0;
      overflow: hidden;
      border: 2px solid var(--fox-gold);
    }
    .btn-profile > img {
      width: 40px;
      height: 40px;
      object-fit: cover;
      border-radius: 20px;
    }
    .content {
      display: grid;
      gap: 1rem;
      padding: 1rem 0;
    }
    .content-breadcrumbs {
      box-shadow: var(--fox-shadow);
      padding: 0 1rem;
    }
               /* Container styling disesuaikan ke Fox Design */
        .content-header {
            background: var(--fox-surface);
            padding: 1.6rem;
            border-radius: 12px;
            box-shadow: var(--fox-shadow);
            width: 100%;
            border-top: 4px solid var(--fox-gold); /* Menggunakan warna Fox Gold */
        }

        /* Badge / Mark styling */
        .content-header mark {
            background-color: var(--fox-gold-soft);
            color: var(--fox-yellow-dark);
            padding: 4px 12px;
            border-radius: 4px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 1.5px;
            display: inline-block;
            margin-bottom: 1rem;
            text-transform: uppercase;
        }

        /* Title styling menggunakan Playfair Display */
        .content-header h1 {
            font-family: 'Playfair Display', serif;
            color: var(--fox-text);
            font-size: 2.5rem;
            font-weight: 700;
            margin: 0 0 1.5rem 0;
            line-height: 1.2;
            letter-spacing: -0.01em;
        }

        /* Meta info wrapper */
        .content-header div {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            border-top: 1px solid var(--fox-border);
            padding-top: 1.5rem;
        }

        /* Individual info item */
        .content-header p {
            display: flex;
            align-items: center;
            margin: 0;
            color: var(--fox-text);
            font-size: 0.9rem;
            font-weight: 400;
            opacity: 0.8;
        }

        /* Icon styling */
        .content-header i.material-icons {
            margin-right: 10px;
            font-size: 18px;
            color: var(--fox-gold); /* Icon menggunakan Fox Gold */
        }

        /* Responsive adjustments */
        @media (max-width: 600px) {
            .content-header {
                padding: 1.5rem;
                border-radius: 0;
            }
            .content-header h1 {
                font-size: 1.8rem;
            }
            .content-header div {
                flex-direction: column;
                gap: 0.8rem;
            }
        }  .content-main {}
    .content-sidebar {}
    /* STATE */
.fox-box {
    background: var(--fox-surface);
    border: 1px solid #edf2f7;
    box-shadow: var(--fox-shadow);
    overflow: hidden; /* Supaya header/footer tidak keluar dari border-radius */
    display: flex;
    flex-direction: column;
	padding:0 .5rem;
}

.box-header {
    padding: 1rem  ;
    border-bottom: 1px solid #f1f5f9;
    font-weight: 800;
	letter-spacing:1px;
    color: var(--fox-text);
	font-size:1.1rem;
}
.box-header > * {
	display:flex;
	gap:.25rem;
	align-items:center;

	}
.box-main {
    padding: 1rem  ;
    flex: 1;
    color: #4a5568;
    line-height: 1.6;
}

.box-footer {
    padding: 1rem  ;
    border-top: 1px solid #f1f5f9;
    background: #ffffff;
    font-size: 13px;
    color: #718096;
}  
.fox-hero {
    width: 100%;
    height: 300px; /* Changed from max-height for consistency */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover; /* Fills the area completely */
    
    /* Center the overlay content */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    
    /* Optional: Add a dark overlay so text is readable */
    background-color: rgba(0, 0, 0, 0.4);
    background-blend-mode: overlay;
    color: white;
}
.fox-hero > h1 {
    font-size: 2.5rem;
    font-weight: 800;
    color: #ffffff;
    margin: 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    /* Drop shadow supaya teks terbaca meski background-nya ramai */
    text-shadow: 2px 2px 10px rgba(0, 0, 0, 0.5);
}

.fox-hero > p {
    font-size: 1.1rem;
    color: #f0f0f0;
    max-width: 600px; /* Supaya teks nggak kepanjangan ke samping */
    text-align: center;
    line-height: 1.6;
    margin: 0;
}

.fox-hero > .btn-hero,
.fox-hero > button {
    padding: 0.8rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    background-color: var(--fox-gold); /* Warna khas rubah (orange) */
    color: white;
    border: none;
    border-radius: 50px; /* Tombol membulat biar modern */
    cursor: pointer;
    transition: transform 0.2s ease, background-color 0.3s ease;
    box-shadow: 0 4px 15px rgba(255, 87, 34, 0.3);
}

/* Efek Hover biar interaktif */
.fox-hero > .btn-hero:hover ,
.fox-hero > button:hover {
    background-color: var(--fox-text);
    transform: translateY(-3px); /* Efek melayang sedikit */
    box-shadow: 0 6px 20px rgba(255, 87, 34, 0.4);
	    color: var(--fox-gold); /* Warna khas rubah (orange) */

}
.fox-hero > .btn-hero:active,
.fox-hero > button:active {
    transform: translateY(0);
}
@media (max-width: 600px) {
      .overlay {}
      .header {
        height: 64px;
      }
      .site {}
      .sitename {}
      .navigation {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        box-shadow: var(--fox-shadow);
        padding: 0 1rem;
        border-top: 2px solid var(--fox-gold);
      }
      .navigation > * {
        display: grid;
        place-items: center;
        text-decoration: none;
        color: var(--fox-text);
        width: 48px;
        height: 48px;
      }
      .navigation > * > i {
        font-size: 22px;
        line-height: 1;
      }
      .navigation > * > span {
        text-decoration: none;
        font-weight: bold;
        font-size: .6rem;
        text-overflow: ellipsis;
        overflow-x: hidden;
        white-space: nowrap;
        width: 48px;
        padding: 0 .25rem;
        text-align: center;
      }
      .navigation > .active {
        background: var(--fox-gold);
      }
      .main {}
      .menu {
        bottom: -100%;
        width: 100%;
        transition: bottom .35s ease;
      }
      .menu-active > .menu {
        bottom: 0;
      }
      .menu-active .overlay {
        width: 100%;
        height: 100%;
        opacity: 1;
      }
      .content {
        display: grid;
        gap: 1rem;
      }
      .content-breadcrumbs {
        position: sticky;
        top: 0;
        background: var(--fox-surface);
        padding: 0 1rem;
		  		z-index: 1000;

      }
      .content-header {}
      .content-main {
        display: grid;
        gap: 1rem;
      }
      .content-sidebar {
        display: grid;
        gap: 1rem;
      }
      .mobile-only {
        display: flex;
      }
      .desktop-only {
        display: none;
      }
    }
    @media (min-width: 601px) {
      .overlay {}
      .header {
        grid-template-columns: 1fr auto;
        padding: 0 14vw;
      }
      .site {
        padding: 0;
      }
      .sitename {}
      .navigation {
        height: 60px;
        gap: 1rem;
      }
      .navigation > * {
        display: flex;
        align-items: center;
        text-decoration: none;
        color: var(--fox-text);
        gap: .5rem;
      }
      .main {}
      section {
        padding: 0 14vw 6rem 14vw;
      }
      .menu {
        top: 90px;
        right: 14vw;
        transform: translateX(7vw) scale(0);
        width: 14vw;
        overflow: hidden;
        transition: top .35s ease;
        z-index: 1200;
        border-radius: 1rem;
      }
      .menu > a:hover {
        background: rgba(0, 0, 0, .05);
      }
      .menu-active > .menu {
        top: 72px;
        transform: translateX(7vw) scale(1);
      }
      .menu-active .overlay {
        width: 100%;
        height: 100%;
      }
      .content {
        display: grid;
        grid-template-columns: 1.6fr 1fr;
        gap: 1.5rem;
        padding: 1.5rem 0;
      }
      .content-center {
        display: flex;
        flex-direction: column;
        gap: 1.5rem;
        width: 50rem;
        margin: auto;
      }
      .content-breadcrumbs {
        grid-column: 1/-1;
        position: sticky;
        top: 4rem;
        background: var(--fox-surface);
		  		z-index: 1000;

      }
      .content-header {
        grid-column: 1/-1;
      }
      .content-main {
        grid-column: 1/2;
        display: grid;
        gap: 1.5rem;
		          align-self: start; /* WAJIB: agar height tidak mengikuti main content */

      }
		.content-main-full{
        grid-column: 1/-1;
		}
      .content-sidebar {
        gap: 1.5rem;
        display: grid;
        grid-column: 2/3;
        align-self: start; /* WAJIB: agar height tidak mengikuti main content */
      }
      .grid-2 {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
      }
      .grid-3 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
      }
      .grid-4 {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
      }
      .grid-6 {
        display: grid;
        grid-template-columns: repeat(6, 1fr);
      }
      .grid-8 {
        display: grid;
        grid-template-columns: repeat(8, 1fr);
      }
      .sticky-sidebar {
        position: sticky;
        top: 9rem;
		  		z-index: 1000;

      }
      .mobile-only {
        display: none;
      }
      .desktop-only {
        display: flex;
      }
    }