.content-auto {
  content-visibility: auto;
}

.text-shadow {
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.card-hover {
  transition: all 0.3s ease;
}

.card-hover:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.gallery-image {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-image:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.carousel-container {
  position: relative;
  overflow: hidden;
  width: 100%;
}

.carousel-track {
  display: flex;
  transition: transform 0.5s ease;
}

.carousel-item {
  flex: 0 0 20%;
  min-width: 20%;
  padding: 0 8px;
  box-sizing: border-box;
}

@media (max-width: 768px) {
  .carousel-item {
    flex: 0 0 33.333%;
    min-width: 33.333%;
  }
}

@media (max-width: 480px) {
  .carousel-item {
    flex: 0 0 50%;
    min-width: 50%;
  }
}


.hero-bg {
  background-image: url('/public/images/bn2.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.h2-title::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 2px;
  background-color: #12a5f8;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.hero-bg1 {
  background-image: url('/public/images/bn1.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.h2-title::after {
  content: '';
  position: absolute;
  width: 100px;
  height: 2px;
  background-color: #12a5f8;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}

.rounded img {
  object-fit: cover;
  vertical-align: middle;
  height: 220px;
  width: 100%;
}

.article-content p {
  text-indent: 2em;
  line-height: 32px;
  font-size: 14px;
}

.article-content img {
  display: block;
  margin: 10px auto;
}

.le-table {
  display: table;
  border-collapse: collapse;
}

.le-table p {
  display: table-row;
}

.le-table p span {
  padding: 4px 0;
  display: table-cell;
  vertical-align: middle;
}

.le-3{
  text-overflow: ellipsis;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical
}
.pagelists li{
  list-style: none;
}
.pagelists li.active a{
  color: #fff;
  background-color: rgb(37 99 235 / var(--tw-text-opacity, 1));
}
.pagelists li a{
  display: block;
  padding: 6px 10px;
  font-size: 14px;
  min-width: 36px;
  text-align: center;
  text-decoration: none;
}