/**
 * Theme Name:     Astra Child
 * Author:         Brainstorm Force
 * Template:       astra
 * Text Domain:    astra-child
 * Description:    The Astra WordPress theme is lightning-fast and highly customizable. It has over 1 million downloads and the only theme in the world with 6,000+ five-star reviews! It’s ideal for professional web designers, solopreneurs, small businesses, eCommerce, membership sites and any type of website. It offers special features and templates so it works perfectly with all page builders like Spectra, Elementor, Beaver Builder, etc. Fast performance, clean code, mobile-first design and schema markup are all built-in, making the theme exceptionally SEO-friendly. It’s fully compatible with WooCommerce, SureCart and other eCommerce plugins and comes with lots of store-friendly features and templates. Astra also provides expert support for free users. A dedicated team of fully trained WordPress experts are on hand to help with every aspect of the theme. Try the live demo of Astra: https://zipwp.org/themes/astra/
 */

.ast-builder-menu-1 .menu-item.current-menu-item > .menu-link {
  color: #3f63af !IMPORTANT;
}
.site-content .ast-container {
    max-width: 100% !important;
    padding: 0;
    display: block;
}
.author a {
    color: #3f62ae;
    font-weight: 600;
}

/* ====================== HERO SECTION ====================== */
.statweestics-hero {
  position: relative;
  background-image: url('images/banner-bg.jpeg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 80vh;
  display: flex;
  align-items: center;
  color: #ffffff;
  width: 100%;
}

.statweestics-hero::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(0, 0, 0, 0.30); /* 30% black overlay */
  z-index: 1;
}

.hero-container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}

.hero-content {
  text-align: center;
  max-width: 900px;
  margin: 0 auto;
  padding: 100px 0;
}

.hero-illustration {
  height: 60px;
  margin-bottom: 32px;
  opacity: 0.9;
}

.hero-headline {
  font-size: 45px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 24px;
  letter-spacing: -1px;
  color: #fff;
}

.hero-subheadline {
  font-size: 20px;
  line-height: 1.6;
  margin: 0 auto 40px;
  max-width: 720px;
  opacity: 0.95;
  font-weight: 400;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 16px 32px;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
  display: inline-block;
}

.btn-primary {
  background: #3f62ae;
  color: white;
}

.btn-primary:hover {
  background: #3f65ae;
  color: #fff;
  transform: translateY(-3px);
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid white;
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-3px);
  color: #fff;
}

/* ====================== SECTION 2: TRENDING OVERVIEW ====================== */
.trending-overview-section {
  background: #f8faff; /* very light blue-ish white */
  padding: 50px 0;
}

.trending-container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.trending-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 70px;
  color: #1a1a1a;
}

.trending-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.trending-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 40px 30px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.trending-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.card-icon img {
    height: 45px;
    margin-bottom: 30px;
}

.trending-card h3 {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 16px;
  color: #1a1a1a;
}

.trending-card p {
  font-size: 16px;
  line-height: 1.6;
  color: #555;
  margin: 0;
}
/* ====================== SECTION 3: HASHTAG STORIES ====================== */
.hashtag-stories-section {
  background: #fdfdfd;
  padding: 50px 0;
}

.hashtag-container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.section-title {
  text-align: center;
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 70px;
  color: #1a1a1a;
}

.hashtag-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.hashtag-card {
  background: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
  text-decoration: none;
  color: inherit;
  display: block;
}

.hashtag-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.12);
}

.card-image img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.card-content {
  padding: 24px;
}

.card-content h3 {
  font-size: 22px;
  font-weight: 700;
  margin: 0 0 12px;
  color: #1a1a1a;
  line-height: 1.3;
}

.card-content p {
  font-size: 16px;
  line-height: 1.5;
  color: #444;
  margin: 0;
}
/* ====================== SECTION 4: LANGUAGE LAB ====================== */
.language-lab-section {
  background: #3f62ae;
  color: #ffffff;
  padding: 50px 0;
}

.language-container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.language-lab-section .section-title {
  text-align: center;
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 16px;
  color: #fff;
}

.language-lab-section .section-subtitle {
  text-align: center;
  font-size: 20px;
  max-width: 760px;
  margin: 0 auto 60px;
  opacity: 0.95;
  font-weight: 400;
}

.language-slider {
  margin: 0 -15px;
}

.lang-card {
  padding: 15px;
  outline: none;
  height: auto;
  display: flex;
  flex-direction: column;
}

.cat-label a {
    color: white !important;
}

.card-inner {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(10px);
  border-radius: 20px;
  padding: 40px 32px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s ease;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.card-inner:hover {
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-8px);
}

.lang-card h3 {
  font-size: 28px;
  font-weight: 700;
  margin: 0 0 12px;
  color: #fff;
}
.lang-card h3 a {
  color: #fff;
}
.lang-card .tag {
  display: inline-block;
  background: rgba(255, 255, 255, 0.2);
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
}

.lang-card p {
  font-size: 17px;
  line-height: 1.6;
  opacity: 0.95;
  margin-bottom: 24px;
}

.read-more {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid #fff;
  padding-bottom: 4px;
  transition: all 0.3s;
}

.read-more:hover {
  border-color: transparent;
  opacity: 0.8;
  color: #fff;
}

/* Slick arrows & dots custom style */

.language-slider .slick-prev, 
.language-slider .slick-next {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  z-index: 2;
}

.language-slider .slick-prev:before,.language-slider .slick-next:before {
  color: #fff;
  line-height: 2.5;
}
.slick-dots li.slick-active button:before{
  color: #fff !important;
}

.language-slider .slick-dots li button:before {
  color: #fff;
  font-size: 12px;
  opacity: 0.5;
}

.language-slider .slick-dots li.slick-active button:before {
  opacity: 1;
}
/* ====================== SECTION: LATEST INSIGHTS ====================== */
.latest-insights-section {
  background: #fbfcff;
  padding: 70px 0;
}

.insights-container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.latest-insights-section .section-title {
  text-align: center;
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 60px;
  color: #1a1a1a;
}

/* ====================== SECTION: LATEST INSIGHTS ====================== */
.latest-insights-section {
  background: #fbfcff;
  padding: 70px 0;
}

.insights-container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.latest-insights-section .section-title {
  text-align: center;
  font-size: 44px;
  font-weight: 800;
  margin-bottom: 60px;
  color: #1a1a1a;
}
.insights-slider {
  margin-bottom: 60px;
}
.insights-slider .insight-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s ease;
    position: relative;
    margin: 0 10px;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
    margin-top: 30px;
}

.card-content {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}


.insights-slider .insight-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.card-image img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}
.insight-card h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 14px;
  color: #1a1a1a;
}

.excerpt {
  font-size: 16px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 18px;
}

.meta {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.meta .updated { color: #888; }
.reading-time { color: #3f62ae; font-weight: 600; }
.post-meta .author a {
  color: #3f62ae;
  font-weight: 600;
}

.card-link {
  position: absolute;
  inset: 0;
  z-index: 2;
}
.slick-next.insights-next.slick-arrow {
    right: -45px;
    background: #3f62ae;
    color: #ffffff;
    width: 40px;
    height: 40px;
}
.slick-prev.insights-prev.slick-arrow {
    left: -45px;
    background: #3f62ae;
    color: #ffffff;
    width: 40px;
    height: 40px;
}

.slick-dots {
  text-align: center;
  margin-top: 30px;
  padding: 0;
  list-style: none;
}

.slick-dots li {
  display: inline-block;
  margin: 0 6px;
}

.slick-dots li button {
  background: #ddd; 
  border: none;
  border-radius: 50%; 
  width: 12px;
  height: 12px;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.slick-dots li button:hover {
  background: #3f62ae;
  transform: scale(1.2);
}

.slick-dots li.slick-active button {
    background: #3f62ae;
    width: 20px;
    height: 20px;
}

.slick-dots li.slick-active button::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 1px solid rgba(63, 98, 174, 0.3);
}

/* Responsive spacing */
@media (max-width: 768px) {
  .card-content { padding: 20px; }
  .insights-slider .insight-card { margin: 0 5px; }
}
/* ====================== SECTION: ABOUT STATWEESTICS ====================== */
.about-statweestics-section {
  background: #3f62ae;
  color: #ffffff;
  padding: 70px 0;
}

.about-container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.about-content {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.about-statweestics-section .section-title {
  font-size: 48px;
  font-weight: 800;
  margin-bottom: 20px;
  color: #fff;
}

.about-text {
  font-size: 22px;
  line-height: 1.2;
  margin-bottom: 30px;
  opacity: 0.95;
  font-weight: 400;
}

.about-btn {
  display: inline-block;
  background: #ffffff;
  color: #3f62ae;
  font-size: 18px;
  font-weight: 700;
  padding: 10px 30px;
  border-radius: 12px;
  text-decoration: none;
  transition: all 0.4s ease;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.about-btn:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  background: #f8f9ff;
}
.site-above-footer-wrap[data-section="section-above-footer-builder"] {
    padding-bottom: 0;
}

.site-below-footer-wrap[data-section="section-below-footer-builder"] {
    padding-top: 0;
}
.site-above-footer-wrap[data-section="section-above-footer-builder"] .ast-builder-footer-grid-columns.site-above-footer-inner-wrap.ast-builder-grid-row {
    min-height: auto;
}
.site-below-footer-wrap[data-section="section-below-footer-builder"] .ast-builder-footer-grid-columns.site-below-footer-inner-wrap.ast-builder-grid-row {
    min-height: auto;
}
.site-above-footer-wrap[data-section="section-above-footer-builder"] .ast-builder-footer-grid-columns.site-above-footer-inner-wrap.ast-builder-grid-row ul li a.menu-link {
    font-size: 18px;
}
.site-below-footer-wrap[data-section="section-below-footer-builder"] .ast-footer-copyright p, .site-below-footer-wrap[data-section="section-below-footer-builder"] .ast-footer-copyright p a {
    font-size: 12px;
}
/* ====================== BLOG ARCHIVE PAGE ====================== */
.blog-archive-section {
  background: #fbfcff;
  padding: 100px 0 120px;
}

.blog-archive-container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

.blog-main-wrapper {
    display: grid;
    grid-template-columns: 1fr 275px;
    gap: 40px;
}

.blog-header {
  grid-column: 1 / -1;
  text-align: center;
  margin-bottom: 60px;
}

.blog-page-title {
  font-size: 48px;
  font-weight: 800;
  color: #1a1a1a;
  margin: 0 0 12px;
}

.blog-subtitle {
  font-size: 20px;
  color: #555;
  max-width: 640px;
  margin: 0 auto;
}

.posts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap:20px 10px;
}

/* Post Card */
.post-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: all 0.4s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}

.post-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.post-thumb {
  position: relative;
  height: 200px;
  overflow: hidden;
}

.post-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.post-card:hover .post-thumb img {
  transform: scale(1.05);
}

.cat-label {
  position: absolute;
  top: 16px;
  left: 16px;
  background: #3f62ae;
  color: #fff;
  padding: 6px 14px;
  border-radius: 30px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.post-content {
  padding: 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.post-card h3 {
  font-size: 21px;
  font-weight: 700;
  line-height: 1.35;
  margin: 0 0 12px;
  color: #1a1a1a;
  flex-grow: 1;
}

.post-excerpt {
  font-size: 15.5px;
  color: #444;
  line-height: 1.6;
  margin-bottom: 16px;
}

.post-meta {
  font-size: 14px;
  color: #666;
  font-weight: 500;
}

.post-meta .reading { color: #3f62ae; font-weight: 600; }
.post-meta .author a {
    color: #3f62ae;
    font-weight: 600;
}


.post-link {
  position: absolute;
  inset: 0;
  z-index: 5;
}

/* Sidebar */
.blog-sidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.sidebar-widget h4 {
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 20px;
  color: #000000;
  padding-bottom: 10px;
  border-bottom: 2px solid #3f62ae;
}

.trending-list, .cat-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.trending-list li,
.cat-list li {
  margin-bottom: 12px;
}

.trending-list a,
.cat-list a {
  color: #333;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s;
}

.trending-list a:hover,
.cat-list a:hover {
  color: #3f62ae;
}

.word-of-week {
  background: #3f62ae;
  color: #fff;
  padding: 24px;
  border-radius: 16px;
}
.sidebar-widget.word-of-week h4{
  font-size: 18px;
  font-weight: 700;
  margin: 0 0 20px;
  color: #ffffff;
  padding-bottom: 10px;
  border-bottom: 2px solid #3f62ae;
}

.wotw-card h5 {
  font-size: 24px;
  margin: 0 0 12px;
  font-weight: 700;
  color: #fff;
}

.wotw-card p {
  font-size: 15px;
  opacity: 0.95;
  margin-bottom: 16px;
}

.read-small {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 2px solid #fff;
  padding-bottom: 2px;
}
.read-small:hover{
  color: #fff;
  border-bottom: 0px solid #fff;
}

/* Pagination */
.blog-pagination {
  grid-column: 1 / -1;
  text-align: center;
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.blog-pagination a {
  padding: 10px 16px;
  background: #fff;
  color: #333;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

.blog-pagination .active,
.blog-pagination a:hover {
    background: #3f62ae;
    color: #fff;
    padding: 10px 16px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}


/* ====================== SINGLE POST PAGE ====================== */
.single-post-article {
  background: #fbfcff;
  padding: 30px 0 120px;
}
.single-post-article .ast-breadcrumbs-wrapper {
    margin-bottom: 30px;
}

.single-container {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.post-header {
  text-align: center;
  margin-bottom: 48px;
}

.post-title {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.2;
  color: #1a1a1a;
  margin: 0 0 20px;
}

.post-meta-header {
  font-size: 16px;
  color: #555;
  margin-bottom: 24px;
}

.post-meta-header .sep { margin: 0 8px; color: #aaa; }
.post-meta-header .reading-time { color: #3f62ae; font-weight: 600; }

.share-buttons {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.share-btn {
  padding: 10px 20px;
  background: #f0f0f0;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
  transition: 0.3s;
}

.share-btn.twitter { background: #1DA1F2; color: #fff; }
.share-btn.reddit { background: #FF4500; color: #fff; }
.share-btn.linkedin { background: #0A66C2; color: #fff; }

/* Featured Image */
.featured-image {
    margin: 0 0 20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    height: 500px;
}

.featured-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* Content */
.single-post-article .post-content {
  max-width: 780px;
  margin: 0 auto 20px;
  font-size: 18px;
  line-height: 1.4;
  color: #222;
  padding: 0;
}

.single-post-article .post-content .intro {
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 0px;
  color: #111;
  text-align: center;
}

.single-post-article .post-content h2 {
  font-size: 32px;
  font-weight: 800;
  margin: 30px 0 24px;
  color: #1a1a1a;
}

.single-post-article .post-content h3 {
  font-size: 26px;
  font-weight: 700;
  margin: 0px 0 20px;
}

.single-post-article .post-content ul, .single-post-article .post-content ol {
  margin: 0px 0;
  padding-left: 32px;
}

.single-post-article .post-content li { margin: 12px 0; }

.single-post-article .post-content blockquote.pull-quote {
    font-size: 28px;
    font-weight: 600;
    line-height: 1.4;
    margin: 20px auto;
    padding: 25px 40px;
    border-left: 6px solid #3f62ae;
    color: #1a1a1a;
    max-width: 700px;
    background-color: #eeeeee;
}

.single-post-article .post-content blockquote cite {
  display: block;
  font-size: 16px;
  margin-top: 20px;
  color: #666;
  font-style: normal;
  font-weight: 500;
}

.single-post-article .highlight-box {
  background: #f0f4ff;
  border-left: 5px solid #3f62ae;
  padding: 24px;
  border-radius: 0 12px 12px 0;
  margin: 20px 0 20px;
  font-size: 18px;
}

.single-post-article .highlight-box.insight { background: #e6f7ff; }
.single-post-article .highlight-box.summary { background: #fff4e6; }

.single-post-article .image-caption {
  margin: 60px 0;
  text-align: center;
}

.single-post-article .image-caption img {
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.single-post-article .image-caption figcaption {
  margin-top: 16px;
  font-size: 15px;
  color: #666;
  font-style: italic;
}

/* Author Box */
.single-post-article .author-box {
  max-width: 780px;
  margin: 35px auto 0;
  display: flex;
  gap: 32px;
  padding: 40px;
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.08);
}

.single-post-article .author-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.author-page-photo {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.single-post-article .author-info h4 {
  font-size: 22px;
  margin: 0 0 12px;
}

.single-post-article .author-info p {
  margin: 12px 0;
  line-height: 1.7;
  color: #444;
}

/* Related Posts */
.related-posts {
  max-width: 1240px;
  margin: 0 auto;
  padding-top: 50px;
}
.post-content .wp-block-image img {
      width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}
.post-content .wp-block-image.size-full {
    margin: 0 0 20px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    height: 500px;
}
.related-title {
  font-size: 36px;
  font-weight: 800;
  text-align: center;
  margin-bottom: 48px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.related-card {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.06);
  transition: 0.4s;
  text-decoration: none;
  color: inherit;
}

.related-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0,0,0,0.12);
}

.related-card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
}
.related-posts .post-meta {
    font-size: 14px;
    color: #666;
    font-weight: 500;
    padding: 0px 20px 10px;
}


.related-card h4 {
  font-size: 19px;
  padding: 20px 20px 8px;
  margin: 0;
  line-height: 1.4;
}

.related-meta {
  padding: 0 20px 20px;
  font-size: 14px;
  color: #3f62ae;
  font-weight: 600;
}
.related-card p.post-excerpt {
    padding: 20px 20px 8px;
}
.page-wrap .page-content-wrapper {
    max-width: 1240px;
    margin: 0 auto;
    padding: 0 20px;
}


.page-wrap .page-content-wrapper .page-article-content .page-intro-heading {
    padding: 100px 0;
    text-align: center;
    color: #000 !important;
}

.page-wrap .page-content-wrapper .page-article-content .page-content {
    background-color: #f7f7f7;
    padding: 60px 30px;
    border-radius: 20px;
    box-shadow: 0px 1px 25px 0px rgba(0, 0, 0, 0.2);
    margin-bottom: 50px;
}
.page-wrap .page-content-wrapper .page-article-content .page-content ul, .page-wrap .page-content-wrapper .page-article-content .page-content ol {
    padding-left: 20px;
}
/* ====================== RESPONSIVE - MAX-WIDTH ONLY ====================== */
@media (max-width: 1024px) {
  .hero-headline {
    font-size: 48px;
  }
  .hero-subheadline {
    font-size: 19px;
  }
  .trending-grid {
    gap: 24px;
  }
  .trending-card {
    padding: 32px 24px;
  }
  .hashtag-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
  }
  .card-image img {
    height: 220px;
  }
  .language-slider .slick-slide { padding: 0 10px; }
  .insights-grid { grid-template-columns: repeat(2, 1fr); }
  .posts-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-main-wrapper { grid-template-columns: 1fr;}
  .blog-sidebar { order: -1; }
  .related-grid { grid-template-columns: repeat(2, 1fr); }
  .author-box { flex-direction: column; text-align: center; }
  .author-photo { margin: 0 auto; }
}

@media (max-width: 921px) {
  .hero-headline {
    font-size: 44px;
  }
  
  .trending-title {
    font-size: 38px;
  }
  .trending-grid {
    grid-template-columns:repeat(2, 1fr);
  }
  .section-title {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .statweestics-hero {
    min-height: 80vh;
  }
  .hero-headline {
    font-size: 38px;
  }
  .hero-subheadline {
    font-size: 18px;
    padding: 0 10px;
  }
  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn-primary,
  .btn-secondary {
    width: 280px;
    text-align: center;
  }
  
  .trending-title {
    font-size: 34px;
    margin-bottom: 50px;
  }
  .trending-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .trending-card {
    padding: 40px 30px;
  }

  .section-title {
    font-size: 34px;
    margin-bottom: 50px;
  }
  .hashtag-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .card-image img {
    height: 240px;
  }
  .card-content {
    padding: 28px;
  }
 
  .language-lab-section .section-title { font-size: 36px; }
  .card-inner { padding: 32px 24px; }
  .lang-card h3 { font-size: 24px; }
  .latest-insights-section .section-title { font-size: 36px; margin-bottom: 60px; }
  .insights-grid { grid-template-columns: 1fr; }
  .card-image img { height: 240px; }
  .about-statweestics-section .section-title { font-size: 40px; }
  .about-text { font-size: 20px; }
  .blog-archive-section { padding: 80px 0 100px; }
  .blog-page-title { font-size: 40px; }
  .posts-grid { grid-template-columns: 1fr; }
  .post-thumb { height: 220px; }
  .single-post-article { padding: 60px 0 100px; }
  .post-title { font-size: 38px; }
  .post-content { font-size: 17.5px; }
  .related-grid { grid-template-columns: 1fr; }
}

@media (max-width: 544px) {
  .hero-headline {
    font-size: 24px;
  }
  .hero-subheadline {
    font-size: 17px;
  }
  .hero-illustration {
    margin-bottom: 24px;
  }
  .btn-primary,
  .btn-secondary {
    padding: 14px 24px;
    font-size: 17px;
  }
  .trending-title {
    font-size: 30px;
  }
  .card-icon img {
    width: 80px;
    height: 80px;
  }
  .trending-card h3 {
    font-size: 22px;
  }
  .section-title {
    font-size: 30px;
  }
  .card-content h3 {
    font-size: 21px;
  }
  .card-content {
    padding: 20px;
  }
  .language-lab-section .section-title { font-size: 32px; }
  .section-subtitle { font-size: 18px; }
  .latest-insights-section .section-title { font-size: 32px; }
  .card-content { padding: 24px; }
  .insight-card h3 { font-size: 21px; }
  .about-statweestics-section .section-title { font-size: 34px; }
  .about-text { font-size: 18px; padding: 0 10px; }
  .about-btn { padding: 16px 36px; font-size: 17px; }
  .insights-pagination a, .insights-pagination span {
    padding: 7px 14px;
    margin: 0 0px;
}
.language-slider .slick-prev:before, .language-slider .slick-next:before {
    color: #fff;
    line-height: 2;
}
.language-slider .slick-prev{
  left:-5px;
}
.language-slider .slick-next {
  right: -5px;
}
.language-slider .slick-prev, .language-slider .slick-next {
    width: 35px;
    height: 35px;
}
.slick-prev.insights-prev.slick-arrow {
    left: -13px;
    background: #3f62ae;
    color: #ffffff;
    width: 35px;
    height: 35px;
    z-index: 1;
}

.slick-next.insights-next.slick-arrow {
    right: -13px;
    background: #3f62ae;
    color: #ffffff;
    width: 35px;
    height: 35px;
}
.blog-page-title { font-size: 34px; }
  .post-content { padding: 20px; }
  .post-card h3 { font-size: 20px; }
  .post-title { font-size: 32px; }
  .post-content .intro { font-size: 20px; }
  .share-buttons { flex-direction: column; }
}