.as_marquee_container {
  overflow: hidden;
  width: 100%;
  position: relative;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  padding: 25px 0;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  margin-top: 20px;
}
.as_marquee_container::before,
.as_marquee_container::after {
  content: "";
  position: absolute;
  top: 0;
  width: 80px;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}
.as_marquee_container::before {
  left: 0;
  background: linear-gradient(to right, #1a1a2e, transparent);
}
.as_marquee_container::after {
  right: 0;
  background: linear-gradient(to left, #1a1a2e, transparent);
}
.as_marquee_track {
  display: flex;
  width: max-content;
  animation: scrollTicker 35s linear infinite;
}
.as_marquee_container:hover .as_marquee_track {
  animation-play-state: paused;
}
@keyframes scrollTicker {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.as_extreme_card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 18px;
  width: 320px;
  margin: 0 15px;
  color: #fff;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}
.as_extreme_card:hover {
  transform: translateY(-5px);
  border-color: #ffc107;
  box-shadow: 0 8px 25px rgba(255, 193, 7, 0.2);
}
.as_card_header {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.as_ticker_avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 2px solid #ffc107;
  margin-right: 12px;
  background: #fff;
}
.as_ticker_name {
  font-size: 16px;
  font-weight: 700;
  color: #ffc107;
  margin: 0;
}
.as_ticker_date {
  font-size: 12px;
  color: #aaa;
}
.as_ticker_text {
  font-size: 14px;
  color: #e0e0e0;
  margin: 0;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.as_blog_box .as_blog_img img {
  width: 100%;
  height: auto !important;
  max-height: 350px;
  object-fit: contain !important;
  background: #f9f9f9;
}

.as_product_widget .as_productimg img {
  width: 100px;
  height: 50px;
  object-fit: cover;
}

#blogContainer > div {
  display: flex;
  margin-bottom: 30px;
}

.as_blog_box {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 0 !important;
}

@media (max-width: 767px) {
  .as_widget.as_search_widget,
  .as_widget.as_category_widget,
  .as_widget.as_product_widget {
    display: none !important;
  }
  .as_shop_sidebar .as_faq_widget {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .mobile_faq_section {
    display: none !important;
  }
}
