

/* ===============================
   BLOG ARTICLE – AUSSUI STYLE
   =============================== */

.blog-show-container {
  color: #e6e8ee;
}

/* Article wrapper */
.blog-article {
  background: linear-gradient(180deg, #0d0f1a, #0b0c15);
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0,0,0,.35);
  padding-left:10%;
  padding-right:10%;
}

/* Published date */
.published-date {
  font-size: 0.9rem;
  color: #9aa3b2;
  margin-bottom: 10px;
}

/* Main title */
.blog-title {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.25;
  margin-bottom: 20px;
  color: #ffffff;
}

/* Cover image */
.blog-cover {
  width: 100%;
  max-height: 460px;
  object-fit: cover;
  border-radius: 16px;
  margin: 24px 0 30px;
}

/* ===============================
   BLOG CONTENT TYPOGRAPHY
   =============================== */

.blog-content {
  font-size: 1.06rem;
  line-height: 1.85;
  color: #d6d9e0;
}

/* Headings inside editor */
.blog-content h1,
.blog-content h2,
.blog-content h3,
.blog-content h4 {
  color: #ffffff;
  font-weight: 600;
  line-height: 1.35;
  margin-top: 2.4rem;
  margin-bottom: 1rem;
}

.blog-content h2 {
  font-size: 1.65rem;
}

.blog-content h3 {
  font-size: 1.35rem;
}

.blog-content h4 {
  font-size: 1.15rem;
}

/* Paragraphs */
.blog-content p {
  margin-bottom: 1.3rem;
}

/* Links */
.blog-content a {
  color: #5aa9ff;
  text-decoration: underline;
}

.blog-content a:hover {
  color: #7dbbff;
}

/* Lists */
.blog-content ul,
.blog-content ol {
  padding-left: 1.3rem;
  margin-bottom: 1.4rem;
}

.blog-content li {
  margin-bottom: 0.6rem;
}

/* Blockquotes */
.blog-content blockquote {
  margin: 2rem 0;
  padding: 1.2rem 1.4rem;
  border-left: 4px solid #5aa9ff;
  background: rgba(90,169,255,0.08);
  border-radius: 8px;
  color: #e9ecf2;
}

/* Images inside editor */
.blog-content img {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: 14px;
  margin: 28px auto;
}

/* Tables */
.blog-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.95rem;
}

.blog-content th,
.blog-content td {
  border: 1px solid rgba(255,255,255,0.1);
  padding: 10px 12px;
}

.blog-content th {
  background: rgba(255,255,255,0.06);
  color: #ffffff;
}

/* Divider / last updated */
.last-updated {
  text-align: center;
  color: #9aa3b2;
  font-size: 0.9rem;
  margin-top: 42px;
}

/* ===============================
   RELATED BLOG SLIDER
   =============================== */

.blog-slider {
  margin-top: 60px;
   padding-left:10%;
    padding-right: 10%;
}

.blog-slider-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.related-title {
  font-size: 1.6rem;
  font-weight: 600;
  color: #ffffff;
}

.related-sub {
  font-size: 0.95rem;
  color: #9aa3b2;
}

/* Slider nav buttons */
.blog-slider-controls .nav-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.2);
  background: transparent;
  color: #ffffff;
}

/* Blog card */
.card-blog {
  background: linear-gradient(180deg, #101321, #0b0d17);
  border-radius: 16px;
  padding: 16px;
  height: 100%;
  transition: transform .25s ease, box-shadow .25s ease;
}

.card-blog:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(0,0,0,.35);
}

.card-media img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
}

/* Card meta */
.card-meta {
  margin-top: 12px;
  font-size: 0.85rem;
  color: #9aa3b2;
}

/* Card title */
.card-blog .title {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 10px 0;
  color: #ffffff;
}

/* Excerpt */
.card-blog .excerpt {
  font-size: 0.9rem;
  color: #cdd2dd;
  margin-bottom: 10px;
}

/* Chip */
.card-blog .chip {
  display: inline-block;
  font-size: 0.75rem;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(90,169,255,0.15);
  color: #5aa9ff;
}

/* ===============================
   MOBILE OPTIMIZATION
   =============================== */

@media (max-width: 768px) {
  .blog-article {
    padding: 20px;
    border-radius: 14px;

  }

  .blog-title {
    font-size: 1.85rem;
  }

  .blog-cover {
    max-height: 280px;
    margin: 18px 0 22px;
  }

  .blog-content {
    font-size: 1rem;
    line-height: 1.75;
  }

  .blog-slider-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
   
  }

  .related-title {
    font-size: 1.4rem;
  }
}

@media (max-width: 480px) {
  .blog-title {
    font-size: 1.6rem;
  }

  .blog-content h2 {
    font-size: 1.4rem;
  }

  .blog-content h3 {
    font-size: 1.2rem;
  }
}