/* ===========================
   Blog Section with Owl Carousel
   =========================== */

.blog-section {
  position: relative;
  padding: 90px 0 110px;
  background: #080808;
  color: #ffffff;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.blog-container {
  width: 100%;
}

.blog-carousel {
  opacity: 0;
  animation: blogFadeInUp 0.8s ease-out 0.25s forwards;
}

.blog-carousel .owl-stage {
  display: flex;
  align-items: stretch;
}

.blog-carousel .owl-item {
  display: flex;
  height: auto;
  padding: 15px;
}

.blog-card {
  width: 100%;
  height: 100%;
  background: #111111;
  border: 1px solid rgba(200, 154, 63, 0.18);
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

.blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(200, 154, 63, 0.55);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.35);
}

.blog-card-image {
  display: block;
  overflow: hidden;
  background: #202020;
}

.blog-card-image img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}

.blog-card:hover .blog-card-image img {
  transform: scale(1.06);
}

.blog-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 25px 24px 27px;
}

.blog-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  color: #c89a3f;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.blog-card-meta time {
  color: rgba(255, 255, 255, 0.55);
  white-space: nowrap;
}

.blog-card-title {
  margin: 0 0 13px;
  color: #ffffff;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.25;
  letter-spacing: 1px;
}

.blog-card-excerpt {
  display: -webkit-box;
  min-height: 74px;
  overflow: hidden;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.75;
  letter-spacing: 1px;
  overflow-wrap: anywhere;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  word-break: break-word;
}

.blog-card-link {
  align-items: center;
  display: inline-flex;
  gap: 9px;
  margin-top: auto;
  padding-top: 20px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: color 0.3s ease;
}

.blog-card-link i {
  color: #c89a3f;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.blog-card-link:hover {
  color: #c89a3f;
}

.blog-card-link:hover i {
  transform: translate(3px, -3px);
}

.blog-carousel .owl-nav {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin: 28px 15px 0;
}

.blog-carousel .owl-nav button {
  width: 44px;
  height: 44px;
  border: 1px solid rgba(200, 154, 63, 0.35);
  border-radius: 50%;
  background: transparent;
  color: #c89a3f;
  cursor: pointer;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.blog-carousel .owl-nav button:hover {
  background: rgba(200, 154, 63, 0.15);
  border-color: #c89a3f;
}

.blog-carousel .owl-dots {
  display: flex;
  gap: 8px;
  margin: -31px 0 0 15px;
}

.blog-carousel .owl-dot span {
  display: block;
  width: 8px;
  height: 8px;
  margin: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.25);
  transition: background 0.3s ease, transform 0.3s ease;
}

.blog-carousel .owl-dot.active span {
  background: #c89a3f;
  transform: scale(1.25);
}

@keyframes blogFadeInUp {
  from {
    opacity: 0;
    transform: translateY(35px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 767px) {
  .blog-section {
    padding: 65px 0 85px;
  }

  .blog-card-body {
    padding: 22px 20px 24px;
  }

  .blog-card-title {
    font-size: 19px;
  }

  .blog-card-meta {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .blog-carousel .owl-nav {
    justify-content: center;
    margin-top: 25px;
  }

  .blog-carousel .owl-dots {
    justify-content: center;
    margin: 19px 0 0;
  }
}
