/* Utilities */
@charset "UTF-8";

:root {
  --default-font: 'KoHo', sans-serif;
  --heading-font: 'KoHo', sans-serif;
  --nav-font: 'KoHo', sans-serif;
  --background-color: #ffffff;
  --default-color: #eb1f27;
  --heading-color: #131313;
  --accent-color: #f6921e;
  --surface-color: #1b75bc;
  --surface2-color: #6775baff;
  --contrast-color: #a65224;
  --smooth-dark: #131313;
  --bs-white: #ffffff;
  --color-red: #eb1f27;
  --color-orange: #f6921e;
  --color-blue: #1b75bc;
  --color-brown: #a65224;
  --color-gold: #ffd700;
  --color-silver: #c0c0c0;
  --color-bronze: #cd7f32;
  --nav-color: #999999;
  --nav-hover-color: #000000;
  --nav-mobile-background-color: #ffffff;
  --nav-dropdown-background-color: #ffffff;
  --nav-dropdown-color: #666666;
  --nav-dropdown-hover-color: #313131;
  --bs-primary: #1b75bc;
  --bs-secondary: #005c9b;
  scroll-behavior: smooth;
}

body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  text-decoration: none;
  color: var(--bs-primary);
}

a:hover {
  color: var(--bs-secondary);
}

.w-full {
  width: 100%;
}

/* Text */
.text-accent {
  color: var(--accent-color);
}
.text-default {
  color: var(--default-color);
}
.text-default {
  color: var(--default-color);
}
.text-surface {
  color: var(--surface-color);
}
.text-sm {
  font-size: 0.8rem;
}
.text-md {
  font-size: 1.2rem;
}

.text-lg {
  font-size: 2rem;
}

/* Background */
.bg-accent {
  background-color: var(--surface-color);
}
.bg-blue {
  background-color: var(--color-blue);
}
.bg-default {
  background-color: var(--default-color);
}
.bg-smooth {
  background-color: var(--smooth-dark);
}
.bg-contrast {
  background-color: var(--contrast-color);
}

/* Padding dan Margin */
.mt-10 {
  margin-top: 5rem;
}
.mt-6 {
  margin-top: 6rem;
}
.my-10 {
  margin-top: 5rem;
  margin-bottom: 5rem;
}
.mb-10 {
  margin-bottom: 5rem;
}

.px-10 {
  padding: 0 5rem;
}
.py-10 {
  padding-top: 10rem;
  padding-bottom: 10rem;
}
.pt-10 {
  padding-top: 10rem;
}

.h-screen {
  height: 100vh;
}


.object-cover {
  object-fit: cover;
}

@media (max-width: 1199px) {
  .w-full {
    width: 25%;
  }
}

/* End Utilities */


.page-header-pattern {
  padding: 4rem 0;
  background-color: var(--surface-color);

  margin-top: 8rem;
}

.page-header-pattern .page-title {
  padding-top: 4rem;
  color: var(--background-color);
}

/* header */
.header {
  padding: 8px 48px;
  transition: all 0.3s ease-in-out; 
  z-index: 997;
  background-color: #ffffff; 
  position: fixed; 
  top: 0;
  left: 0;
  right: 0;
  width: 100%; 
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05); 
  overflow: visible;
}

.header-logo {
  max-height: 7.3rem;
  width: auto;
}

.header-logo-berprestasi {
  max-height: 2.5rem;
  margin-left: 8px;
  width: auto;
}

.container-header {
  padding: 0 20px;
  display: flex; 
  align-items: center; 
  justify-content: space-between;
}

.header .logo {
  display: flex; 
  align-items: center;
}

.header .logo h1 {
  font-size: 30px;
  margin: 0;
  font-weight: 400;
  color: var(--heading-color); 
}

.header.scrolled::before {
  content: "";
  position: absolute;
  inset: 0;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background-color: rgba(255, 255, 255, 0.6); /* semi transparan supaya blur halus */
  z-index: -1;
}

.header.scrolled {
background-color: rgba(255, 255, 255, 0.6); /* semi transparan supaya blur halus */

  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1); 
}

@media (min-width: 1200px) {
  .navmenu {
    padding: 0;
  }

  .navmenu ul {
    margin: 0;
    padding: 0;
    display: flex;
    list-style: none;
    align-items: center;
  }

  .navmenu li {
    position: relative;
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--smooth-dark);
    padding: 18px 15px;
    font-size: 1.2rem;
    font-family: var(--nav-font);
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    transition: 0.3s;
  }

  .navmenu li:last-child a {
    padding-right: 0;
  }

  .navmenu li:hover > a,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--accent-color);
  }

  .navmenu .dropdown ul {
    margin: 0;
    padding: 10px 0;
    background: var(--nav-dropdown-background-color);
    display: block;
    position: absolute;
    visibility: hidden;
    left: 14px;
    top: 130%;
    opacity: 0;
    transition: 0.3s;
    border-radius: 4px;
    z-index: 99;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu .dropdown ul li {
    min-width: 200px;
  }

  .navmenu .dropdown ul a {
    padding: 10px 20px;
    font-size: 15px;
    text-transform: none;
    color: var(--nav-dropdown-color);
  }

  .navmenu .dropdown ul a i {
    font-size: 12px;
  }

  .navmenu .dropdown ul a:hover,
  .navmenu .dropdown ul .active:hover,
  .navmenu .dropdown ul li:hover > a {
    color: var(--nav-dropdown-hover-color);
  }

  .navmenu .dropdown:hover > ul {
    opacity: 1;
    top: 100%;
    visibility: visible;
  }

  .navmenu .dropdown .dropdown ul {
    top: 0;
    left: -90%;
    visibility: hidden;
  }

  .navmenu .dropdown .dropdown:hover > ul {
    opacity: 1;
    top: 0;
    left: -100%;
    visibility: visible;
  }
}

@media (max-width: 1199px) {
  .mobile-nav-toggle {
    color: var(--smooth-dark);
    font-size: 28px;
    line-height: 0;
    margin-right: 10px;
    margin-top: 10px;
    cursor: pointer;
    transition: color 0.3s;
  }
  
  .header {
  padding: 2px 8px;
  transition: all 0.5s;
  z-index: 997;
}

  .container-header {
    padding: 0 0px;
  }

  .header-logo {
    max-height: 5rem;
    margin-right: 8px;
  }
  .header-logo-berprestasi {
    max-height: 2rem;
    margin-right: 8px;
  }

  .navmenu {
    padding: 0;
    z-index: 9997;
  }

  .navmenu ul {
    display: none;
    list-style: none;
    position: absolute;
    inset: 60px 20px 20px 20px;
    padding: 10px 0;
    margin: 0;
    border-radius: 6px;
    background-color: var(--nav-mobile-background-color);
    overflow-y: auto;
    transition: 0.3s;
    z-index: 9998;
    box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.1);
  }

  .navmenu a,
  .navmenu a:focus {
    color: var(--smooth-dark);
    padding: 10px 20px;
    font-family: var(--nav-font);
    font-size: 18px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: space-between;
    white-space: nowrap;
    transition: 0.3s;
  }

  .navmenu a i,
  .navmenu a:focus i {
    font-size: 12px;
    line-height: 0;
    margin-left: 5px;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
    background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
  }

  .navmenu .toggle-dropdown.rotated {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
  }

  .navmenu a i:hover,
  .navmenu a:focus i:hover {
    background-color: var(--accent-color);
    color: var(--contrast-color);
  }

  .navmenu a:hover,
  .navmenu .active,
  .navmenu .active:focus {
    color: var(--accent-color);
  }

  .navmenu .active i,
  .navmenu .active:focus i {
    background-color: var(--accent-color);
    color: var(--contrast-color);
    transform: rotate(180deg);
  }

  .navmenu .dropdown ul {
    position: static;
    display: none;
    z-index: 99;
    padding: 10px 0;
    margin: 10px 20px;
    background-color: var(--nav-dropdown-background-color);
    border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
    box-shadow: none;
    transition: all 0.5s ease-in-out;
  }

  .navmenu .dropdown ul ul {
    background-color: rgba(33, 37, 41, 0.1);
  }

  .navmenu .dropdown > .dropdown-active {
    display: block;
    background-color: rgba(33, 37, 41, 0.03);
  }

  .mobile-nav-active {
    overflow: hidden;
  }

  .mobile-nav-active .mobile-nav-toggle {
    color: #fff;
    position: absolute;
    font-size: 34px;
    top: 10px;
    right: 20px;
    margin-right: 0;
    z-index: 9999;
  }

  .mobile-nav-active .navmenu {
    position: fixed;
    overflow: hidden;
    inset: 0;
    background: rgba(33, 37, 41, 0.8);
    transition: 0.3s;
  }

  .mobile-nav-active .navmenu > ul {
    display: block;
  }
}

/* End header */

/* Index */
.cabor-section {
  background-color: var(--background-color);
}

.mirror-vertical {
  transform: scaleY(-1);
}

.mirror-horizontal {
  transform: scaleX(-1);
}

.cabor-logo {
  position: relative;
  width: 100%;
  padding-top: 100%;
  margin: 10px 0;
  background-color: var(--bs-white);
  border-radius: 100%;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transition: transform 0.5s ease, background-color 0.5s linear, box-shadow 0.5s ease;
}

.cabor-logo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.cabor-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  background-color: var(--color-silver);
}

.section-title {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 3rem;
  font-weight: 700;
  color: #333;
}
.grid-section-title {
  text-align: start;
  margin-bottom: 1rem;
  font-weight: 700;
  color: #333;
  font-size: 5rem;
}

.line-heading {
  width: 12rem;
  height: 0.5rem;
  margin: auto;
  margin-bottom: 6rem;
  background-color: var(--default-color);
}
.grid-line-heading {
  width: 12rem;
  height: 0.5rem;
  margin-bottom: 3rem;
  background-color: var(--default-color);
}


.title-cabor {
  text-align: center;
  margin-top: 1rem;
  font-weight: 600;
  font-size: 1.5rem;
}

.title-cabor:hover,
.title-cabor:focus {
  color: var(--surface-color);
}

.lihat-selengkapnya {
  background-color: var(--surface-color);
  color: var(--background-color);
  padding: 0.5rem 1rem;
  border-radius: 0.3rem;
  font-size: 1rem;
}

.lihat-selengkapnya:hover,
.lihat-selengkapnya:focus {
  color: var(--background-color);
  background-color: var(--default-color);
}
.grid-lihat-selengkapnya {
  background-color: var(--surface-color);
  color: var(--background-color);
  padding: 1rem 1rem;
  border-radius: 0.3rem;
  font-size: 1rem;
}

.btn-see-more-simple {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  font-weight: 600;
  color: var(--accent-color);
  border: 2px solid var(--accent-color);
  border-radius: 6px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.w-full {
  width: 25%;
}
.baca-selengkapnya {
  display: inline-block;
  padding: 0.6rem 1.25rem;
  font-weight: 600;
  color: var(--background-color);
  background-color: var(--smooth-dark);
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.baca-selengkapnya:hover {
  color: var(--smooth-dark);
  background-color: var(--background-color);
}

.btn-see-more-simple:hover {
  background-color: var(--accent-color);
  color: #ffffff;
}

.grid-lihat-selengkapnya:hover,
.grid-lihat-selengkapnya:focus {
  color: var(--background-color);
  background-color: var(--default-color);
}

.grid-parent {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
  grid-template-rows: repeat(5, 1fr);
  gap: 10px;
}

.div2 {
  grid-column: span 2 / span 2;
  grid-row: span 2 / span 2;
  grid-column-start: 7;
  grid-row-start: 1;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.div4 {
  grid-column: span 2 / span 2;
  grid-row: span 2 / span 2;
  grid-column-start: 7;
  grid-row-start: 3;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.div5 {
  grid-column: span 2 / span 2;
  grid-row: span 2 / span 2;
  grid-column-start: 5;
  grid-row-start: 4;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.div6 {
  grid-column: span 2 / span 2;
  grid-row: span 2 / span 2;
  grid-column-start: 5;
  grid-row-start: 2;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.div7 {
  grid-column: span 2 / span 2;
  grid-row: span 2 / span 2;
  grid-column-start: 3;
  grid-row-start: 3;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.div9 {
  grid-column: span 2 / span 2;
  grid-row: span 3 / span 3;
  grid-column-start: 1;
  grid-row-start: 3;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
}

.div10 {
  grid-column: span 4 / span 4;
  grid-row: span 4 / span 4;
  grid-column-start: 1;
  grid-row-start: 1;
}
.grid-parent > div {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
}

.grid-parent img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: inherit;
  box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
  transition: transform 0.6s ease, filter 0.4s ease;
}

.grid-parent > div:hover img {
  transform: scale(1.08);
  filter: brightness(1.05);
}

.gallery-card {
  position: relative;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  height: 400px;
}

.gallery-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.gallery-card img.card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a.gallery-card {
  display: block;
  text-decoration: none;
  color: inherit;
}

a.gallery-card:hover {
  transform: translateY(-10px);
}
.card-logo {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 60px;
  z-index: 2;
}

.card-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  color: white;
  padding: 2rem 1rem 1rem;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85), transparent);
  z-index: 1;
}

.card-caption p {
  margin: 0;
  font-weight: 500;
  font-size: 0.9rem;
}

.card-news {
  background-color: var(--surface-color);
  padding: 2rem;
}

.img-news {
  width: 256px;
  height: 256px;
  object-fit: cover;
  display: block;
}

.title-truncate-3-lines {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;

  -webkit-line-clamp: 3;


  line-height: 1.4em; 
  min-height: 4.2em; 
}


.mendali-none{
    display: none;
}

.header-breaker {
  margin-top: 10rem;
}

@media (min-width: 1200px) {
}

@media (max-width: 1199px) {
    
      .header-breaker {
    margin-top: 6rem;
  }
  
    .card-news {
    padding-top: 1rem;
    flex-direction: column-reverse;
    text-align: center;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    padding: 0;
  }

  .news-content {
    margin-top: 2rem;
    padding: 1rem;
  }

  .img-news {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  
    .page-header-pattern {
    padding: 4rem 0;
    background-color: var(--surface-color);

    margin-top: 3rem;
  }

  .news-image {
    margin-top: 1rem;
  }

  
  .title-cabor {
    font-size: 1rem;
  }
  .px-10 {
    padding: 0 2rem;
  }
  .py-10 {
    padding-top: 5rem;
    padding-bottom: 5rem;
  }
  .line-heading {
    margin-bottom: 2rem;
  }

  .grid-lihat-selengkapnya:hover,
  .grid-lihat-selengkapnya:focus {
    color: var(--background-color);
    background-color: var(--default-color);
  }

  .grid-parent {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(4, 1fr);
    gap: 8px;
  }

  .div2 {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
    grid-column-start: 3;
    grid-row-start: 1;
  }

  .div4 {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
    grid-column-start: 3;
    grid-row-start: 3;
  }

  .div5 {
    display: none;
  }

  .div6 {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
    grid-column-start: 1;
    grid-row-start: 1;
  }

  .div7 {
    display: none;
  }

  .div9 {
    grid-column: span 2 / span 2;
    grid-row: span 2 / span 2;
    grid-column-start: 1;
    grid-row-start: 3;
  }
  
  .mendali-none{
      display: block;
  }

  .div10 {
display:none;
  }

  .grid-lihat-selengkapnya {
    background-color: var(--surface-color);
    color: var(--background-color);
    padding: 0.8rem 1rem;
    border-radius: 0.3rem;
    font-size: 1rem;
  }

  .grid-lihat-selengkapnya:hover,
  .grid-lihat-selengkapnya:focus {
    color: var(--background-color);
    background-color: var(--default-color);
  }

  .grid-section-title {
    text-align: start;
    margin-bottom: 0.8rem;
    font-weight: 700;
    color: #333;
    font-size: 1.8rem;
  }
  .grid-line-heading {
  width: 12rem;
  height: 0.5rem;
  margin-bottom: 3rem;
  background-color: var(--default-color);
 }

  .section-title {
    font-size: 1.5rem;
  }
}
/* End Index */

/* ================= HALAMAN KONTINGEN ================= */
.page-header-yogi {
  padding: 4rem 2rem 0;
  text-align: center;
}

.page-header-yogi h1 {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.summary-card {
  background-color: var(--bs-white);
  border-radius: 8px;
  padding: 2rem;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
  border-top: 4px solid var(--color-orange);
}

.summary-card .stat-number {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-blue);
}

.summary-card .stat-label {
  font-size: 1rem;
  color: #6c757d;
  font-weight: 500;
}

.contingent-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  transition: all 0.3s ease;
  background-color: var(--bs-white);
}

.contingent-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
  border-left: 5px solid var(--color-red);
}

.contingent-card .card-header {
  background-color: transparent;
  border-bottom: 1px solid #eee;
  font-weight: 700;
  color: var(--color-blue);
  display: flex;
  align-items: center;
  gap: 10px;
}

.contingent-card .logo-prov {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);

  background-color: transparent;
  font-size: 0;
  color: transparent;
}

.contingent-card .list-group-item {
  border-left: none;
  border-right: none;
}

/* Kontingen V2 */
.contingent-card-v2 {
  border-radius: 12px; /* Sudut lebih tumpul */
  border: 1px solid #e9ecef;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contingent-card-v2:hover {
  transform: translateY(-8px);
  box-shadow: 0 10px 25px rgba(39, 57, 143, 0.15) !important; /* Bayangan dengan warna biru */
}

.logo-prov-v2 {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.stat-box {
  background-color: #f8f9fa; /* Latar belakang abu-abu muda */
  padding: 0.75rem;
  border-radius: 8px;
  height: 100%;
}

.stat-box i {
  color: var(--color-blue);
}

/* ================= END KONTINGEN ================= */

/* ================= DETAIL KONTINGEN ================= */
/* ================= PROFILE CARD ================= */
.contingent-profile {
  --radius: 18px;
  border-radius: var(--radius);
  background: var(--bs-card-bg);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.contingent-profile:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.09);
}
.contingent-accent {
  height: 4px;
  width: 100%;
  border-top-left-radius: var(--radius);
  border-top-right-radius: var(--radius);
  background: linear-gradient(90deg, var(--bs-primary), var(--bs-info));
}
.contingent-profile .card-body {
  padding: 1.25rem 1.25rem 1rem;
}
.avatar-wrap {
  width: 72px;
  height: 72px;
  border-radius: 999px;
  padding: 8px;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: grid;
  place-items: center;
}
.avatar-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 999px;
  background: #fff;
}
.stat-tile {
  padding: 10px 12px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.stat-label {
  font-size: 0.92rem;
  color: #6b7280;
}
.stat-value {
  font-weight: 700;
  color: #0f172a;
}
.stat-chip {
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(27, 117, 188, 0.12); 
  border: 1px solid rgba(0, 92, 155, 0.35);
  display: flex;
  justify-content: space-between;
  gap: 10px;
}
.chip-label {
  font-size: 0.9rem;
  color: var(--bs-primary);
  font-weight: bold;
}
.chip-value {
  font-weight: 700;
  color: #0f172a;
}
.divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
  margin: 6px 0 2px;
}

/* ================= TABLE RESULTS ================= */
.table-results {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}
.table-results .card-header {
  border-bottom: 0;
  letter-spacing: 0.4px;
}
.table-results thead tr {
  background: #111827;
  color: #fff;
}
.table-results tbody tr:nth-child(odd) {
  background: #f9fafb;
}
.table-results td,
.table-results th {
  vertical-align: middle;
}
.badge-medal {
  font-weight: 700;
  border-radius: 999px;
  padding: 0.35rem 0.6rem;
}
.badge-gold {
  background: #fef3c7;
  color: #92400e;
}
.badge-silver {
  background: #e5e7eb;
  color: #374151;
}
.badge-bronze {
  background: #f3e8e6;
  color: #7c2d12;
}

/* ================= CABOR CARDS ================= */
.section-header .section-line {
  flex: 1;
  height: 2px;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.12), transparent 70%);
  border-radius: 999px;
}
.cabor-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}
.cabor-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: rgba(39, 56, 143, 0.45);
}
.cabor-card .card-header {
  background: #f8fafc;
  color: #111827;
}
.cabor-card .logo-cabor {
  width: 26px;
  height: 26px;
  object-fit: contain;
  filter: grayscale(30%);
}

/* ================= END DETAIL KONTINGEN ================ */

/* ================= START CABOR KONTINGEN ================= */
.cabor-summary {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.06);
}
.cabor-summary .card-body {
  padding: 1.25rem;
}
.cabor-picto {
  width: 56px;
  height: 56px;
  object-fit: contain;
}
.kontingen-logo {
  width: 48px;
  height: 48px;
  border-radius: 999px;
  object-fit: contain;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

/* reuse dari halaman sebelumnya (kalau belum ada) */
.stat-tile {
  padding: 10px 12px;
  border-radius: 12px;
  background: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.stat-label {
  font-size: 0.92rem;
  color: #6b7280;
}
.stat-value {
  font-weight: 700;
  color: #0f172a;
}
.stat-chip {
  padding: 10px 12px;
  border-radius: 999px;
 background: rgba(27, 117, 188, 0.12); 
  border: 1px solid rgba(0, 92, 155, 0.35);
}
.chip-label {
  font-size: 0.9rem;
  color: var(--bs-primary);
  font-weight: bold;
}
.chip-value {
  font-weight: 700;
  color: #0f172a;
}
.divider {
  height: 1px;
  background: rgba(0, 0, 0, 0.06);
}

/* ===== Table results & medal badges ===== */
.table-results {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
}
.table-results thead tr {
  background: #111827;
  color: #fff;
}
.badge-medal {
  font-weight: 700;
  border-radius: 999px;
  padding: 0.35rem 0.6rem;
  display: inline-flex;
  align-items: center;
}
.badge-gold {
  background: #fef3c7;
  color: #92400e;
}
.badge-silver {
  background: #e5e7eb;
  color: #374151;
}
.badge-bronze {
  background: #f3e8e6;
  color: #7c2d12;
}

/* ===== Cards nomor pertandingan ===== */
.nomor-card {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 14px;
  transition: 0.2s ease;
}
.nomor-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08);
  border-color: rgba(var(--bs-primary-rgb), 0.35);
}

/* ===== Avatar mini untuk skuad ===== */
.avatar-mini {
  width: 40px;
  height: 40px;
  border-radius: 999px;
  object-fit: cover;
  display: block;
}
.avatar-mini.placeholder {
  display: grid;
  place-items: center;
  background: #f1f5f9;
  color: #64748b;
  border: 1px solid rgba(0, 0, 0, 0.06);
}

/* Avatar untuk tabel atlet */
.table-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  object-fit: cover;
  background-color: #f8fafc;
  border: 1px solid rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.table-avatar:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

/* list-inline reset */
.table td ul.list-inline {
  padding-left: 0;
  margin-bottom: 0;
}
.table td ul.list-inline-item {
  margin-right: 0;
}

/* ================= END CABOR KONTINGEN ================= */

/* ================= HALAMAN HASIL & MEDALI ================= */
.page-title {
  font-weight: 700;
  color: var(--color-blue);
}

.medal-tally-table {
  font-size: 1rem;
  vertical-align: middle;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
}

.medal-tally-table thead {
  background-color: var(--color-blue);
  color: var(--bs-white);
  text-transform: uppercase;
}

.medal-tally-table .contingent-info {
  display: flex;
  align-items: center;
  gap: 15px;
  font-weight: 500;
}

.medal-tally-table .contingent-logo {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.medal-tally-table .rank {
  font-weight: 700;
  font-size: 1.2rem;
}

/* Ikon medali di header tabel */
.medal-icon-gold {
  color: var(--color-gold);
}
.medal-icon-silver {
  color: var(--color-silver);
}
.medal-icon-bronze {
  color: var(--color-bronze);
}
/* ================= END HASIL & MEDALI ================= */

/* ================= HALAMAN INFORMASI ================= */
.page-title {
  font-weight: 700;
  color: var(--color-blue);
}

/* Timeline Component */
.timeline {
  list-style: none;
  padding: 20px 0 20px;
  position: relative;
}
.timeline:before {
  top: 0;
  bottom: 0;
  position: absolute;
  content: ' ';
  width: 3px;
  background-color: #dee2e6;
  left: 50%;
  margin-left: -1.5px;
}
.timeline > li {
  margin-bottom: 20px;
  position: relative;
}
.timeline > li:before,
.timeline > li:after {
  content: ' ';
  display: table;
}
.timeline > li:after {
  clear: both;
}
.timeline > li > .timeline-panel {
  width: 46%;
  float: left;
  border: 1px solid #d4d4d4;
  border-radius: 8px;
  padding: 20px;
  position: relative;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.05);
  background-color: #fff;
}
.timeline > li.timeline-inverted > .timeline-panel {
  float: right;
}
.timeline > li > .timeline-badge {
  color: #fff;
  width: 50px;
  height: 50px;
  line-height: 50px;
  font-size: 1.4em;
  text-align: center;
  position: absolute;
  top: 16px;
  left: 50%;
  margin-left: -25px;
  background-color: var(--color-blue);
  z-index: 100;
  border-radius: 50%;
}

.jadum .btn {
  background-color: #1b75bc;
  text-align: center;
  border: none;
}

.jadum .btn:hover {
  background-color: #005c9b;
  transform: translateY(-1px);
}

.venue-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
  /* tinggi minimum agar seragam */
  border-right: 1px solid rgba(0, 0, 0, 0.06);
}

/* Kartu venue */
.venue-card {
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 14px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.venue-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.venue-card .card-title {
  letter-spacing: 0.2px;
  color: #0f172a;
}

.venue-card .badge {
  font-weight: 600;
  background-color: #1b75bc !important;
}

.venue-card .btn {
  background-color: #1b75bc;
  border: none;
}

.venue-card .btn:hover {
  background-color: #005c9b;
  transform: translateY(-1px);
}

/* responsive tweak */
@media (max-width: 576px) {
  .venue-img {
    min-height: 180px;
  }
}
/* ================= END HALAMAN INFORMASI ================= */

/* Cabor */
.section-cabor {
  padding-top: 30px;
  padding-bottom: 50px;
}

.sport-card {
  display: block;
  background-color: var(--surface-color);
  border: 1px solid #e9ecef;
  border-radius: 0.75rem;
  padding: 1.5rem;
  text-align: center;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sport-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
}

.sport-card .sport-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto 1rem auto;
  background-color: #f1f3f5;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  color: #495057;
}

.sport-card:hover,
.sport-card:focus {
  background-color: var(--surface2-color);
  transition: transform 0.5s ease, background-color 0.5s linear, box-shadow 0.5s ease;
}

.sport-card .sport-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: var(--background-color);
}

.sport-card .sport-details {
  color: var(--background-color);
  font-size: 0.9rem;
  line-height: 1.6;
}

.stats-panel-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background-color: #fff;
  border-radius: 0.75rem;
  padding: 1.5rem 1rem;
  border: 1px solid #e9ecef;
  text-align: center;
}

.stat-panel-item {
  position: relative;
}

.stat-panel-item:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 10%;
  right: 0;
  height: 80%;
  width: 1px;
  background-color: #dee2e6;
}

.stat-panel-number {
  font-size: 2rem;
  font-weight: 700;
  color: #212529;
  line-height: 1.1;
}

.stat-panel-label {
  font-size: 0.9rem;
  color: #6c757d;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 767.98px) {
  .stats-panel-wrapper {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .stat-panel-item:not(:last-child)::after {
    display: none;
  }
}
/* End Cabor */

/* Detail Cabor */
.section-detail {
  padding-top: 50px;
  padding-bottom: 50px;
}
.cabor-header {
  background-color: var(--accent-color);
  padding: 2rem;
  border-radius: 0.75rem;
  border: 1px solid #dee2e6;
}
.cabor-logo-main {
  width: 120px;
  height: 120px;
  object-fit: contain;
  background-color: #f1f3f5;
  border-radius: 50%;
  padding: 10px;
}
.cabor-name {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--background-color);
}
.contingent-card {
  display: flex;
  align-items: center;
  padding: 1rem;
  background-color: #fff;
  border: 1px solid #e9ecef;
  border-radius: 0.5rem;
  height: 100%;
}
.contingent-logo {
  width: 40px;
  height: 40px;
  margin-right: 1rem;
}
.contingent-info h5 {
  margin-bottom: 0.25rem;
  font-size: 1rem;
}
.contingent-info p {
  margin-bottom: 0;
  font-size: 0.85rem;
  color: #6c757d;
}

.nomortanding-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: var(--bs-white);
  color: var(--smooth-dark);
}
.nomortanding-info {
  font-weight: 600;
  font-size: 1rem;
  text-align: center;
}
.table-sports-standings {
  font-size: 0.9rem;
  border-top: none;
}
.table-sports-standings thead th {
  background-color: #f8f9fa;
  border-bottom: 2px solid #dee2e6;
  color: #495057;
  font-weight: 600;
  letter-spacing: 0.5px;
  vertical-align: middle;
}
.table-sports-standings tbody td {
  vertical-align: middle;
  border-bottom-color: #f1f1f1;
}
.table-sports-standings .rank {
  font-weight: 700;
  font-size: 1rem;
  text-align: center;
}
.table-sports-standings .team {
  display: flex;
  align-items: center;
}
.table-sports-standings .team-logo {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  margin-right: 12px;
  flex-shrink: 0;
  border: 1px solid #e9ecef;
  background-color: #f1f3f5;
}
.table-sports-standings .team-name {
  font-weight: 500;
}
.table-sports-standings .medals {
  text-align: center;
  font-weight: 500;
}
.table-sports-standings tbody tr:nth-child(1) {
  border-left: 4px solid #ffc107;
}
.table-sports-standings tbody tr:nth-child(2) {
  border-left: 4px solid #adb5bd;
}
.table-sports-standings tbody tr:nth-child(3) {
  border-left: 4px solid #cd7f32;
}
.card-body.p-0 .table-responsive {
  border-radius: 0 0 0.375rem 0.375rem;
}
.venue-card {
  overflow: hidden;
}
.venue-map iframe {
  width: 100%;
  height: 100%;
  min-height: 350px;
  border: 0;
}

@media (max-width: 991.98px) {
  .venue-card .card-body {
    padding: 1.5rem !important;
  }
}
@media (min-width: 1200px) {
}
@media (max-width: 1199px) {
}

/* End Detail Cabor */

/* Footer */

.footer {
  background-color: var(--surface-color);
  color: var(--bs-white);
  padding: 40px 0;
  font-size: 0.9rem;
}

.footer .logo-placeholder {
  height: 60px;
  background-color: #465a70;
  color: #bdc3c7;
}

.footer h5 {
  color: var(--bs-white);
  margin-bottom: 1rem;
  text-transform: capitalize;
  font-weight: 700;
}

.footer-links a {
  color: var(--bs-white);
  text-decoration: none;
  display: block;
  margin-bottom: 0.5rem;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: var(--accent-color);
}

.footer-logo {
  height: 40px;
  width: auto;
  object-fit: contain;
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.footer-logo:hover {
  opacity: 1;
}

/* End Footer */

/* Index Berita */
.hero-news-card {
  position: relative;
  min-height: 480px;
  background-size: cover;
  background-position: center;
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2rem;
  color: var(--background-color);
  overflow: hidden;
}

.hero-news-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 40%, rgba(0, 0, 0, 0.9) 100%);
  z-index: 1;
}

.hero-news-content {
  position: relative;
  z-index: 2;
}

.hero-news-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--background-color);
}

.news-meta {
  display: flex;
  align-items: center;
  font-size: 0.875rem;
}

.news-tag {
  background-color: var(--accent-color);
  color: var(--background-color);
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  margin-right: 1rem;
}

.news-tab-tag {
  background-color: var(--accent-color);
  color: var(--background-color);
  padding: 0.25rem 0.5rem;
  margin-bottom: 0.5rem;
  font-size: 0.7rem;
  font-weight: 800;
}

.news-time {
  background-color: var(--surface-color);
  color: var(--background-color);
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 50px;
  display: flex;
  align-items: center;
}

.news-sidebar.card {
  border-radius: 0;
  height: 100%;
}

.sidebar-title {
  font-weight: 600;
  color: var(--text-dark);
}

.news-list-container {
  max-height: 400px;
  overflow-y: auto;
  padding-right: 10px;
  margin-right: -10px;
}

.news-list-container::-webkit-scrollbar {
  width: 6px;
}
.news-list-container::-webkit-scrollbar-track {
  background: transparent;
}
.news-list-container::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 10px;
}

.news-item {
  background-color: #f1f1f1;
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--text-dark);
  padding: 1rem;
  border-radius: 0.75rem;
  margin-bottom: 0.5rem;
  transition: background-color 0.2s ease;
}

.news-item:hover {
  background-color: #dbd9d9ff;
}

.news-item.active,
.news-item.active:hover {
  background-color: var(--primary-yellow);
}

.news-item-img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 0.5rem;
  margin-right: 1rem;
  flex-shrink: 0;
}

.news-item-title {
  font-weight: 600;
  margin-bottom: 0;
  line-height: 1.4;
}

.news-item.active .news-meta span {
  color: var(--text-dark) !important;
}

.pn-list-wrapper {
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  padding: 1rem;
}

.pn-item {
  border-bottom: 1px solid #e9ecef;
  transition: background-color 0.2s ease-in-out;
}

.pn-item:last-child {
  border-bottom: none;
}

.pn-item:hover {
  background-color: #f8f9fa;
}

.pn-item .pn-img-box {
  overflow: hidden;
  border-radius: 6px;
}

.pn-item img {
  width: 150px;
  height: 100px;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.pn-item:hover img {
  transform: scale(1.05);
}

.pn-category {
  color: #dc3545;
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  text-decoration: none;
  margin-bottom: 5px;
  display: inline-block;
}
.pn-category:hover {
  text-decoration: underline;
}

.pn-title {
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.4;
}

.pn-title a {
  color: #212529;
  text-decoration: none;
  transition: color 0.2s ease;
}

.pn-title a:hover {
  color: #0d6efd;
}

.pn-meta {
  font-size: 0.85rem;
  color: #6c757d;
}
/* End Index Berita */

/* Show Berita */
/* Styling untuk halaman detail berita */

.main-content {
  background-color: #f8f9fa;
}

.article-container {
}

/* Header Artikel: Judul dan Meta */
.article-header {
  border-bottom: 1px solid #dee2e6;
  padding-bottom: 1rem;
  margin-bottom: 1.5rem;
}

.article-title {
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.3;
  color: #212529;
}

.article-meta {
  font-size: 0.9rem;
  color: #6c757d;
  margin-top: 1rem;
}

.article-meta span {
  margin-right: 1.5rem;
}

/* Gambar Utama */
.article-featured-image img {
  border-radius: 0.5rem;
  width: 100%;
  height: auto;
}

.article-featured-image figcaption {
  font-size: 0.85rem;
  color: #6c757d;
  text-align: center;
  margin-top: 0.5rem;
  font-style: italic;
}

/* Isi Teks Artikel */
.article-body p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #343a40;
  margin-bottom: 1.5rem;
}

.article-body h2,
.article-body h3 {
  font-weight: 600;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.article-body blockquote {
  border-left: 4px solid #0d6efd;
  padding-left: 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  font-size: 1.2rem;
  color: #495057;
}

/* Footer Artikel: Tags dan Tombol Share */
.article-footer {
  border-top: 1px solid #dee2e6;
  padding-top: 1.5rem;
}

.tag-item {
  display: inline-block;
  background-color: #e9ecef;
  color: #495057;
  padding: 0.3rem 0.8rem;
  border-radius: 50px;
  text-decoration: none;
  font-size: 0.85rem;
  margin-right: 0.5rem;
  margin-top: 0.5rem;
  transition: background-color 0.2s, color 0.2s;
}

.tag-item:hover {
  background-color: var(--accent-color);
  color: #fff;
}

.share-icon {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background-color: #f1f1f1;
  color: #343a40;
  text-decoration: none;
  margin-left: 0.75rem;
  transition: background-color 0.2s, color 0.2s;
}

.share-icon:hover {
  background-color: #343a40;
  color: #fff;
}

@media (max-width: 767.98px) {
  .article-title {
    font-size: 1.75rem;
  }
  .article-body p {
    font-size: 1rem;
  }
}

/* End Show Berita */

/* Show Galeri */
.section-title {
  text-align: center;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: 0.75rem;
  aspect-ratio: 3 / 2;
  background-color: #f1f1f1;
}

.gallery-item a {
  display: block;
  width: 100%;
  height: 100%;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease-out;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item a::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(13, 110, 253, 0.5);
  opacity: 0;
  transition: opacity 0.4s ease-out;
}

.gallery-item:hover a::before {
  opacity: 1;
}

.gallery-item a::after {
  content: '\f00e';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 2.5rem;
  color: #ffffff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  transition-delay: 0.1s;
}

.gallery-item:hover a::after {
  transform: translate(-50%, -50%) scale(1);
  opacity: 1;
}

/* End Show Galeri */


/* Jadwal */
.match-schedule {
  width: 100%;
  max-width: 500px;
  background-color: #ffffff;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
}

/* Judul Tanggal */
.schedule-date {
  text-align: center;
  font-size: 1.2rem;
  font-weight: 800;
  color: #333;
  padding: 16px;
  margin: 0;
  border-bottom: 2px dashed #e0e0e0;
}

/* Setiap kartu pertandingan */
.match-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 16px;
  border-top: 2px dashed #e0e0e0;
}

/* Blok tim (kiri dan kanan) */
.team {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.team img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  border-radius: 50%;
}

.team strong {
  font-size: 1rem;
  color: #222;
  font-weight: 700;
}

/* Blok detail pertandingan (tengah) */
.match-details {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px; /* Mengatur jarak antar elemen di tengah */
}

.match-time {
  font-size: 1.1rem;
  font-weight: bold;
  color: #000;
}

.match-time span {
  /* Ikon lonceng */
  font-size: 0.9rem;
  margin-left: 4px;
}

.match-tag {
  background-color: #e53e3e; /* Merah */
  color: white;
  font-weight: bold;
  font-size: 0.8rem;
  padding: 4px 12px;
  border-radius: 4px;
}

/* Kontainer tombol */
.match-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 8px;
}

/* Styling dasar tombol */
.btn {
  border: none;
  padding: 8px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-weight: bold;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  gap: 4px;
  text-transform: uppercase;
}

/* Tombol "Beli Tiket" */
.btn-ticket {
  background-color: #e6f7ff;
  color: #007bff;
  border: 1px solid #b3dfff;
}

.btn-ticket:hover {
  background-color: #d1eefc;
}

/* Tombol "Vote" */
.btn-vote {
  background-color: #007bff;
  color: white;
  border: 1px solid #007bff;
}

.btn-vote:hover {
  background-color: #0056b3;
}

/* === CSS BARU UNTUK KATEGORI === */
.match-category {
  font-size: 0.9rem; /* 14px */
  font-weight: 600;
  color: #4a5568; /* Abu-abu gelap */
  background-color: #edf2f7; /* Abu-abu sangat muda */
  padding: 4px 12px;
  border-radius: 20px; /* Membuat bentuk pil */
  display: inline-block; /* Agar background pas dengan teks */
}
/* End Jadwal */

/* Chip-cabor-jadwal */

.container-chip-cabor {
  display: flex;
  padding: 10px 0;
}

.tombol-maju .tombol-belakang i {
  font-size: larger;
}

.chip-item {
  display: inline-flex;
  align-items: center;
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 2px solid var(--accent-color);
  font-size: 1rem;
  font-weight: 800;
  color: var(--accent-color);
  transition: background-color 0.3s, color 0.3s;
  white-space: nowrap;
}

.chip-item:hover {
  background-color: var(--accent-color);
  color: #fff;
}
.chip-item-active {
  background-color: var(--accent-color);
  color: #fff;
}

.chip-item img {
  background-color: var(--background-color);
  width: 28px;
  height: 28px;
  object-fit: cover;
  border-radius: 50%;
  margin-right: 8px;
}

.swiper {
  padding: 10px 40px; /* ruang untuk tombol */
  padding-right: 60px; /* tambahan agar item terakhir tidak terpotong */
  display: flex;
  flex-direction: column;
}

.swiper-slide {
  width: auto !important;
}

.dropdown-togle-custom {
  background-color: var(--smooth-dark);
  text-transform: capitalize;
  font-size: 1rem;
}

.dropdown-togle-custom:hover {
  background-color: var(--smooth-dark);
}

.dropdown-custom {
  color: var(--smooth-dark);
}

/* End Chip Cabor jadwal */