.news-container {
  max-width: 920px;
  margin: 0 auto;
  padding: 65px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
  background: white;
}

.news-title {
  font-size: 30px;
  color: #2c3e50;
  margin-bottom: 15px;
  font-weight: bold;
  letter-spacing: -0.5px;
}

.news-meta {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 25px;
  color: #6c757d;
  /* text-muted color */
  font-size: 0.9rem;
}

.news-meta small {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.news-meta i {
  color: var(--primarycolor);
}

.news-body {
  padding-top: 20px;
  border-top: 1px solid #f0f0f0;
}

.news-content {
  font-size: 17px;
  line-height: 1.85;
  color: #444;
}

.news-content ul,
.news-content ol {
  padding-left: 10px !important;
  margin-top: 15px;
  margin-bottom: 15px;
}

.news-content li {
  margin-bottom: 8px;
  line-height: 1.8;
}

.news-content ul li {
  list-style-type: disc;
}

.news-content ol li {
  list-style-type: decimal;
}

.highlight-section {
  background-color: #f8f9fa;
  border-left: 4px solid #3498db;
  padding: 25px;
  margin: 30px 0;
}

.subtitle {
  font-size: 26px;
  color: #000000;
  margin: 30px 0 20px;
  font-weight: 500;
}

.news-image {
  width: 100%;
  height: auto;
  border-radius: 4px;
  margin: 25px 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.image-caption {
  font-size: 14px;
  color: #666;
  text-align: center;
  margin-top: -15px;
  margin-bottom: 30px;
  line-height: 1.5;
}

@media (max-width: 992px) {
  .news-container {
    max-width: 95%;
    margin: 20px auto;
  }
}

@media (max-width: 768px) {
  .news-container {
    padding: 25px;
    margin: 10px;
  }

  .news-title {
    font-size: 26px;
  }

  .subtitle {
    font-size: 21px;
  }

  .news-content {
    font-size: 16px;
  }

  .image-caption {
    font-size: 13px;
  }
}



/*  */
.container-bspg {
  max-width: 1200px;
  margin: 60px auto;
  padding: 0 20px;
}

.container-bspg h2 {
  text-align: center;
  margin-bottom: 40px;
  color: #111827;
  font-weight: 600;
  font-size: 28px;
  letter-spacing: -0.5px;
}

/* Galeri Slider Stili */
.gallery-container-bspg {
  position: relative;
  width: 100%;
  overflow: hidden;
  margin-bottom: 60px;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  background-color: #fff;
  padding: 30px 0;
}

.gallery-wrapper-bspg {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
  padding: 0 30px;
}

.gallery-item-bspg {
  flex: 0 0 auto;
  width: calc(100% / 3);
  padding: 15px;
  transition: all 0.4s ease;
}

@media (max-width: 992px) {
  .gallery-item-bspg {
    width: calc(100% / 2);
  }
}

@media (max-width: 576px) {
  .gallery-item-bspg {
    width: 100%;
  }
}

.gallery-item-inner-bspg {
  position: relative;
  overflow: hidden;
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.gallery-item-inner-bspg:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.gallery-item-bspg img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.gallery-item-inner-bspg:hover img {
  transform: scale(1.08);
}

.gallery-nav-bspg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  background-color: #fff;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  color: #111827;
}

.gallery-nav-bspg:hover {
  background-color: #f3f4f6;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-50%) scale(1.05);
}

.gallery-nav-bspg:focus {
  outline: none;
}

.prev-bspg {
  left: 20px;
}

.next-bspg {
  right: 20px;
}

/* Lightbox Stili */
.lightbox-bspg {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(17, 24, 39, 0.9);
  z-index: 1000;
  justify-content: center;
  align-items: center;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.lightbox-bspg.active-bspg {
  opacity: 1;
}

.lightbox-content-bspg {
  position: relative;
  max-width: 85%;
  max-height: 85%;
  transform: scale(0.95);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.lightbox-bspg.active-bspg .lightbox-content-bspg {
  transform: scale(1);
}

.lightbox-content-bspg img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: 8px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  display: block;
}

.close-lightbox-bspg {
  position: absolute;
  top: -50px;
  right: 0;
  background: transparent;
  border: none;
  color: white;
  width: 40px;
  height: 40px;
  cursor: pointer;
  transition: transform 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.close-lightbox-bspg:hover {
  transform: rotate(90deg);
}

.close-lightbox-bspg:focus {
  outline: none;
}

.card-footer {
  max-width: fit-content;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-content: center;
  justify-content: center;
  gap: 1rem;
  transition: 0.5s;
}

.card-footer:hover {
  animation: ease-out 5s;
}

.card-footer ul {
  padding: 1rem;
  display: flex;
  list-style: none;
  gap: 1rem;
  align-items: center;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  flex-direction: row;
}

.card-footer ul li {
  cursor: pointer;
}

.svg {
  transition: all 0.3s;
  /* if you find some problems change w - h : 30px*/
  padding: 1rem;
  height: 60px;
  width: 60px;
  border-radius: 100%;
  color: rgb(255, 174, 0);
  fill: currentColor;
  box-shadow: inset 0 0 20px rgba(31, 30, 30, 0.3),
    inset 0 0 5px rgba(255, 255, 255, 0.5), 0 5px 5px rgba(0, 0, 0, 0.164);
}

.text-footer {
  opacity: 0;
  border-radius: 5px;
  padding: 5px;
  transition: all 0.3s;
  color: rgb(255, 174, 0);
  background-color: rgba(255, 255, 255, 0.3);
  position: absolute;
  z-index: 9999;
  box-shadow: -5px 0 1px rgba(153, 153, 153, 0.2),
    -10px 0 1px rgba(153, 153, 153, 0.2),
    inset 0 0 20px rgba(255, 255, 255, 0.3),
    inset 0 0 5px rgba(255, 255, 255, 0.5), 0 5px 5px rgba(0, 0, 0, 0.082);
}