#votelino-hero {
  padding: 60px 0;
  background: #f8f9fb;
  overflow-x: hidden; /* penting */
}

#votelino-hero .votelino-hero-container {
  max-width: 1200px;
  margin: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
  padding: 0 20px;
  box-sizing: border-box;
}

/* TEXT */
#votelino-hero .votelino-hero-title {
  font-size: 40px;
  line-height: 1.2;
  margin: 15px 0;
  text-align: left;
  color: #1a3179;
}

#votelino-hero .votelino-hero-description {
  margin-bottom: 25px;
}

#votelino-hero .votelino-hero-meta {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  font-size: 14px;
}

#votelino-hero .votelino-hero-label {
    color: #1a3179;
}

/* IMAGE */
#votelino-hero .votelino-hero-image img {
  width: 100%;
  height: auto;
  border-radius: 20px;
  display: block;
}

/* ============================ */
/* TABLET */
/* ============================ */
@media (max-width: 992px) {
  #votelino-hero .votelino-hero-container {
    grid-template-columns: 1fr;
  }
}

/* ============================ */
/* MOBILE FIX (≤ 480px) */
/* ============================ */
@media (max-width: 480px) {

  #votelino-hero {
    padding: 35px 0;
  }

  #votelino-hero .votelino-hero-container {
    grid-template-columns: 1fr;
    padding: 0 16px;
    gap: 25px;
  }

  #votelino-hero .votelino-hero-title {
    font-size: 22px;
  }

  #votelino-hero .votelino-hero-description {
    font-size: 14px;
  }

  /* Meta jadi 1 kolom supaya tidak kepotong */
  #votelino-hero .votelino-hero-meta {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  #votelino-hero .votelino-hero-meta > div {
    background: #fff;
    padding: 12px;
    border-radius: 12px;
  }

}

/* COMING SOON SECTION */
#votelino-comingsoon {
  background: #f8f9fb;
  padding: 40px 0;
  font-family: 'Poppins', sans-serif;
}

#votelino-comingsoon .votelino-wrapper {
  width: 90%;
  margin: auto;
}

#votelino-comingsoon .votelino-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}

#votelino-comingsoon .votelino-title {
  font-family: 'Poppins', sans-serif;
  font-size: 24px;
  font-weight: 600;
  color: #1c1c1c;
}

#votelino-comingsoon .votelino-viewall {
  background: transparent;
  border: 1px solid #ccc;
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  transition: 0.3s;
}

#votelino-comingsoon .votelino-viewall:hover {
  background: #000;
  color: #fff;
}

/* Horizontal Scroll */
#votelino-comingsoon .votelino-scroll-container {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding-bottom: 10px;
  align-items: stretch; /* penting */
}

#votelino-comingsoon .votelino-scroll-container::-webkit-scrollbar {
  display: none;
}

/* Card */
#votelino-comingsoon .votelino-card {
  min-width: 280px;
  max-width: 280px;
  display: flex;
  flex-direction: column; /* penting */
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#votelino-comingsoon .votelino-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.15);
}

/* Image */
#votelino-comingsoon .votelino-card-image {
  position: relative;
  height: 200px;
  overflow: hidden;
}

#votelino-comingsoon .votelino-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#votelino-comingsoon .votelino-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(135deg, #1a3179, #3a5edb);
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 500;
}

#votelino-comingsoon .votelino-close-badge {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(
    135deg,
    #7a0f18 0%,
    #b81f2d 55%,
    #5c0b12 100%);
  color: #fff;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 20px;
  font-weight: 500;
}

/* Content */
#votelino-comingsoon .votelino-card-content {
  padding: 18px;
  display: flex;
  flex-direction: column;
  flex: 1; /* isi ruang */
}

#votelino-comingsoon .votelino-event-title {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 8px;

  line-height: 1.4;
  min-height: calc(1.4em * 2); /* paksa tinggi 2 baris */

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* Price Container */
.votelino-event-price {
    margin: 14px 0 20px;
    padding: 12px 16px;

    border-radius: 12px;

    background: rgba(26, 49, 121, 0.06);
    border: 1px solid rgba(26, 49, 121, 0.1);

    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* Label */
.votelino-price-label {
    font-size: 13px;
    color: #6b7280;
    font-weight: 500;
}

/* Price Value */
.votelino-price-value {
    font-size: 16px;
    font-weight: 700;
    color: #1a3179;
    letter-spacing: 0.5px;
}

/* Responsive */
@media (max-width: 768px) {
    .votelino-event-price {
        padding: 10px 14px;
    }

    .votelino-price-value {
        font-size: 15px;
    }
}

#votelino-comingsoon .votelino-event-location,
#votelino-comingsoon .votelino-event-date {
  font-size: 13px;
  color: #666;
  margin-bottom: 5px;
}

#votelino-comingsoon .votelino-card-footer {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#votelino-comingsoon .votelino-countdown {
  font-size: 12px;
  color: #7b2ff7;
  font-weight: 500;
}

/* Button Style */
.votelino-btn-vote {
  display: inline-block;
  padding: 8px 18px;
  background: linear-gradient(135deg, #1a3179, #3a5edb);
  color: #fff;
  border-radius: 25px;
  font-size: 13px;
  font-weight: 600;
  transition: 0.2s ease;
}

.votelino-card:hover .votelino-btn-vote {
  transform: scale(1.05);
}

.participant-search-wrapper {
    margin-bottom: 25px;
}

.participant-search {
    display: flex;
    align-items: center;
    background: white;
    border-radius: 50px;
    padding: 10px 18px;
    box-shadow: 0 8px 25px rgba(0,0,0,0.08);
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.participant-search:focus-within {
    border-color: #1a3179;
    box-shadow: 
        0 8px 25px rgba(26, 49, 121, 0.15),
        0 0 0 3px rgba(26, 49, 121, 0.1);
}

.search-icon {
    font-size: 18px;
    color: #1a3179;
    margin-right: 10px;
}

.participant-search input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    padding: 8px 0;
    color: #1a3179;
    font-weight: 500;
}

.participant-search input::placeholder {
    color: #9aa6d6;
    font-weight: 400;
}

.clear-btn {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: #1a3179;
    opacity: 0;
    transition: 0.2s;
}

.clear-btn.show {
    opacity: 1;
}


.votelino-contestant-card {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #ffffff;
    padding: 16px 20px;
    border-radius: 18px;
    margin-bottom: 16px;

    box-shadow: 
        0 4px 14px rgba(0,0,0,0.04),
        0 2px 6px rgba(0,0,0,0.03);

    transition: all 0.25s ease;
}

.votelino-contestant-card:hover {
    transform: translateY(-3px);
    box-shadow: 
        0 12px 24px rgba(26,49,121,0.12),
        0 4px 10px rgba(0,0,0,0.05);
}

/* LEFT SECTION */
.votelino-contestant-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.votelino-contestant-image {
    width: 60px;
    aspect-ratio: 4/5;
    border-radius: 16px;
    object-fit: cover;
    flex-shrink: 0;
}

/* INFO SECTION */
.votelino-contestant-info {
    display: flex;
    flex-direction: column;
}

.votelino-contestant-label {
    font-size: 12px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #9aa3c7;
    font-weight: 500;
}

.votelino-contestant-name {
    font-size: 16px;
    font-weight: 600;
    color: #1a3179;
    margin-top: 3px;
}

.votelino-contestant-meta {
    font-size: 13px;
    color: #6b7280;
    margin-top: 6px;
    display: flex;
    gap: 8px;
    align-items: center;
}

/* BUTTON */
.votelino-contestant-btn {
    background: linear-gradient(135deg, #1a3179, #3a5edb);
    color: #ffffff;
    padding: 9px 18px;
    border-radius: 30px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.votelino-contestant-btn:hover {
    background: #2748b3;
    transform: translateY(-1px);
    box-shadow: 0 6px 14px rgba(26,49,121,0.25);
}

/* RESPONSIVE */
@media (max-width: 576px) {

    .votelino-contestant-card {
        padding: 14px 16px;
        border-radius: 14px;
    }

    .votelino-contestant-image {
        width: 50px;
        aspect-ratio: 4/5;
    }

    .votelino-contestant-name {
        font-size: 14px;
    }

    .votelino-contestant-meta {
        font-size: 12px;
    }

    .votelino-contestant-btn {
        padding: 7px 14px;
        font-size: 12px;
    }
}

.votelino-page-header {
    text-align: center;
    padding: 40px 20px 30px;
}

.votelino-page-subtitle {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #1a3179;
    background: rgba(26, 49, 121, 0.08);
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 15px;
}

.votelino-page-title {
    font-weight: 700;
    color: #1a3179;

    /* Fluid typography */
    font-size: clamp(22px, 4vw, 38px);

    line-height: 1.2;
    margin: 0;
}

/* LEADERBOARD */
.votelino-leaderboard-single {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    gap: 24px;
    padding: 40px 20px;
    flex-wrap: nowrap; /* penting supaya tidak turun */
}

/* Base Item */
.votelino-leaderboard-single__item {
    text-align: center;
    transition: 0.3s ease;
}

/* Image wrapper */
.votelino-leaderboard-single__image {
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
    background: #fff;
}

.votelino-leaderboard-single__image img {
    width: 100%;
    display: block;
    object-fit: cover;
}

/* Rank 1 Highlight */
.votelino-leaderboard-single__item.rank-1 {
    transform: translateY(-20px);
}

.rank-1 .votelino-leaderboard-single__image {
    width: 260px;
}

.rank-2 .votelino-leaderboard-single__image,
.rank-3 .votelino-leaderboard-single__image {
    width: 200px;
}

/* Badge */
.votelino-leaderboard-single__badge {
    font-weight: 700;
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.votelino-leaderboard-single__badge.winner {
    color: #d4af37;
    font-size: 18px;
}

/* Name */
.votelino-leaderboard-single__name {
    font-size: 16px;
    font-weight: 600;
    margin-top: 12px;
}

/* Vote */
.votelino-leaderboard-single__vote {
    font-size: 14px;
    color: #777;
    margin-top: 4px;
}

/* Hover effect */
.votelino-leaderboard-single__item:hover {
    transform: translateY(-5px);
}

/* Mobile tetap horizontal tapi lebih kecil */
@media (max-width: 768px) {

    .votelino-leaderboard-single {
        gap: 16px;
        padding: 40px 20px;
    }

    .rank-1 .votelino-leaderboard-single__image {
        width: 36vw;
        max-width: 200px;
    }

    .rank-2 .votelino-leaderboard-single__image,
    .rank-3 .votelino-leaderboard-single__image {
        width: 28vw;
        max-width: 160px;
    }
}

/* VOTE CLOSED */
.votelino-vote-closed {
    max-width: 1200px;
    margin: 40px auto;
    padding: 50px 40px;
    text-align: center;

    border-radius: 20px;

    background: linear-gradient(
        135deg,
        #1a3179 0%,
        #16265f 100%
    );

    color: #ffffff;

    box-shadow:
        0 20px 50px rgba(26,49,121,0.35);

    position: relative;
    overflow: hidden;
}

/* subtle glow background */
.votelino-vote-closed::before {
    content: "";
    position: absolute;
    width: 400px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    top: -150px;
    right: -150px;
}

/* icon */
.votelino-vote-closed__icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;

    border-radius: 50%;
    background: rgba(255,255,255,0.15);

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 28px;
    font-weight: bold;

    box-shadow: inset 0 0 0 2px rgba(255,255,255,0.2);
}

/* title */
.votelino-vote-closed__title {
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 15px;
    color: white;
}

/* description */
.votelino-vote-closed__desc {
    font-size: 15px;
    opacity: 0.9;
    margin-bottom: 30px;
    line-height: 1.6;
    color: white
}

/* button */
.votelino-vote-closed__btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 999px;

    background: #ffffff;
    color: #1a3179;

    font-weight: 600;
    font-size: 14px;

    text-decoration: none;
    transition: all 0.3s ease;
}

.votelino-vote-closed__btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

@media (max-width: 768px) {
    .votelino-vote-closed {
        margin: 50px 20px;
        padding: 40px 25px;
    }

    .votelino-vote-closed__title {
        font-size: 22px;
    }

    .votelino-vote-closed__desc {
        font-size: 14px;
    }
}

/* ARTICLE SECTION */
/* ==========================
   SECTION BACKGROUND
========================== */

.votelino-article-section {
  position: relative;
  padding: 120px 0 100px;
  overflow: hidden;

  /* Deep Royal Luxury Gradient */
  background: linear-gradient(
    135deg,
    #1a3179 0%,
    #16265f 35%,
    #0f1d4a 70%,
    #0c1638 100%
  );

  /* ROUND CORNER TOP */
  border-top-left-radius: 80px;
  border-top-right-radius: 80px;
}

/* ==========================
   GOLD LUXURY GLOW (RIGHT)
========================== */

.votelino-article-section::before {
  content: "";
  position: absolute;
  width: 700px;
  height: 700px;
  top: -250px;
  right: -200px;

  background: radial-gradient(
    circle,
    rgba(255, 215, 0, 0.18),
    rgba(255, 215, 0, 0.05) 40%,
    transparent 70%
  );

  filter: blur(90px);
  pointer-events: none;
}

/* ==========================
   SOFT LIGHT ACCENT (LEFT)
========================== */

.votelino-article-section::after {
  content: "";
  position: absolute;
  width: 1000px;
  height: 500px;
  bottom: -150px;
  left: -150px;

  background: radial-gradient(
    circle,
    rgba(255,255,255,0.08),
    transparent 70%
  );

  filter: blur(80px);
  pointer-events: none;
}

/* ==========================
   SUBTLE GEOMETRIC PATTERN
========================== */

.votelino-article-section .pattern-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.4;
  pointer-events: none;
}

/* ==========================
   CONTAINER
========================== */

.votelino-container {
  width: 90%;
  margin: auto;
  position: relative;
  z-index: 2;
}


/* ==========================
   HEADER
========================== */

.votelino-header {
  text-align: center;
  margin-bottom: 70px;
}

.votelino-header h2 {
  font-size: 42px;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 15px;
  letter-spacing: 0.5px;
}

.votelino-header p {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  margin-bottom: 25px;
}

.votelino-btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 50px;
  background: linear-gradient(135deg, #ffffff, #d4d4d4);
  color: #1a3179;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s ease;
}

.votelino-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.25);
}

/* ==========================
   SLIDER
========================== */

.votelino-slider {
  display: flex;
  gap: 40px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  align-items: stretch;
  margin-bottom: 20px;
}

.votelino-slider::-webkit-scrollbar {
  height: 6px;
}

.votelino-slider::-webkit-scrollbar-thumb {
  background: rgba(255,255,255,0.3);
  border-radius: 10px;
}

/* ==========================
   GLASS CARD
========================== */

.votelino-card {
  min-width: 360px;
  max-width: 360px;
  border-radius: 24px;
  overflow: hidden;

  display: flex;              /* WAJIB */
  flex-direction: column;     /* supaya isi tersusun vertikal */
  
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);

  border: 1px solid rgba(255,255,255,0.15);
  box-shadow: 0 20px 40px rgba(0,0,0,0.3);

  transition: 0.4s ease;
  scroll-snap-align: start;
  height: 100%;  
}

.votelino-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}

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

.card-content {
  padding: 25px;
  display: flex;
  flex-direction: column;
  flex: 1; /* isi penuh */
}

.card-content h3 {
  color: #ffffff;
  font-size: 20px;
  font-weight: 600;
  margin-bottom: 12px;
}

.card-content p {
  color: rgba(255,255,255,0.75);
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 15px;
}

.meta {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
}

.votelino-slider > .votelino-card {
  flex: 0 0 360px;        /* fix width */
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 992px) {
  .votelino-header h2 {
    font-size: 34px;
  }
}

@media (max-width: 768px) {

  .votelino-article-section {
    padding: 70px 0;
  }

  .votelino-header h2 {
    font-size: 28px;
  }

  .votelino-header p {
    font-size: 14px;
  }

  .votelino-card {
    min-width: 280px;
    max-width: 280px;
  }

  .card-image img {
    height: 180px;
  }
}

@media (max-width: 480px) {
  .votelino-header h2 {
    font-size: 24px;
  }

  .votelino-btn {
    padding: 10px 24px;
    font-size: 14px;
  }
}

/* ARTICLE DETAIL SECTION */
/* ==========================
   SECTION BACKGROUND
========================== */

.votelino-article-detail {
  padding: 100px 20px;
  background: linear-gradient(
    180deg,
    #ffffff 0%,
    #f4f6fb 100%
  );
}

/* ==========================
   CONTAINER
========================== */

.article-container {
  max-width: 900px;
  margin: auto;
}

/* ==========================
   FEATURED IMAGE
========================== */

.article-featured {
  margin-bottom: 40px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.08);
}

.article-featured img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* ==========================
   TITLE
========================== */

/* ==========================
   ARTICLE HEADER WRAPPER
========================== */

.article-header {
  max-width: 900px;
  margin: 0 auto 60px;
}

/* ==========================
   TOP META (UPDATE + DATE)
========================== */

.article-meta-top {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-bottom: 20px;
}

.article-label {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a3179;
}

.article-date {
  font-size: 14px;
  color: #777;
}

/* ==========================
   TITLE
========================== */

.article-title {
  font-weight: 600;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: #111;
  margin-bottom: 25px;
  text-align: left;
}

/* ==========================
   SUBTITLE / DECK
========================== */

.article-subtitle {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.5;
  color: #444;
  margin-bottom: 35px;
  max-width: 800px;
}

/* ==========================
   SHARE WRAPPER
========================== */

.article-share-wrapper {
  margin-top: 40px;
}

/* ==========================
   ICON CONTAINER
========================== */

.share-icons {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* ==========================
   CIRCLE STYLE
========================== */

.share-circle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #d9d9d9;

  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 22px;
  color: #ffffff;

  text-decoration: none;
  transition: all 0.3s ease;
}

/* Hover effect (Desktop only) */
@media (hover: hover) {
  .share-circle.whatsapp:hover {
    background: #25D366;
  }

  .share-circle.twitter:hover {
    background: #000000;
  }

  .share-circle.facebook:hover {
    background: #1877F2;
  }

  .share-circle.link:hover {
    background: #1a3179;
  }
}

/* ==========================
   MOBILE RESPONSIVE
========================== */

@media (max-width: 768px) {

  .share-circle {
    width: 50px;
    height: 50px;
    font-size: 18px;
  }

  .share-title {
    font-size: 16px;
  }

}




/* ==========================
   META
========================== */

.article-meta {
  font-size: 14px;
  color: #777;
  margin-bottom: 40px;
}

/* ==========================
   CONTENT
========================== */

.article-content {
  font-size: 17px;
  line-height: 1.8;
  color: #333;
}

/* Heading inside content */
.article-content h2,
.article-content h3 {
  margin-top: 40px;
  margin-bottom: 15px;
  color: #1a3179;
}

/* Paragraph spacing */
.article-content p {
  margin-bottom: 20px;
}

/* Links inside content */
.article-content a {
  color: #1a3179;
  text-decoration: underline;
}

/* Images inside content */
.article-content img {
  max-width: 100%;
  border-radius: 15px;
  margin: 30px 0;
}

/* ==========================
   DIVIDER
========================== */

.article-divider {
  margin: 60px 0 30px;
  height: 1px;
  background: linear-gradient(to right, transparent, #ddd, transparent);
}

/* ==========================
   FOOTER
========================== */

.article-footer {
  text-align: center;
}

.btn-back {
  display: inline-block;
  padding: 12px 28px;
  border-radius: 30px;
  background: #1a3179;
  color: #ffffff;
  text-decoration: none;
  font-weight: 600;
  transition: 0.3s ease;
}

.btn-back:hover {
  background: #16265f;
  transform: translateY(-2px);
}

/* ==========================
   RESPONSIVE
========================== */

@media (max-width: 768px) {

  .article-meta-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
  }

  .article-title {
    line-height: 1.15;
  }

  .article-subtitle {
    font-size: 18px;
  }

  .article-content {
    font-size: 15px;
  }

  .votelino-article-detail {
    padding: 70px 15px;
  }
}

/* ==========================
   RELATED SECTION
========================== */

.related-articles {
  padding: 30px 20px;
}

.related-container {
  max-width: 1100px;
  margin: auto;
}

.related-title {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 50px;
  color: #111;
}

/* ==========================
   ITEM
========================== */

.related-item {
  display: flex;
  gap: 40px;
  align-items: center;
  padding: 30px 0;
  text-decoration: none;
  border-top: 1px solid #e5e5e5;
  transition: 0.3s ease;
}

.related-item:hover h3 {
  color: #1a3179;
}

/* ==========================
   IMAGE
========================== */

.related-image {
  width: 200px;
  flex-shrink: 0;
}

.related-image img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

/* ==========================
   CONTENT
========================== */

.related-content {
  flex: 1;
}

.related-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #1a3179;
  display: block;
  margin-bottom: 8px;
}

.related-content h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  color: #111;
  margin-bottom: 10px;
  transition: 0.3s ease;
}

.related-date {
  font-size: 14px;
  color: #777;
}

/* ==========================
   MOBILE APPLE STYLE
========================== */

@media (max-width: 768px) {

  .related-articles {
    padding: 50px 16px;
  }

  .related-title {
    font-size: 20px;
    margin-bottom: 25px;
  }

  .related-item {
    flex-direction: row; /* tetap horizontal */
    align-items: flex-start;
    gap: 15px;
    padding: 18px 0;
  }

  .related-image {
    width: 90px;   /* kecil seperti Apple */
    flex-shrink: 0;
  }

  .related-image img {
    width: 100%;
    height: 90px;
    object-fit: cover;
    border-radius: 14px;
  }

  .related-content h3 {
    font-size: 15px;
    line-height: 1.4;
    margin-bottom: 6px;
  }

  .related-label {
    font-size: 10px;
    margin-bottom: 4px;
  }

  .related-date {
    font-size: 12px;
  }

}

/* ARTICLE LIST PAGE */

.votelino-article-page {
  background: #ffffff;
}

/* HERO */
.article-hero {
  text-align: center;
  padding: 100px 0 60px;
}

.article-hero h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  color: #111;
  margin-bottom: 15px;
}

.article-hero p {
  font-size: 18px;
  color: #666;
}

/* FEATURED */
.featured-card {
  display: flex;
  gap: 50px;
  align-items: center;
  text-decoration: none;
  margin-bottom: 80px;
}

.featured-image {
  flex: 1;
}

.featured-image img {
  width: 100%;
  border-radius: 24px;
}

.featured-content {
  flex: 1;
}

.label {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #1a3179;
}

.featured-content h2 {
  font-size: 32px;
  margin: 15px 0;
  color: #111;
}

.featured-content p {
  color: #555;
  margin-bottom: 15px;
}

.date {
  font-size: 14px;
  color: #888;
}

/* GRID */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}

.article-card {
  text-decoration: none;
  color: inherit;
}

.article-card img {
  width: 100%;
  border-radius: 18px;
  margin-bottom: 15px;
  transition: 0.3s ease;
  aspect-ratio: 5/4;
  object-fit: cover;
}

.article-card:hover img {
  transform: scale(1.03);
}

.article-card h3 {
  font-size: 20px;
  margin: 10px 0;
  color: #111;
}

/* PAGINATION */
.votelino-pagination {
  margin-top: 80px;
  text-align: center;
}

.votelino-pagination a {
  margin: 0 8px;
  text-decoration: none;
  color: #666;
}

.votelino-pagination a.active {
  color: #1a3179;
  font-weight: 700;
}

/* CTA */
.article-cta {
  margin-top: 100px;
  padding: 80px 20px;
  background: linear-gradient(135deg, #1a3179, #16265f);
  color: #fff;
  text-align: center;
  border-radius: 60px 60px 0 0;
}

.article-cta h2 {
  font-size: 32px;
  margin-bottom: 15px;
}

.article-cta p {
  margin-bottom: 25px;
  color: rgba(255,255,255,0.8);
}

.btn-primary {
  display: inline-block;
  padding: 14px 35px;
  background: #ffffff;
  color: #1a3179;
  font-weight: 600;
  border-radius: 40px;
  text-decoration: none;
  transition: 0.3s ease;
}

.btn-primary:hover {
  transform: translateY(-3px);
}

/* RESPONSIVE */
@media (max-width: 992px) {
  .featured-card {
    flex-direction: column;
  }

  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .article-grid {
    grid-template-columns: 1fr;
  }

  .article-hero {
    padding: 60px 0 40px;
  }

  .article-cta {
    border-radius: 30px 30px 0 0;
  }
}

.votelino-loadmore-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;

    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.4px;

    color: #ffffff;
    background: linear-gradient(
        135deg,
        #1a3179 0%,
        #243f9c 50%,
        #16265f 100%
    );

    border: 1px solid rgba(255,255,255,0.08);
    cursor: pointer;
    overflow: hidden;

    box-shadow:
        0 8px 20px rgba(26,49,121,0.35),
        inset 0 0 0 1px rgba(255,255,255,0.05);

    transition: all 0.35s ease;
}

.votelino-loadmore-btn span {
    display: inline-block;
    padding: 2px 0; /* memberi ruang vertikal kecil pada teks */
    letter-spacing: 0.6px; /* sedikit lebih elegan */
}

/* Hover Effect */
.votelino-loadmore-btn:hover {
    transform: translateY(-3px);
    box-shadow:
        0 12px 28px rgba(26,49,121,0.5),
        0 0 18px rgba(36,63,156,0.4);
}

/* Click Effect */
.votelino-loadmore-btn:active {
    transform: translateY(0px);
    box-shadow:
        0 6px 14px rgba(26,49,121,0.35);
}

/* Subtle Glow Animation */
.votelino-loadmore-btn::before {
    content: "";
    position: absolute;
    width: 140%;
    height: 100%;
    top: 0;
    left: -120%;

    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,0.25) 50%,
        transparent 100%
    );

    transition: all 0.6s ease;
}

.votelino-loadmore-btn:hover::before {
    left: 120%;
}

/* Disabled State */
.votelino-loadmore-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    box-shadow: none;
}

/* Responsive */
@media (max-width: 768px) {
    .votelino-loadmore-btn {
        width: 100%;
        padding: 16px;
        font-size: 14px;
    }
}

/* ===== Wrapper (scroll container) ===== */
.article-categories-wrapper {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 10px;
    margin-bottom: 40px;
}

/* Hide scrollbar (modern look) */
.article-categories-wrapper::-webkit-scrollbar {
    display: none;
}

/* ===== Container ===== */
.article-categories {
    display: flex;
    gap: 14px;
    align-items: center;
    flex-wrap: nowrap; /* important for horizontal scroll */
    min-width: max-content;
}

/* ===== Button Base ===== */
.category-btn {
    position: relative;

    padding: 12px 30px; /* lebih lega */
    border-radius: 999px;

    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.5px;

    border: 1px solid rgba(26,49,121,0.18);
    background: rgba(26,49,121,0.07);
    color: #1a3179;

    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

/* Hover */
.category-btn:hover {
    background: rgba(26,49,121,0.12);
    transform: translateY(-2px);
}

/* Active */
.category-btn.active {
    background: linear-gradient(
        135deg,
        #1a3179 0%,
        #243f9c 100%
    );
    color: #ffffff;
    border-color: transparent;

    padding: 12px 30px; /* sedikit lebih besar saat active */
    box-shadow: 0 8px 22px rgba(26,49,121,0.35);
}

/* Subtle shine effect */
.category-btn.active::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 999px;
    background: linear-gradient(
        120deg,
        transparent 0%,
        rgba(255,255,255,0.2) 50%,
        transparent 100%
    );
    opacity: 0;
    transition: opacity 0.4s ease;
}

.category-btn.active:hover::after {
    opacity: 1;
}

/* ===== Responsive ===== */
@media (max-width: 768px) {

    .article-categories-wrapper {
        margin-bottom: 30px;
    }

    .category-btn {
        padding: 11px 22px;
        font-size: 14px;
    }
}








