  }

  .header-top {
    padding: 15px 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .header-top .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .header-left {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .menu-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    color: var(--primary-blue);
    font-weight: bold;
    font-size: 14px;
  }

  .burger-icon {
    font-size: 18px;
  }

  .logo {
    font-size: 28px;
    font-weight: bold;
    color: var(--primary-blue);
    letter-spacing: -1px;
    line-height: 1;
  }

  .logo span {
    color: var(--accent-orange);
  }

  .search-box {
    flex: 1;
    margin: 0 40px;
    max-width: 400px;
  }

  .search-box form {
    display: flex;
    align-items: center;
    border: 1px solid #ccc;
    border-radius: 4px;
    overflow: hidden;
    height: 36px;
  }

  .search-box input {
    flex: 1;
    border: none;
    padding: 0 10px;
    font-size: 14px;
    outline: none;
    height: 100%;
  }

  .search-box button {
    background: #f8f8f8;
    border: none;
    border-left: 1px solid #ccc;
    width: 36px;
    height: 100%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .header-right {
    display: flex;
    gap: 10px;
  }

  .btn {
    padding: 6px 15px;
    border-radius: 20px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
  }

  .btn-mpc {
    background: #fff;
    border: 1px solid #ccc;
    color: #333;
  }

  .btn-mpc:hover {
    background: #f0f0f0;
  }

  .btn-login {
    background: #fff;
    border: 1px solid var(--primary-blue);
    color: var(--primary-blue);
  }

  .btn-login:hover {
    background: var(--primary-blue);
    color: #fff;
  }

  /* NAVIGATION */
  .main-nav {
    background: #203e78;
    /* Dark Blue */
    border-bottom: none;
  }

  .main-nav .container {
    display: flex;
    flex-wrap: wrap;
  }

  .main-nav a {
    padding: 10px 15px;
    font-size: 14px;
    color: #fff;
    /* White text */
    font-weight: 600;
    display: block;
    text-decoration: none;
  }

  .main-nav a:hover {
    background: #1a3366;
  }

  /* SUB NAVIGATION */
  .sub-nav {
    background: #fff;
    border-bottom: 1px solid #ddd;
    padding: 0;
  }

  .sub-nav .container {
    display: flex;
    gap: 20px;
    font-size: 13px;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 50%, transparent 100%);
    padding: 40px 20px 20px;
    color: #fff;
  }

  .hero-title {
    font-size: 32px;
    font-weight: bold;
    margin: 0 0 10px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
  }

  .hero-meta {
    font-size: 13px;
    opacity: 0.9;
  }

  /* Related News (Below Image) */
  .related-news {
    background: linear-gradient(90deg, #20419a 0%, #295dc0 100%);
    /* Blue Gradient */
    color: #fff;
    padding: 15px 20px;
    border-radius: 0 0 8px 8px;
    display: flex;
    align-items: flex-start;
    /* Align top */
    font-size: 14px;
    gap: 20px;
  }

  .related-label {
    color: #ffcc00;
    /* Yellow/Gold */
    font-weight: bold;
    white-space: nowrap;
    position: relative;
    padding-right: 15px;
  }

  .related-label:after {
    content: "";
    display: block;
    width: 30px;
    height: 2px;
    background: #ffcc00;
    margin-top: 4px;
  }

  .related-links {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }

  .related-links a {
    color: #fff;
    font-weight: bold;
    text-decoration: none;
    flex: 1;
    margin-right: 10px;
    line-height: 1.4;
  }

  .related-links a:last-child {
    margin-right: 0;
  }

  .related-links a:hover {
    text-decoration: underline;
  }

  /* STORIES SECTION */
  .stories-section {
    margin: 20px 0;
    overflow: hidden;
    position: relative;
    width: 100%;
    background: #f8f9fa;
    /* Light background */
    padding: 20px 0;
  }

  .stories-track {
    display: flex;
    gap: 30px;
    /* Increased gap */
    width: max-content;
    animation: scrollStories 60s linear infinite;
    /* Slower scroll */
    padding-left: 20px;
  }

  .stories-track:hover {
    animation-play-state: paused;
  }

  @keyframes scrollStories {
    0% {
      transform: translateX(0);
    }

    100% {
      transform: translateX(-50%);
    }
  }

  .story-card {
    min-width: 300px;
    /* Wider card */
    height: auto;
    border-radius: 0;
    overflow: visible;
    position: relative;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 15px;
    background: transparent;
  }

  .story-img {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    border: 3px solid #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  }

  .story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .story-content {
    flex: 1;
  }

  .story-cat {
    color: var(--primary-blue);
    /* #203e78 */
    display: flex;
    align-items: center;
    gap: 5px;
  }

  /* Pagination Dots */
  .stories-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
  }

  .stories-pagination span {
    width: 8px;
    height: 8px;
    font-size: 14px;
    border-left: 3px solid var(--primary-blue);
    padding-left: 10px;
  }

  .tag-list li {
    margin-bottom: 10px;
  }

  .tag-list a {
    color: #555;
    font-size: 13px;
    display: block;
    padding: 5px 0;
    border-bottom: 1px solid #eee;
  }

  .tag-list a:before {
    content: "#";
    color: var(--primary-blue);
    margin-right: 5px;
  }

  /* Center Column: News Grid */
  .news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }

  .news-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
  }

  .card-thumb {
    position: relative;
    height: 150px;
    overflow: hidden;
  }

  .card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
  }

  .news-card:hover .card-thumb img {
    transform: scale(1.05);
  }

  .card-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    color: #fff;
    font-size: 10px;
    font-weight: bold;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
    z-index: 2;
  }

  .card-content {
    padding: 15px;
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .card-content h3 {
    margin: 0 0 10px;
  }

  /* Right Column: Popular */
  .popular-box {
    background: #fff;
    padding: 15px;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  }

  .popular-list {
    counter-reset: pop-counter;
  }

  .popular-item {
    position: relative;
    padding-left: 30px;
    margin-bottom: 15px;
    border-bottom: 1px solid #eee;
    padding-bottom: 10px;
  }

  .popular-item:before {
    counter-increment: pop-counter;
    content: counter(pop-counter);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 24px;
    font-weight: bold;
    color: #ddd;
  }

  .popular-item h4 {
    margin: 0 0 5px;
    font-size: 14px;
  }

  .popular-item h4 a {
    color: #333;
  }

  .popular-meta {
    font-size: 11px;
    color: #999;
  }

  /* FOOTER */
  .footer {
    background: #fff;
    padding: 40px 0;
    border-top: 1px solid #ddd;
    margin-top: 40px;
  }

  .footer-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
  }

  .footer-col h4 {
    font-size: 14px;
    margin-bottom: 15px;
    color: var(--primary-blue);
  }

  .footer-col ul li {
    margin-bottom: 8px;
  }

  .footer-col ul li a {
    color: #666;
    font-size: 13px;
  }

  .footer-bottom {
    text-align: center;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #eee;
    color: #888;
    font-size: 12px;
  }

  /* Responsive */
  @media (max-width: 900px) {
    .main-content {
      grid-template-columns: 1fr;
    }

    .header-top .container {
      flex-direction: column;
      padding: 15px;
      border-radius: 4px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .section-header {
      font-weight: bold;
      margin-bottom: 15px;
      font-size: 14px;
      border-left: 3px solid var(--primary-blue);
      padding-left: 10px;
    }

    .tag-list li {
      margin-bottom: 10px;
    }

    .tag-list a {
      color: #555;
      font-size: 13px;
      display: block;
      padding: 5px 0;
      border-bottom: 1px solid #eee;
    }

    .tag-list a:before {
      content: "#";
      color: var(--primary-blue);
      margin-right: 5px;
    }

    /* Center Column: News Grid */
    .news-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .news-card {
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
    }

    .card-thumb {
      position: relative;
      height: 150px;
      overflow: hidden;
    }

    .card-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s;
    }

    .news-card:hover .card-thumb img {
      transform: scale(1.05);
    }

    .card-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      color: #fff;
      font-size: 10px;
      font-weight: bold;
      padding: 3px 8px;
      border-radius: 4px;
      text-transform: uppercase;
      z-index: 2;
    }

    .card-content {
      padding: 15px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .card-content h3 {
      margin: 0 0 10px;
    }

    /* Right Column: Popular */
    .popular-box {
      background: #fff;
      padding: 15px;
      border-radius: 4px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .popular-list {
      counter-reset: pop-counter;
    }

    .popular-item {
      position: relative;
      padding-left: 30px;
      margin-bottom: 15px;
      border-bottom: 1px solid #eee;
      padding-bottom: 10px;
    }

    .popular-item:before {
      counter-increment: pop-counter;
      content: counter(pop-counter);
      position: absolute;
      left: 0;
      top: 0;
      font-size: 24px;
      font-weight: bold;
      color: #ddd;
    }

    .popular-item h4 {
      margin: 0 0 5px;
      font-size: 14px;
    }

    .popular-item h4 a {
      color: #333;
    }

    .popular-meta {
      font-size: 11px;
      color: #999;
    }

    /* FOOTER */
    .footer {
      background: #fff;
      padding: 40px 0;
      border-top: 1px solid #ddd;
      margin-top: 40px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 30px;
    }

    .footer-col h4 {
      font-size: 14px;
      margin-bottom: 15px;
      color: var(--primary-blue);
    }

    .footer-col ul li {
      margin-bottom: 8px;
    }

    .footer-col ul li a {
      color: #666;
      font-size: 13px;
    }

    .footer-bottom {
      text-align: center;
      margin-top: 40px;
      padding-top: 20px;
      border-top: 1px solid #eee;
      color: #888;
      font-size: 12px;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .main-content {
        grid-template-columns: 1fr;
      }




    }

    .section-header {
      font-weight: bold;
      margin-bottom: 15px;
      font-size: 14px;
      border-left: 3px solid var(--primary-blue);
      padding-left: 10px;
    }

    .tag-list li {
      margin-bottom: 10px;
    }

    .tag-list a {
      color: #555;
      font-size: 13px;
      display: block;
      padding: 5px 0;
      border-bottom: 1px solid #eee;
    }

    .tag-list a:before {
      content: "#";
      color: var(--primary-blue);
      margin-right: 5px;
    }

    /* Center Column: News Grid */
    .news-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .news-card {
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
      display: flex;
      flex-direction: column;
    }

    .card-thumb {
      position: relative;
      height: 150px;
      overflow: hidden;
    }

    .card-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transition: transform 0.3s;
    }

    .news-card:hover .card-thumb img {
      transform: scale(1.05);
    }

    .card-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      color: #fff;
      font-size: 10px;
      font-weight: bold;
      padding: 3px 8px;
      border-radius: 4px;
      text-transform: uppercase;
      z-index: 2;
    }

    .card-content {
      padding: 15px;
      flex: 1;
      display: flex;
      flex-direction: column;
    }

    .card-content h3 {
      margin: 0 0 10px;
    }

    /* Right Column: Popular */
    .popular-box {
      background: #fff;
      padding: 15px;
      border-radius: 4px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    .popular-list {
      counter-reset: pop-counter;
    }

    .popular-item {
      position: relative;
      padding-left: 30px;
      margin-bottom: 15px;
      border-bottom: 1px solid #eee;
      padding-bottom: 10px;
    }

    .popular-item:before {
      counter-increment: pop-counter;
      content: counter(pop-counter);
      position: absolute;
      left: 0;
      top: 0;
      font-size: 24px;
      font-weight: bold;
      color: #ddd;
    }

    .popular-item h4 {
      margin: 0 0 5px;
      font-size: 14px;
    }

    .popular-item h4 a {
      color: #333;
    }

    .popular-meta {
      font-size: 11px;
      color: #999;
    }

    /* FOOTER */
    .footer {
      background: #fff;
      padding: 40px 0;
      border-top: 1px solid #ddd;
      margin-top: 40px;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 30px;
    }

    .footer-col h4 {
      font-size: 14px;
      margin-bottom: 15px;
      color: var(--primary-blue);
    }

    .footer-col ul li {
      margin-bottom: 8px;
    }

    .footer-col ul li a {
      color: #666;
      font-size: 13px;
    }

    .footer-bottom {
      text-align: center;
      margin-top: 40px;
      padding-top: 20px;
      border-top: 1px solid #eee;
      color: #888;
      font-size: 12px;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .main-content {
        grid-template-columns: 1fr;
      }

      .header-top .container {
        flex-direction: column;
        gap: 10px;
      }

      .search-box {
        width: 100%;
        margin: 10px 0;
      }

      .hero-card img {
        height: 300px;
      }
    }

    /* Pilihan Redaksi (Center Col) */
    .ad-banner-center img {
      width: 100%;
      height: auto;
      display: block;
    }

    .section-box {
      overflow: visible !important;
      /* Ensure arrow isn't clipped */
    }

    .section-header-orange-block {
      background: #ff9b00;
      color: #fff;
      padding: 8px 15px;
      font-weight: bold;
      font-size: 14px;
      text-transform: uppercase;
      display: inline-block;
      margin-bottom: 20px;
      position: relative;
      overflow: visible;
      /* Ensure pseudo-element is visible */
    }

    .section-header-orange-block:after {
      content: "";
      position: absolute;
      right: -20px;
      top: 0;
      width: 0;
      height: 0;
      border-top: 35px solid #ff9b00;
      border-right: 20px solid transparent;
      z-index: 1;
    }

    .redaksi-item {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      padding-bottom: 20px;
      margin-bottom: 20px;
      border-bottom: 1px solid #eee;
    }

    .redaksi-content {
      flex: 1;
    }

    .redaksi-content h4 {
      font-size: 16px;
      margin: 0 0 8px;
      line-height: 1.4;
    }

    .redaksi-content h4 a {
      color: #333;
      font-weight: bold;
    }

    .redaksi-meta {
      font-size: 11px;
      color: #999;
      margin-bottom: 8px;
    }

    .source-green {
      color: #28a745;
      font-weight: bold;
    }

    .redaksi-content p {
      font-size: 13px;
      color: #666;
      margin: 0;
      line-height: 1.5;
    }

    .redaksi-thumb {
      width: 120px;
      height: 80px;
      flex-shrink: 0;
      border-radius: 4px;
      overflow: hidden;
    }

    .redaksi-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Trending (Right Col) */
    .section-header-orange-icon {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      font-size: 16px;
      color: #ff9b00;
      margin-bottom: 15px;
      border-bottom: 2px solid #ff9b00;
      padding-bottom: 10px;
    }

    .section-header-orange-icon:before {
      content: "⚡";
      /* Placeholder icon */
      font-size: 18px;
    }

    .section-header-orange-icon .num {
      background: #ff9b00;
      color: #fff;
      padding: 2px 8px;
      border-radius: 50%;
      font-size: 12px;
    }

    .trending-item {
      display: flex;
      gap: 15px;
      margin-bottom: 15px;
      border-bottom: 1px solid #f5f5f5;
      padding-bottom: 10px;
    }

    .trending-num {
      font-size: 30px;
      /* Larger */
      font-weight: 900;
      color: #e0e0e0;
      line-height: 0.8;
      font-style: italic;
    }

    .trending-content h4 {
      font-size: 14px;
      margin: 0 0 5px;
      line-height: 1.3;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 30px;
    }

    .footer-col h4 {
      font-size: 14px;
      margin-bottom: 15px;
      color: var(--primary-blue);
    }

    .footer-col ul li {
      margin-bottom: 8px;
    }

    .footer-col ul li a {
      color: #666;
      font-size: 13px;
    }

    .footer-bottom {
      text-align: center;
      margin-top: 40px;
      padding-top: 20px;
      border-top: 1px solid #eee;
      color: #888;
      font-size: 12px;
    }

    /* Responsive */
    @media (max-width: 900px) {
      .main-content {
        grid-template-columns: 1fr;
      }

      .header-top .container {
        flex-direction: column;
        gap: 10px;
      }

      .search-box {
        width: 100%;
        margin: 10px 0;
      }

      .hero-card img {
        height: 300px;
      }
    }

    /* Pilihan Redaksi (Center Col) */
    .ad-banner-center img {
      width: 100%;
      height: auto;
      display: block;
    }

    .section-box {
      overflow: visible !important;
      /* Ensure arrow isn't clipped */
    }

    .section-header-orange-block {
      background: #ff9b00;
      color: #fff;
      padding: 8px 15px;
      font-weight: bold;
      font-size: 14px;
      text-transform: uppercase;
      display: inline-block;
      margin-bottom: 20px;
      position: relative;
      overflow: visible;
      /* Ensure pseudo-element is visible */
    }

    .section-header-orange-block:after {
      content: "";
      position: absolute;
      right: -20px;
      top: 0;
      width: 0;
      height: 0;
      border-top: 35px solid #ff9b00;
      border-right: 20px solid transparent;
      z-index: 1;
    }

    .redaksi-item {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      padding-bottom: 20px;
      margin-bottom: 20px;
      border-bottom: 1px solid #eee;
    }

    .redaksi-content {
      flex: 1;
    }

    .redaksi-content h4 {
      font-size: 16px;
      margin: 0 0 8px;
      line-height: 1.4;
    }

    .redaksi-content h4 a {
      color: #333;
      font-weight: bold;
    }

    .redaksi-meta {
      font-size: 11px;
      color: #999;
      margin-bottom: 8px;
    }

    .source-green {
      color: #28a745;
      font-weight: bold;
    }

    .redaksi-content p {
      font-size: 13px;
      color: #666;
      margin: 0;
      line-height: 1.5;
    }

    .redaksi-thumb {
      width: 120px;
      height: 80px;
      flex-shrink: 0;
      border-radius: 4px;
      overflow: hidden;
    }

    .redaksi-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
    }

    /* Trending (Right Col) */
    .section-header-orange-icon {
      display: flex;
      align-items: center;
      gap: 10px;
      font-weight: 800;
      font-size: 16px;
      color: #ff9b00;
      margin-bottom: 15px;
      border-bottom: 2px solid #ff9b00;
      padding-bottom: 10px;
    }

    .section-header-orange-icon:before {
      content: "⚡";
      /* Placeholder icon */
      font-size: 18px;
    }

    .section-header-orange-icon .num {
      background: #ff9b00;
      color: #fff;
      padding: 2px 8px;
      border-radius: 50%;
      font-size: 12px;
    }

    .trending-item {
      display: flex;
      gap: 15px;
      margin-bottom: 15px;
      border-bottom: 1px solid #f5f5f5;
      padding-bottom: 10px;
    }

    .trending-num {
      font-size: 30px;
      /* Larger */
      font-weight: 900;
      color: #e0e0e0;
      line-height: 0.8;
      font-style: italic;
    }

    .trending-content h4 {
      font-size: 14px;
      margin: 0 0 5px;
      line-height: 1.3;
    }

    .trending-content h4 a {
      color: #333;
    }

    .trending-meta {
      font-size: 11px;
      color: #999;
    }

    /* Section Headers */
    .section-header-striped {
      font-weight: 800;
      font-size: 24px;
      font-style: italic;
      color: #000;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
      text-transform: uppercase;
    }

    .section-header-striped:after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100px;
      height: 6px;
      background: repeating-linear-gradient(-45deg,
          #ff9b00,
          #ff9b00 10px,
          #003e78 10px,
          #003e78 20px);
    }

    .section-header-striped-orange {
      font-weight: 800;
      font-size: 24px;
      font-style: italic;
      color: #000;
      margin-bottom: 20px;
      position: relative;
      padding-bottom: 10px;
      text-transform: uppercase;
    }

    .section-header-striped-orange:after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 0;
      width: 100px;
      height: 6px;
      background: repeating-linear-gradient(-45deg,
          #ff9b00,
          #ff9b00 10px,
          #fff 10px,
          #fff 12px);
      border-bottom: 2px solid #ff9b00;
    }

    .section-header-purple {
      background: #9c27b0;
      color: #fff;
      padding: 10px 15px;
      font-weight: bold;
      font-size: 16px;
      text-transform: uppercase;
      margin-bottom: 20px;
      display: flex;
      align-items: center;
      gap: 10px;
      position: relative;
    }

    .section-header-purple:after {
      content: "";
      position: absolute;
      right: 0;
      top: 0;
      border-top: 40px solid #7b1fa2;
      border-left: 20px solid transparent;
    }

    .section-header-pink {
      background: #e91e63;
      color: #fff;
      padding: 5px 15px;
      font-weight: bold;
      font-size: 14px;
      text-transform: uppercase;
      margin-bottom: 15px;
      border-radius: 20px;
      display: inline-block;
    }

    .section-header-purple-gradient {
      background: linear-gradient(90deg, #9c27b0, #673ab7);
      color: #fff;
      padding: 10px 15px;
      font-weight: bold;
      font-size: 14px;
      text-transform: uppercase;
      margin-bottom: 15px;
      border-radius: 0 20px 20px 0;
      display: flex;
      align-items: center;
      gap: 10px;
    }

    /* Badges */
    .badge-blue {
      background: #003e78;
      color: #fff;
      padding: 2px 6px;
      font-size: 10px;
      border-radius: 2px;
      font-weight: bold;
    }

    .badge-blue-dark {
      background: #002147;
      color: #fff;
      padding: 2px 6px;
      font-size: 10px;
      border-radius: 2px;
      font-weight: bold;
    }

    .date-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      width: 40px;
      height: 40px;
      color: #fff;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      font-weight: bold;
      line-height: 1;
      z-index: 2;
    }

    .date-badge.blue {
      background: #2196f3;
    }

    .date-badge.green {
      background: #4caf50;
    }

    .date-badge.yellow {
      background: #ffc107;
      color: #000;
    }

    .populer-grid-top {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 15px;
      margin-bottom: 20px;
    }

    .populer-card {
      position: relative;
    }

    .populer-card img {
      width: 100%;
      height: 120px;
      object-fit: cover;
      border-radius: 4px;
      margin-bottom: 8px;
    }

    .populer-card h4 {
      font-size: 13px;
      line-height: 1.3;
      margin: 0;
    }

    .populer-card h4 a {
      color: #333;
    }

    .populer-list-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 15px;
      padding-top: 20px;
      border-top: 1px solid #eee;
    }

    .cat-badge-light {
      background: #e3f2fd;
      color: #1976d2;
      padding: 2px 8px;
      font-size: 10px;
      border-radius: 10px;
      font-weight: bold;
      display: inline-block;
      margin-bottom: 5px;
    }

    .btn-read-more-small {
      display: inline-block;
      border: 1px solid #2196f3;
      color: #2196f3;
      font-size: 11px;
      padding: 4px 10px;
      border-radius: 15px;
      margin-top: 10px;
      text-decoration: none;
    }

    .btn-read-more-small:hover {
      background: #2196f3;
      color: #fff;
    }

    /* Rekomendasi Section */
    .rekomendasi-section {
      background: #f8f9fa;
      padding: 20px;
      border-radius: 8px;
    }

    .flex-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 2px solid #ddd;
    }

    .flex-header h3 {
      font-size: 18px;
      font-weight: bold;
      color: #203e78;
      margin: 0;
    }

    .flex-header a {
      color: #203e78;
      font-size: 14px;
      text-decoration: none;
      font-weight: 600;
    }

    .flex-header a:hover {
      text-decoration: underline;
    }

    .rekomendasi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .rekomendasi-item {
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .rekomendasi-item:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }

    .rekomendasi-item img {
      width: 100%;
      height: 140px;
      object-fit: cover;
      display: block;
    }

    .rekomendasi-item .source {
      display: inline-block;
      background: #ff6b35;
      color: #fff;
      font-size: 10px;
      font-weight: bold;
      padding: 4px 8px;
      margin: 10px 0 5px 10px;
      border-radius: 3px;
    }

    .rekomendasi-item h4 {
      font-size: 14px;
      line-height: 1.4;
      margin: 0;
      padding: 0 10px 15px 10px;
    }

    .rekomendasi-item h4 a {
      color: #333;
      text-decoration: none;
      font-weight: 600;
    }

    .rekomendasi-item h4 a:hover {
      color: #203e78;
    }

    /* Responsive adjustments */
    @media (max-width: 900px) {}

    .badge-blue-dark {
      background: #002147;
      color: #fff;
      padding: 2px 6px;
      font-size: 10px;
      border-radius: 2px;
      font-weight: bold;
    }

    .date-badge {
      position: absolute;
      top: 10px;
      left: 10px;
      width: 40px;
      height: 40px;
      color: #fff;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      font-weight: bold;
      line-height: 1;
      z-index: 2;
    }

    .date-badge.blue {
      background: #2196f3;
    }

    .date-badge.green {
      background: #4caf50;
    }

    .date-badge.yellow {
      background: #ffc107;
      color: #000;
    }

    .populer-grid-top {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 15px;
      margin-bottom: 20px;
    }

    .populer-card {
      position: relative;
    }

    .populer-card img {
      width: 100%;
      height: 120px;
      object-fit: cover;
      border-radius: 4px;
      margin-bottom: 8px;
    }

    .populer-card h4 {
      font-size: 13px;
      line-height: 1.3;
      margin: 0;
    }

    .populer-card h4 a {
      color: #333;
    }

    .populer-list-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 15px;
      padding-top: 20px;
      border-top: 1px solid #eee;
    }

    .cat-badge-light {
      background: #e3f2fd;
      color: #1976d2;
      padding: 2px 8px;
      font-size: 10px;
      border-radius: 10px;
      font-weight: bold;
      display: inline-block;
      margin-bottom: 5px;
    }

    .btn-read-more-small {
      display: inline-block;
      border: 1px solid #2196f3;
      color: #2196f3;
      font-size: 11px;
      padding: 4px 10px;
      border-radius: 15px;
      margin-top: 10px;
      text-decoration: none;
    }

    .btn-read-more-small:hover {
      background: #2196f3;
      color: #fff;
    }

    /* Rekomendasi Section */
    .rekomendasi-section {
      background: #f8f9fa;
      padding: 20px;
      border-radius: 8px;
    }

    .flex-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 20px;
      padding-bottom: 10px;
      border-bottom: 2px solid #ddd;
    }

    .flex-header h3 {
      font-size: 18px;
      font-weight: bold;
      color: #203e78;
      margin: 0;
    }

    .flex-header a {
      color: #203e78;
      font-size: 14px;
      text-decoration: none;
      font-weight: 600;
    }

    .flex-header a:hover {
      text-decoration: underline;
    }

    .rekomendasi-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 20px;
    }

    .rekomendasi-item {
      background: #fff;
      border-radius: 8px;
      overflow: hidden;
      box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
      transition: transform 0.2s, box-shadow 0.2s;
    }

    .rekomendasi-item:hover {
      transform: translateY(-2px);
      box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    }

    .rekomendasi-item img {
      width: 100%;
      height: 140px;
      object-fit: cover;
      display: block;
    }

    .rekomendasi-item .source {
      display: inline-block;
      background: #ff6b35;
      color: #fff;
      font-size: 10px;
      font-weight: bold;
      padding: 4px 8px;
      margin: 10px 0 5px 10px;
      border-radius: 3px;
    }

    .rekomendasi-item h4 {
      font-size: 14px;
      line-height: 1.4;
      margin: 0;
      padding: 0 10px 15px 10px;
    }

    .rekomendasi-item h4 a {
      color: #333;
      text-decoration: none;
      font-weight: 600;
    }

    .rekomendasi-item h4 a:hover {
      color: #203e78;
    }

    /* Responsive adjustments */
    @media (max-width: 900px) {
      .rekomendasi-grid {
        grid-template-columns: repeat(2, 1fr);
      }
    }

    @media (max-width: 600px) {
      .rekomendasi-grid {
        grid-template-columns: 1fr;
      }
    }

    /* Berita Terpopuler Sidebar */
    .terpopuler-list {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .terpopuler-item {
      display: flex;
      gap: 12px;
      padding-bottom: 15px;
      border-bottom: 1px solid #eee;
    }

    .terpopuler-item:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .tp-thumb {
      width: 100px;
      height: 70px;
      flex-shrink: 0;
      border-radius: 4px;
      overflow: hidden;
    }

    .tp-thumb img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .tp-content {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .tp-content h4 {
      font-size: 14px;
      line-height: 1.4;
      margin: 0 0 8px 0;
      font-weight: 600;
    }

    .tp-content h4 a {
      color: #333;
      text-decoration: none;
    }

    .tp-content h4 a:hover {
      color: #203e78;
    }

    .tp-meta {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      color: #999;
    }

    .tp-meta .badge-blue-dark {
      background: #203e78;
      color: #fff;
      padding: 3px 8px;
      border-radius: 12px;
      font-size: 10px;
      font-weight: bold;
      text-transform: capitalize;
    }

    /* Sidebar Ad */
    .sidebar-ad {
      width: 100%;
      text-align: center;
    }

    .sidebar-ad img {
      width: 100%;
      height: auto;
      border-radius: 4px;
    }

    /* Utility Classes */
    .mt-20 {
      margin-top: 20px;
    }

    .mt-10 {
      margin-top: 10px;
    }

    .full-width {
      width: 100%;
    }

    .btn-outline-blue {
      display: block;
      text-align: center;
      border: 2px solid #203e78;
      color: #203e78;
      padding: 10px;
      border-radius: 4px;
      font-size: 13px;
      font-weight: bold;
      text-decoration: none;
      transition: all 0.2s;
    }

    .btn-outline-blue:hover {
      background: #203e78;
      color: #fff;
    }

    .btn-outline-purple {
      display: block;
      text-align: center;
      border: 2px solid #9c27b0;
      color: #9c27b0;
      padding: 8px;
      border-radius: 4px;
      font-size: 12px;
    }

    .btn-outline-purple:hover {
      background: #9c27b0;
      color: #fff;
    }

    /* Berita Pilihan Left Column */
    .news-list-small {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .news-item-small {
      display: flex;
      gap: 12px;
      padding-bottom: 15px;
      border-bottom: 1px solid #eee;
    }

    .news-item-small:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .news-thumb-small {
      width: 100px;
      height: 70px;
      flex-shrink: 0;
      border-radius: 4px;
      overflow: hidden;
    }

    .news-thumb-small img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .news-content-small {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .news-content-small h4 {
      font-size: 14px;
      line-height: 1.4;
      margin: 0 0 8px 0;
      font-weight: 600;
    }

    .news-content-small h4 a {
      color: #333;
      text-decoration: none;
    }

    .news-content-small h4 a:hover {
      color: #203e78;
    }

    .news-meta-small {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      color: #999;
    }

    .news-meta-small .badge-blue {
      background: #203e78;
      color: #fff;
      padding: 3px 8px;
      border-radius: 12px;
      font-size: 10px;
      font-weight: bold;
      text-transform: uppercase;
    }

    /* Gallery Grid (Galeri Foto) */
    .gallery-grid {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .gallery-main {
      width: 100%;
      border-radius: 4px;
      overflow: hidden;
    }

    .gallery-main img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .gallery-thumbs {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      margin-bottom: 10px;
    }

    .gallery-thumbs img {
      width: 100%;
      height: 80px;
      object-fit: cover;
      border-radius: 4px;
      cursor: pointer;
      transition: transform 0.2s;
    }

    .gallery-thumbs img:hover {
      transform: scale(1.05);
    }

    /* Section Box */
    .section-box {
      background: #fff;
      padding: 15px;
      border-radius: 4px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    /* Left, Center, Right Columns */
    .left-col {
      width: 100%;
    }

    .tp-meta .badge-blue-dark {
      background: #203e78;
      color: #fff;
      padding: 3px 8px;
      border-radius: 12px;
      font-size: 10px;
      font-weight: bold;
      text-transform: capitalize;
    }

    /* Sidebar Ad */
    .sidebar-ad {
      width: 100%;
      text-align: center;
    }

    .sidebar-ad img {
      width: 100%;
      height: auto;
      border-radius: 4px;
    }

    /* Utility Classes */
    .mt-20 {
      margin-top: 20px;
    }

    .mt-10 {
      margin-top: 10px;
    }

    .full-width {
      width: 100%;
    }

    .btn-outline-blue {
      display: block;
      text-align: center;
      border: 2px solid #203e78;
      color: #203e78;
      padding: 10px;
      border-radius: 4px;
      font-size: 13px;
      font-weight: bold;
      text-decoration: none;
      transition: all 0.2s;
    }

    .btn-outline-blue:hover {
      background: #203e78;
      color: #fff;
    }

    .btn-outline-purple {
      display: block;
      text-align: center;
      border: 2px solid #9c27b0;
      color: #9c27b0;
      padding: 8px;
      border-radius: 4px;
      font-size: 12px;
    }

    .btn-outline-purple:hover {
      background: #9c27b0;
      color: #fff;
    }

    /* Berita Pilihan Left Column */
    .news-list-small {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .news-item-small {
      display: flex;
      gap: 12px;
      padding-bottom: 15px;
      border-bottom: 1px solid #eee;
    }

    .news-item-small:last-child {
      border-bottom: none;
      padding-bottom: 0;
    }

    .news-thumb-small {
      width: 100px;
      height: 70px;
      flex-shrink: 0;
      border-radius: 4px;
      overflow: hidden;
    }

    .news-thumb-small img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .news-content-small {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .news-content-small h4 {
      font-size: 14px;
      line-height: 1.4;
      margin: 0 0 8px 0;
      font-weight: 600;
    }

    .news-content-small h4 a {
      color: #333;
      text-decoration: none;
    }

    .news-content-small h4 a:hover {
      color: #203e78;
    }

    .news-meta-small {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      color: #999;
    }

    .news-meta-small .badge-blue {
      background: #203e78;
      color: #fff;
      padding: 3px 8px;
      border-radius: 12px;
      font-size: 10px;
      font-weight: bold;
      text-transform: uppercase;
    }

    /* Gallery Grid (Galeri Foto) */
    .gallery-grid {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .gallery-main {
      width: 100%;
      border-radius: 4px;
      overflow: hidden;
    }

    .gallery-main img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .gallery-thumbs {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      margin-bottom: 10px;
    }

    .gallery-thumbs img {
      width: 100%;
      height: 80px;
      object-fit: cover;
      border-radius: 4px;
      cursor: pointer;
      transition: transform 0.2s;
    }

    .gallery-thumbs img:hover {
      transform: scale(1.05);
    }

    /* Section Box */
    .section-box {
      background: #fff;
      padding: 15px;
      border-radius: 4px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    /* Left, Center, Right Columns */
    .left-col {
      width: 100%;
    }

    .center-col {
      width: 100%;
    }

    .right-col {
      width: 100%;
    }

    /* Video Gallery Grid (matching Photo Gallery) */
    .video-gallery-grid {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .video-gallery-main {
      width: 100%;
    }

    .video-main-thumb {
      position: relative;
      width: 100%;
      border-radius: 4px;
      overflow: hidden;
      margin-bottom: 10px;
    }

    .video-main-thumb img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .play-icon-large {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 50px;
      height: 50px;
      background: rgba(0, 0, 0, 0.7);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      border: 3px solid #fff;
      cursor: pointer;
      transition: all 0.3s;
    }

    .play-icon-large:hover {
      background: rgba(156, 39, 176, 0.9);
      transform: translate(-50%, -50%) scale(1.1);
    }

    .video-duration {
      position: absolute;
      bottom: 8px;
      right: 8px;
      background: rgba(0, 0, 0, 0.8);
      color: #fff;
      font-size: 11px;
      font-weight: bold;
      padding: 3px 6px;
      border-radius: 3px;
    }

    .video-gallery-main h4 {
      font-size: 14px;
      line-height: 1.4;
      margin: 0 0 10px 0;
      font-weight: 600;
    }

    .video-gallery-main h4 a {
      color: #333;
      text-decoration: none;
    }

    .video-gallery-main h4 a:hover {
      color: #9c27b0;
    }

    .video-gallery-thumbs {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      margin-bottom: 10px;
    }

    .video-thumb-item {
      position: relative;
      width: 100%;
      height: 80px;
      border-radius: 4px;
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.2s;
    }

    .video-thumb-item:hover {
      transform: scale(1.05);
    }

    .video-thumb-item img {
      width: 100%;
      font-size: 14px;
      line-height: 1.4;
      margin: 0 0 8px 0;
      font-weight: 600;
    }

    .news-content-small h4 a {
      color: #333;
      text-decoration: none;
    }

    .news-content-small h4 a:hover {
      color: #203e78;
    }

    .news-meta-small {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      color: #999;
    }

    .news-meta-small .badge-blue {
      background: #203e78;
      color: #fff;
      padding: 3px 8px;
      border-radius: 12px;
      font-size: 10px;
      font-weight: bold;
      text-transform: uppercase;
    }

    /* Gallery Grid (Galeri Foto) */
    .gallery-grid {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .gallery-main {
      width: 100%;
      border-radius: 4px;
      overflow: hidden;
    }

    .gallery-main img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .gallery-thumbs {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      margin-bottom: 10px;
    }

    .gallery-thumbs img {
      width: 100%;
      height: 80px;
      object-fit: cover;
      border-radius: 4px;
      cursor: pointer;
      transition: transform 0.2s;
    }

    .gallery-thumbs img:hover {
      transform: scale(1.05);
    }

    /* Section Box */
    .section-box {
      background: #fff;
      padding: 15px;
      border-radius: 4px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    /* Left, Center, Right Columns */
    .left-col {
      width: 100%;
    }

    .center-col {
      width: 100%;
    }

    .right-col {
      width: 100%;
    }

    /* Video Gallery Grid (matching Photo Gallery) */
    .video-gallery-grid {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .video-gallery-main {
      width: 100%;
    }

    .video-main-thumb {
      position: relative;
      width: 100%;
      border-radius: 4px;
      overflow: hidden;
      margin-bottom: 10px;
    }

    .video-main-thumb img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .play-icon-large {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 50px;
      height: 50px;
      background: rgba(0, 0, 0, 0.7);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      border: 3px solid #fff;
      cursor: pointer;
      transition: all 0.3s;
    }

    .play-icon-large:hover {
      background: rgba(156, 39, 176, 0.9);
      transform: translate(-50%, -50%) scale(1.1);
    }

    .video-duration {
      position: absolute;
      bottom: 8px;
      right: 8px;
      background: rgba(0, 0, 0, 0.8);
      color: #fff;
      font-size: 11px;
      font-weight: bold;
      padding: 3px 6px;
      border-radius: 3px;
    }

    .video-gallery-main h4 {
      font-size: 14px;
      line-height: 1.4;
      margin: 0 0 10px 0;
      font-weight: 600;
    }

    .video-gallery-main h4 a {
      color: #333;
      text-decoration: none;
    }

    .video-gallery-main h4 a:hover {
      color: #9c27b0;
    }

    .video-gallery-thumbs {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      margin-bottom: 10px;
    }

    .video-thumb-item {
      position: relative;
      width: 100%;
      height: 80px;
      border-radius: 4px;
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.2s;
    }

    .video-thumb-item:hover {
      transform: scale(1.05);
    }

    .video-thumb-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .video-thumb-item .play-icon-small {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 25px;
      height: 25px;
      background: rgba(0, 0, 0, 0.7);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      color: #999;
    }

    .news-meta-small .badge-blue {
      background: #203e78;
      color: #fff;
      padding: 3px 8px;
      border-radius: 12px;
      font-size: 10px;
      font-weight: bold;
      text-transform: uppercase;
    }

    /* Gallery Grid (Galeri Foto) */
    .gallery-grid {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .gallery-main {
      width: 100%;
      border-radius: 4px;
      overflow: hidden;
    }

    .gallery-main img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .gallery-thumbs {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      margin-bottom: 10px;
    }

    .gallery-thumbs img {
      width: 100%;
      height: 80px;
      object-fit: cover;
      border-radius: 4px;
      cursor: pointer;
      transition: transform 0.2s;
    }

    .gallery-thumbs img:hover {
      transform: scale(1.05);
    }

    /* Section Box */
    .section-box {
      background: #fff;
      padding: 15px;
      border-radius: 4px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    }

    /* Left, Center, Right Columns */
    .left-col {
      width: 100%;
    }

    .center-col {
      width: 100%;
    }

    .right-col {
      width: 100%;
    }

    /* Video Gallery Grid (matching Photo Gallery) */
    .video-gallery-grid {
      display: flex;
      flex-direction: column;
      gap: 10px;
    }

    .video-gallery-main {
      width: 100%;
    }

    .video-main-thumb {
      position: relative;
      width: 100%;
      border-radius: 4px;
      overflow: hidden;
      margin-bottom: 10px;
    }

    .video-main-thumb img {
      width: 100%;
      height: 200px;
      object-fit: cover;
      display: block;
    }

    .play-icon-large {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 50px;
      height: 50px;
      background: rgba(0, 0, 0, 0.7);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 20px;
      border: 3px solid #fff;
      cursor: pointer;
      transition: all 0.3s;
    }

    .play-icon-large:hover {
      background: rgba(156, 39, 176, 0.9);
      transform: translate(-50%, -50%) scale(1.1);
    }

    .video-duration {
      position: absolute;
      bottom: 8px;
      right: 8px;
      background: rgba(0, 0, 0, 0.8);
      color: #fff;
      font-size: 11px;
      font-weight: bold;
      padding: 3px 6px;
      border-radius: 3px;
    }

    .video-gallery-main h4 {
      font-size: 14px;
      line-height: 1.4;
      margin: 0 0 10px 0;
      font-weight: 600;
    }

    .video-gallery-main h4 a {
      color: #333;
      text-decoration: none;
    }

    .video-gallery-main h4 a:hover {
      color: #9c27b0;
    }

    .video-gallery-thumbs {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 8px;
      margin-bottom: 10px;
    }

    .video-thumb-item {
      position: relative;
      width: 100%;
      height: 80px;
      border-radius: 4px;
      overflow: hidden;
      cursor: pointer;
      transition: transform 0.2s;
    }

    .video-thumb-item:hover {
      transform: scale(1.05);
    }

    .video-thumb-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .video-thumb-item .play-icon-small {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 25px;
      height: 25px;
      background: rgba(0, 0, 0, 0.7);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      border: 2px solid #fff;
    }

    /* Sidebar Ad Left Column */
    .sidebar-ad-left {
      width: 100%;
      text-align: center;
      background: #f8f9fa;
      padding: 10px;
      border-radius: 4px;
      border: 2px dashed #ddd;
    }

    .sidebar-ad-left img {
      width: 100%;
      height: auto;
      max-width: 300px;
      border-radius: 4px;
    }

    /* Sidebar Ad Right Column */
    .sidebar-ad-right {
      width: 100%;
      text-align: center;
      background: #f8f9fa;
    }

    .sidebar-ad-right img {
      width: 100%;
      height: auto;
      max-width: 300px;
      border-radius: 4px;
    }

    /* Special Report Section */
    .special-report-section {
      margin-top: 30px;
    }

    .special-header {
      background: linear-gradient(135deg, #00bcd4 0%, #9c27b0 100%);
      color: #fff;
      padding: 12px 20px;
      border-radius: 25px 25px 25px 0;
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
      box-shadow: 0 2px 8px rgba(156, 39, 176, 0.3);
    }

    .special-header .icon {
      font-size: 24px;
    }

    .special-header h3 {
      margin: 0;
      font-size: 18px;
      font-weight: 700;
      letter-spacing: 0.5px;
    }

    .special-report-list {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .special-report-item-horizontal {
      display: flex;
      gap: 12px;
      padding: 15px;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s, box-shadow 0.3s;
      cursor: pointer;
      border-bottom: 3px solid transparent;
    }

    .special-report-item-horizontal:hover {
      transform: translateX(5px);
      box-shadow: 0 4px 12px rgba(156, 39, 176, 0.15);
      border-bottom-color: #9c27b0;
    }

    .special-thumb-horizontal {
      width: 100px;
      height: 70px;
      flex-shrink: 0;
      border-radius: 6px;
      overflow: hidden;
      background: #f0f0f0;
    }

    .special-thumb-horizontal img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s;
    }

    .special-report-item-horizontal:hover .special-thumb-horizontal img {
      transform: scale(1.1);
    }

    .special-content-horizontal {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .special-content-horizontal h4 {
      margin: 0 0 8px 0;
      font-size: 14px;
      line-height: 1.5;
      font-weight: 600;
      color: #333;
    }

    .special-content-horizontal h4 a {
      color: #333;
      text-decoration: none;
      transition: color 0.2s;
    }

    .special-content-horizontal h4 a:hover {
      color: #9c27b0;
    }

    .special-meta {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
    }

    .badge-special {
      background: linear-gradient(135deg, #00bcd4 0%, #9c27b0 100%);
      color: #fff;
      padding: 3px 10px;
      border-radius: 12px;
      font-size: 10px;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .special-meta .time {
      color: #999;
      font-size: 11px;
    }

    /* Responsive untuk Special Report */
    @media (max-width: 576px) {
      .special-header {
        border-radius: 15px 15px 15px 0;
        padding: 10px 15px;
      }

      .special-header h3 {
        font-size: 16px;
      }

      cursor: pointer;
      transition: transform 0.2s;
    }

    .video-thumb-item:hover {
      transform: scale(1.05);
    }

    .video-thumb-item img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
    }

    .video-thumb-item .play-icon-small {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      width: 25px;
      height: 25px;
      background: rgba(0, 0, 0, 0.7);
      color: #fff;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 10px;
      border: 2px solid #fff;
    }

    /* Sidebar Ad Left Column */
    .sidebar-ad-left {
      width: 100%;
      text-align: center;
      background: #f8f9fa;
      padding: 10px;
      border-radius: 4px;
      border: 2px dashed #ddd;
    }

    .sidebar-ad-left img {
      width: 100%;
      height: auto;
      max-width: 300px;
      border-radius: 4px;
    }

    /* Sidebar Ad Right Column */
    .sidebar-ad-right {
      width: 100%;
      text-align: center;
      background: #f8f9fa;
    }

    .sidebar-ad-right img {
      width: 100%;
      height: auto;
      max-width: 300px;
      border-radius: 4px;
    }

    /* Special Report Section */
    .special-report-section {
      margin-top: 30px;
    }

    .special-header {
      background: linear-gradient(135deg, #00bcd4 0%, #9c27b0 100%);
      color: #fff;
      padding: 12px 20px;
      border-radius: 25px 25px 25px 0;
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 20px;
      box-shadow: 0 2px 8px rgba(156, 39, 176, 0.3);
    }

    .special-header .icon {
      font-size: 24px;
    }

    .special-header h3 {
      margin: 0;
      font-size: 18px;
      font-weight: 700;
      letter-spacing: 0.5px;
    }

    .special-report-list {
      display: flex;
      flex-direction: column;
      gap: 15px;
    }

    .special-report-item-horizontal {
      display: flex;
      gap: 12px;
      padding: 15px;
      background: #fff;
      border-radius: 8px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
      transition: transform 0.3s, box-shadow 0.3s;
      cursor: pointer;
      border-bottom: 3px solid transparent;
    }

    .special-report-item-horizontal:hover {
      transform: translateX(5px);
      box-shadow: 0 4px 12px rgba(156, 39, 176, 0.15);
      border-bottom-color: #9c27b0;
    }

    .special-thumb-horizontal {
      width: 100px;
      height: 70px;
      flex-shrink: 0;
      border-radius: 6px;
      overflow: hidden;
      background: #f0f0f0;
    }

    .special-thumb-horizontal img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      display: block;
      transition: transform 0.3s;
    }

    .special-report-item-horizontal:hover .special-thumb-horizontal img {
      transform: scale(1.1);
    }

    .special-content-horizontal {
      flex: 1;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .special-content-horizontal h4 {
      margin: 0 0 8px 0;
      font-size: 14px;
      line-height: 1.5;
      font-weight: 600;
      color: #333;
    }

    .special-content-horizontal h4 a {
      color: #333;
      text-decoration: none;
      transition: color 0.2s;
    }

    .special-content-horizontal h4 a:hover {
      color: #9c27b0;
    }

    .special-meta {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 12px;
    }

    .badge-special {
      background: linear-gradient(135deg, #00bcd4 0%, #9c27b0 100%);
      color: #fff;
      padding: 3px 10px;
      border-radius: 12px;
      font-size: 10px;
      font-weight: bold;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }

    .special-meta .time {
      color: #999;
      font-size: 11px;
    }

    /* Responsive untuk Special Report */
    @media (max-width: 576px) {
      .special-header {
        border-radius: 15px 15px 15px 0;
        padding: 10px 15px;
      }

      .special-header h3 {
        font-size: 16px;
      }

      .special-thumb-horizontal {
        width: 80px;
        height: 60px;
      }

      .special-content-horizontal h4 {
        font-size: 13px;
      }
    }

    /* Added .section-box */
    .section-box {
      background: #fff;
      padding: 15px;
      border-radius: 4px;
      box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
      margin-bottom: 20px;
    }