/* Blog listing page styles */

/* =========================================================
   REDSPIDER BLOG UI
========================================================= */

.rs-blog-section {
  padding: 25px 0 45px;
  background: #fff;
}

.rs-blog-section .container {
  max-width: 1200px;
}

/* =========================================================
   CATEGORY BUTTONS
========================================================= */

.rs-blog-categories {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 14px;
}

.rs-blog-category {
  border: 1px solid #ddd3df;
  background: #fff;
  color: #25202a;
  border-radius: 30px;
  padding: 6px 14px;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.3;
  cursor: pointer;
  transition:
    color 0.25s ease,
    background 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.rs-blog-category:hover {
  color: #fff;
  background: #ed1c24;
  border-color: #ed1c24;
  transform: translateY(-2px);
  box-shadow: 0 5px 14px rgba(237, 28, 36, 0.18);
}

.rs-blog-category.active {
  color: #fff;
  background: #ed1c24;
  border-color: #ed1c24;
}

/* =========================================================
   FEATURED BLOG
========================================================= */

.rs-blog-featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 215px;
  overflow: hidden;
  border: 1px solid #e3d9e5;
  border-radius: 12px;
  background: #fff;
  margin-bottom: 17px;
  transition:
    box-shadow 0.3s ease,
    transform 0.3s ease,
    border-color 0.3s ease;
}

.rs-blog-featured:hover {
  transform: translateY(-2px);
  border-color: #d9cbdc;
  box-shadow: 0 12px 30px rgba(30, 20, 40, 0.09);
}

.rs-blog-featured-image {
  position: relative;
  display: block;
  min-height: 128px;
  overflow: hidden;
}

.rs-blog-featured-image .rs-blog-card-image {
  transition: transform 0.5s ease;
}

.rs-blog-featured:hover .rs-blog-featured-image .rs-blog-card-image {
  transform: scale(1.04);
}

.rs-blog-featured-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 15px 22px;
}

.rs-blog-featured-content h3 {
  margin: 5px 0 6px;
  font-size: 16px;
  line-height: 1.35;
  font-weight: 600;
}

.rs-blog-featured-content h3 a {
  color: #17131b;
  text-decoration: none;
  transition: color 0.25s ease;
}

.rs-blog-featured-content h3 a:hover {
  color: #ed1c24;
}

.rs-blog-featured-content p {
  margin: 0 0 7px;
  color: #77717a;
  font-size: 11px;
  line-height: 1.55;
}

.rs-blog-featured-badge,
.rs-blog-card-category {
  position: absolute;
  top: 7px;
  left: 8px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  background: #ed1c24;
  color: #fff;
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 9px;
  font-weight: 600;
  line-height: 1;
}

/* =========================================================
   META
========================================================= */

.rs-blog-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 7px;
  color: #8b858d;
  font-size: 9px;
  line-height: 1.3;
}

.rs-blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.rs-blog-meta i {
  color: #ed1c24;
  font-size: 9px;
}

.rs-meta-dot {
  color: #c5bdc7;
}

/* =========================================================
   READ ARTICLE
========================================================= */

.rs-blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  width: fit-content;
  color: #ed1c24;
  font-size: 10px;
  font-weight: 600;
  text-decoration: none;
  transition:
    gap 0.25s ease,
    color 0.25s ease;
}

.rs-blog-read-more i {
  font-size: 10px;
  transition: transform 0.25s ease;
}

.rs-blog-read-more:hover {
  color: #bd1118;
  gap: 9px;
}

.rs-blog-read-more:hover i {
  transform: translateX(3px);
}

/* =========================================================
   BLOG GRID
========================================================= */

.rs-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 17px;
  padding: 22px 0 0;
  background: #f8f7f9;
}

.rs-blog-card {
  overflow: hidden;
  border: 1px solid #e5dce7;
  border-radius: 10px;
  background: #fff;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.rs-blog-card:hover {
  transform: translateY(-5px);
  border-color: #ed1c24;
  box-shadow: 0 14px 30px rgba(25, 15, 30, 0.11);
}

/* =========================================================
   CARD IMAGE
========================================================= */

.rs-blog-card-image-wrap {
  position: relative;
  display: block;
  height: 185px;
  overflow: hidden;
  background: #eee;
}

.rs-blog-card-image {
  object-fit: cover;
  transition:
    transform 0.5s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.rs-blog-card:hover .rs-blog-card-image {
  transform: scale(1.06);
}

/* =========================================================
   IMAGE OVERLAY
========================================================= */

.rs-blog-image-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to bottom,
      rgba(0, 0, 0, 0.02),
      rgba(0, 0, 0, 0.2));
  opacity: 0.45;
  transition: opacity 0.3s ease;
}

.rs-blog-card:hover .rs-blog-image-overlay {
  opacity: 0.7;
}

/* =========================================================
   HOVER ICON
========================================================= */

.rs-blog-hover-icon {
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 4;

  width: 30px;
  height: 30px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #ed1c24;
  color: #fff;

  opacity: 0;
  transform: translateY(8px) scale(0.8);

  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.rs-blog-card:hover .rs-blog-hover-icon {
  opacity: 1;
  transform: translateY(0) scale(1);
}

.rs-blog-hover-icon i {
  font-size: 12px;
}

/* =========================================================
   CARD CONTENT
========================================================= */

.rs-blog-card-content {
  padding: 13px 13px 15px;
}

.rs-blog-card-content h3 {
  margin: 7px 0 6px;
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
  min-height: 39px;
}

.rs-blog-card-content h3 a {
  color: #19151c;
  text-decoration: none;
  transition: color 0.25s ease;
}

.rs-blog-card-content h3 a:hover {
  color: #ed1c24;
}

.rs-blog-card-content p {
  margin: 0 0 10px;
  color: #77717a;
  font-size: 10px;
  line-height: 1.55;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* =========================================================
   LOADING
========================================================= */

.rs-blog-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 18px;
  color: #777;
  font-size: 12px;
}

.rs-blog-spinner {
  width: 18px;
  height: 18px;
  border: 2px solid #eee;
  border-top-color: #ed1c24;
  border-radius: 50%;
  animation: rsBlogSpin 0.75s linear infinite;
}

/* =========================================================
   PAGINATION
========================================================= */

.rs-blog-pagination {
  padding: 25px 0 50px;
}

.rs-blog-pagination-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
}

.rs-blog-page-numbers {
  display: flex;
  align-items: center;
  gap: 5px;
}

.rs-blog-page-number,
.rs-blog-page-arrow {
  width: 32px;
  height: 32px;
  border: 1px solid #ded7df;
  border-radius: 5px;
  background: #fff;
  color: #39333b;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 11px;
  transition: all 0.25s ease;
}

.rs-blog-page-number:hover:not(:disabled),
.rs-blog-page-arrow:hover:not(:disabled) {
  color: #fff;
  background: #ed1c24;
  border-color: #ed1c24;
}

.rs-blog-page-number.active {
  color: #fff;
  background: #ed1c24;
  border-color: #ed1c24;
}

.rs-blog-page-number:disabled,
.rs-blog-page-arrow:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.rs-blog-page-ellipsis {
  width: 25px;
  text-align: center;
  color: #777;
  font-size: 12px;
}

/* =========================================================
   EMPTY
========================================================= */

.rs-blog-empty {
  text-align: center;
  padding: 70px 20px;
}

.rs-blog-empty h4 {
  margin-bottom: 8px;
}

.rs-blog-empty p {
  color: #777;
}

/* =========================================================
   TABLET
========================================================= */

@media (max-width: 991px) {

  .rs-blog-featured {
    grid-template-columns: 1fr;
  }

  .rs-blog-featured-image {
    min-height: 230px;
  }

  .rs-blog-featured-content {
    padding: 17px;
  }

  .rs-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

}

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

@media (max-width: 767px) {

  .rs-blog-section {
    padding-top: 18px;
  }

  .rs-blog-categories {
    gap: 6px;
    margin-bottom: 12px;
  }

  .rs-blog-category {
    padding: 6px 11px;
    font-size: 10px;
  }

  .rs-blog-featured {
    border-radius: 9px;
  }

  .rs-blog-featured-image {
    min-height: 200px;
  }

  .rs-blog-featured-content h3 {
    font-size: 15px;
  }

  .rs-blog-featured-content p {
    font-size: 10px;
  }

  .rs-blog-grid {
    grid-template-columns: 1fr;
    gap: 14px;
    padding-top: 16px;
  }

  .rs-blog-card-image-wrap {
    height: 210px;
  }

  .rs-blog-card-content h3 {
    font-size: 14px;
  }

}

/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 480px) {

  .rs-blog-featured-image {
    min-height: 175px;
  }

  .rs-blog-card-image-wrap {
    height: 190px;
  }

  .rs-blog-meta {
    font-size: 8px;
  }

  .rs-blog-card-content {
    padding: 12px;
  }

}

/* =========================================================
   BLOG LISTING — EDITORIAL REFRESH
========================================================= */

.rs-blog-section {
  padding: 56px 0 72px;
  background: #f6f4f7;
}

.rs-blog-section .container {
  max-width: 1240px;
}

.rs-blog-intro {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.rs-blog-intro-kicker {
  display: inline-block;
  margin-bottom: 4px;
  color: #ed1c24;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.rs-blog-intro-count {
  margin: 0;
  color: #5f5863;
  font-size: 15px;
  line-height: 1.4;
}

.rs-blog-categories {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 28px;
  padding-bottom: 22px;
  border-bottom: 1px solid #e6dde8;
}

.rs-blog-category {
  border: 1px solid #d8cedc;
  background: #fff;
  color: #2c2631;
  border-radius: 999px;
  padding: 9px 18px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.3;
}

.rs-blog-featured {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: stretch;
  min-height: 440px;
  overflow: hidden;
  border: 0;
  border-radius: 22px;
  background: #17131b;
  margin-bottom: 36px;
  box-shadow: 0 24px 50px rgba(23, 19, 27, 0.16);
}

.rs-blog-featured:hover {
  transform: translateY(-4px);
  border-color: transparent;
  box-shadow: 0 28px 60px rgba(23, 19, 27, 0.22);
}

.rs-blog-featured-image {
  position: relative;
  display: block;
  min-height: 440px;
  height: 100%;
  overflow: hidden;
}

.rs-blog-featured-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 42px 40px 40px;
  color: #fff;
}

.rs-blog-featured-label {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 16px;
  padding: 5px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.rs-blog-featured-content h3 {
  margin: 10px 0 14px;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 700;
}

.rs-blog-featured-content h3 a {
  color: #fff;
}

.rs-blog-featured-content h3 a:hover {
  color: #ffd2d4;
}

.rs-blog-featured-content p {
  margin: 0 0 22px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.65;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.rs-blog-featured .rs-blog-meta {
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
}

.rs-blog-featured .rs-blog-meta i {
  color: #ed1c24;
  font-size: 13px;
}

.rs-blog-featured .rs-blog-read-more {
  color: #fff;
  font-size: 15px;
}

.rs-blog-featured .rs-blog-read-more:hover {
  color: #ffd2d4;
}

.rs-blog-featured-badge,
.rs-blog-card-category {
  top: 16px;
  left: 16px;
  padding: 7px 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.04em;
}

.rs-blog-meta {
  gap: 10px;
  color: #7a7380;
  font-size: 13px;
}

.rs-blog-meta i {
  font-size: 13px;
}

.rs-blog-read-more {
  gap: 8px;
  font-size: 14px;
}

.rs-blog-read-more i {
  font-size: 14px;
}

.rs-blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  padding: 0;
  background: transparent;
}

.rs-blog-card {
  border: 1px solid #eadfeb;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(30, 20, 40, 0.05);
}

.rs-blog-card:hover {
  transform: translateY(-8px);
  border-color: #ed1c24;
  box-shadow: 0 20px 40px rgba(25, 15, 30, 0.12);
}

.rs-blog-card-image-wrap {
  height: 230px;
}

.rs-blog-hover-icon {
  width: 42px;
  height: 42px;
  right: 16px;
  bottom: 16px;
}

.rs-blog-hover-icon i {
  font-size: 16px;
}

.rs-blog-card-content {
  padding: 20px 20px 22px;
}

.rs-blog-card-content h3 {
  margin: 10px 0 10px;
  font-size: 20px;
  line-height: 1.35;
  min-height: 0;
}

.rs-blog-card-content p {
  margin: 0 0 16px;
  color: #6d6672;
  font-size: 14px;
  line-height: 1.65;
  -webkit-line-clamp: 3;
}

.rs-blog-pagination {
  padding: 8px 0 64px;
  background: #f6f4f7;
}

.rs-blog-section+.contact-cta,
.rs-blog-pagination+.contact-cta {
  padding-top: 40px;
}

.rs-blog-page-number,
.rs-blog-page-arrow {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  font-size: 14px;
}

@media (max-width: 991px) {
  .rs-blog-featured {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .rs-blog-featured-image {
    min-height: 280px;
  }

  .rs-blog-featured-content {
    padding: 28px 24px 30px;
  }

  .rs-blog-featured-content h3 {
    font-size: 26px;
  }

  .rs-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }
}

@media (max-width: 767px) {
  .rs-blog-section {
    padding: 36px 0 48px;
  }

  .rs-blog-intro {
    margin-bottom: 16px;
  }

  .rs-blog-category {
    padding: 8px 14px;
    font-size: 12px;
  }

  .rs-blog-featured {
    border-radius: 16px;
    margin-bottom: 24px;
  }

  .rs-blog-featured-image {
    min-height: 220px;
  }

  .rs-blog-featured-content h3 {
    font-size: 22px;
  }

  .rs-blog-featured-content p {
    font-size: 14px;
  }

  .rs-blog-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .rs-blog-card-image-wrap {
    height: 220px;
  }

  .rs-blog-card-content h3 {
    font-size: 18px;
  }

  .rs-blog-card-content p {
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .rs-blog-featured-image {
    min-height: 200px;
  }

  .rs-blog-card-image-wrap {
    height: 200px;
  }

  .rs-blog-meta {
    font-size: 12px;
  }

  .rs-blog-card-content {
    padding: 16px;
  }
}

.rs-blog-category {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;
  margin-bottom: 14px;
  background: #ed1c24;
  color: #fff;
  border-radius: 30px;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.rs-blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  color: #77717a;
  font-size: 11px;
}

.rs-blog-meta-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

.rs-blog-meta-right span {
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.rs-blog-meta-right i {
  color: #ed1c24;
}

/* =========================================================
   INTRO
========================================================= */

.rs-blog-intro {
  margin: 0 0 28px;

  color: #403a42;

  font-size: 15px;
  line-height: 1.8;

  font-weight: 500;
}

/* =========================================================
   EMPTY
========================================================= */

.rs-blog-empty {
  padding: 70px 20px;

  text-align: center;
}

/* =========================================================
   BLOG HERO - CUSTOM CSS
   ========================================================= */

.blog-hero-custom {
  position: relative;
  width: 100%;
  min-height: 500px;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-image: url("/assets/img/about-bg5.webp");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 170px 0 0px;
}

.blog-hero-custom.about-hero,
.blog-hero-custom.hero-marquee {
  height: 366px !important;
  background-color: transparent !important;
}

.blog-hero-custom::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg,
      rgba(9, 9, 12, 0.78) 0%,
      rgba(17, 17, 21, 0.68) 55%,
      rgba(120, 16, 16, 0.25) 100%);
  z-index: 1;
}

.blog-hero-custom .container {
  position: relative;
  z-index: 2;
  width: 100%;
}

.blog-hero-custom .row {
  min-height: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}

.blog-hero-custom .col-lg-12 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 15px;
}

.blog-hero-custom .rs-process-title-sec {
  width: 100%;
  margin: 0 auto;
  padding: 0 !important;
  text-align: center;
  position: static !important;
  left: auto !important;
  right: auto !important;
  top: auto !important;
  bottom: auto !important;
  transform: none !important;
}

.rs-blog-hero-kicker {
  display: inline-block;
  margin-bottom: 14px;
  padding: 6px 14px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.blog-hero-custom .rs-process-title {
  margin: 0 auto 14px !important;
  padding: 0;
  text-align: center;
  font-size: 29px !important;
  line-height: 1.12;
  font-weight: 700;
  color: #ffffff;
}

.blog-hero-custom .rs-process-highlight {
  position: relative;
  display: inline-block;
  color: #ed1c24;
}

.blog-hero-custom .rs-process-underline {
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 14px;
  overflow: visible;
  pointer-events: none;
}

.blog-hero-custom .rs-process-underline path {
  fill: none;
  stroke: #ed1c24;
  stroke-width: 3;
  stroke-linecap: round;
}

.blog-hero-custom .rs-blog-hero-copy {
  max-width: 560px;
  margin: 0 auto 18px !important;
  color: rgba(255, 255, 255, 0.82) !important;
  font-size: 17px;
  line-height: 1.6;
}

.blog-hero-custom .breadcrumbs {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.blog-hero-custom .breadcrumbs ol {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  gap: 7px;
}

.blog-hero-custom .breadcrumbs li {
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 1.5;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
}

.blog-hero-custom .breadcrumbs li a {
  color: #ffffff;
  text-decoration: none;
  transition: all 0.3s ease;
}

.blog-hero-custom .breadcrumbs li a:hover {
  color: rgba(255, 255, 255, 0.75);
}

.blog-hero-custom .breadcrumbs li:not(:last-child)::after {
  content: "/";
  display: inline-block;
  margin-left: 7px;
  color: rgba(255, 255, 255, 0.55);
}

.blog-hero-custom .breadcrumbs .current {
  color: rgba(255, 255, 255, 0.70);
}

@media (max-width: 991px) {

  .blog-hero-custom,
  .blog-hero-custom.about-hero,
  .blog-hero-custom.hero-marquee {
    height: 500px !important;
    min-height: 500px;
    padding: 150px 0 48px;
  }

  .blog-hero-custom .row {
    min-height: 0;
  }

  .blog-hero-custom .rs-process-title {
    font-size: 40px;
    margin-bottom: 12px !important;
  }

  .rs-blog-hero-copy {
    font-size: 15px;
  }
}

.blog-hero-custom .rs-process-highlight {
  margin-right: 7px !important;
}


@media (max-width: 767px) {

  .blog-hero-custom,
  .blog-hero-custom.about-hero,
  .blog-hero-custom.hero-marquee {
    height: 500px !important;
    min-height: 500px;
    padding: 145px 0 40px !important;
  }

  .blog-hero-custom .row {
    min-height: 0;
  }

  .blog-hero-custom .col-lg-12 {
    padding-left: 15px;
    padding-right: 15px;
  }

  .blog-hero-custom .rs-process-title {
    font-size: 32px;
    margin-bottom: 10px !important;
  }

  .rs-blog-hero-copy {
    font-size: 14px;
  }

  .blog-hero-custom .breadcrumbs ol {
    gap: 5px;
    flex-wrap: wrap;
  }

  .blog-hero-custom .breadcrumbs li {
    font-size: 12px;
  }
}

@media (max-width: 480px) {

  .blog-hero-custom,
  .blog-hero-custom.about-hero,
  .blog-hero-custom.hero-marquee {
    height: 500px !important;
    min-height: 500px;
    padding: 140px 0 36px !important;
  }

  .blog-hero-custom .row {
    min-height: 0;
  }

  .blog-hero-custom .rs-process-title {
    font-size: 28px;
  }

  .rs-blog-hero-kicker {
    font-size: 11px;
  }
}

.rs-inner-hero.hero-marquee,
.rs-inner-hero.rs-contact-hero,
.rs-inner-hero.blog-hero-custom,
.rs-inner-hero.portfolio-page-hero {
  min-height: 433px !important;

}

span.rs-meta-dot {
  display: none;
}

.blog-hero-custom p {
  color: white;
}

/* =====================================================
   BLOG META — MOBILE FIX
===================================================== */

@media (max-width: 575px) {
  .rs-blog-meta {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-wrap: nowrap;
    gap: 8px;
    width: 100%;
    margin: 0;
    padding: 0;
    white-space: nowrap;
  }

  .rs-blog-meta>span {
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
    white-space: nowrap;
    margin: 0;
  }

  .rs-blog-meta .rs-meta-dot {
    flex-shrink: 0;
    margin: 0 2px;
  }

  .rs-blog-meta i {
    flex-shrink: 0;
    margin-right: 4px;
  }


  .rs-inner-hero.hero-marquee,
  .rs-inner-hero.rs-contact-hero,
  .rs-inner-hero.blog-hero-custom,
  .rs-inner-hero.portfolio-page-hero {
    min-height: 588px !important;

  }

      body .hero-marquee .rs-process-title {
        font-size: 25px !important;
    }

  blog-hero-custom .rs-process-highlight {
  
    padding-bottom: 0px;
}
  
.blog-hero-custom p {
    font-size: 13px;
    color: white;
}


}