:root {
  --MRTNavy: #000033;
  --MRTGreen: #29B494;
  --LightBlue: #F4FAFC;
  --LightGreen: #E7F6F3;
  --LightPink: #F9F4F4;
  --White: #FFFFFF;
  --SuperLightGrey: #F5F5F5;
  --LightGrey: #EDEDED;
  --MediumGrey: #C1C1C1;
  --DarkGrey: #595959;
  --Black: #171717;
  --Green: #13BE00;
  --Yellow: #FDC602;
  --BurntOrange: #CF3801;
  --Red: #A90000;
  --Success: #E7F9E5;
  --Warning: #FFF9E6;
  --LightOrange: #FFE6CD;
  --Error: #F6E5E5;
  --Purple: #6A0DAD;
  --MRTGradient: linear-gradient(260deg, #BCFCF0 0%, #F8E9E9 100%);
}

#blogroll-header-section {
  background: var(--MRTGradient);
  margin-top: 75px;
  padding: 50px 0;
  position: relative;
  overflow: clip;
}
#blogroll-header-section::before {
  content: "";
  position: absolute;
  left: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 200px;
  height: 200px;
  background: rgba(0, 0, 0, 0.05);
  border-radius: 50%;
  pointer-events: none;
}
@media (max-width: 991px) {
  #blogroll-header-section::before {
    display: none;
  }
}
#blogroll-header-section .blog-post-card {
  border-radius: 16px;
  display: flex;
  text-decoration: none;
  overflow: clip;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-direction: row;
}
#blogroll-header-section .blog-post-card .blog-post-content {
  background-color: var(--White);
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
#blogroll-header-section .blog-post-card .blog-post-content h2 {
  margin-bottom: 1rem;
  color: var(--MRTNavy);
}
#blogroll-header-section .blog-post-card .blog-post-content p {
  color: var(--DarkGrey);
  margin: 0;
}
#blogroll-header-section .blog-post-card .blog-post-img {
  width: 50%;
}
#blogroll-header-section .blog-post-card .blog-post-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  #blogroll-header-section .blog-post-card {
    flex-direction: column;
  }
  #blogroll-header-section .blog-post-card .blog-post-content,
  #blogroll-header-section .blog-post-card .blog-post-img {
    width: 100%;
  }
  #blogroll-header-section .blog-post-card .blog-post-content {
    padding: 24px;
  }
  #blogroll-header-section .blog-post-card .blog-post-img img {
    height: 200px;
  }
}
#blogroll-header-section #splide-carousel {
  width: 100vw;
  margin-left: calc(-50vw + 50% - 15px);
}
@media (min-width: 768px) {
  #blogroll-header-section #splide-carousel {
    margin-left: calc(-50vw + 50%);
  }
}
#blogroll-header-section .splide__arrow {
  background: var(--White);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  opacity: 1;
}
#blogroll-header-section .splide__arrow svg {
  fill: var(--MRTNavy);
  width: 20px;
  height: 20px;
}
#blogroll-header-section .splide__arrow:hover {
  background: var(--MRTNavy);
}
#blogroll-header-section .splide__arrow:hover svg {
  fill: var(--White);
}
#blogroll-header-section .splide__arrow--prev {
  left: 2rem;
}
#blogroll-header-section .splide__arrow--next {
  right: 2rem;
}
@media (max-width: 768px) {
  #blogroll-header-section .splide__arrow {
    width: 36px;
    height: 36px;
  }
  #blogroll-header-section .splide__arrow--prev {
    left: 0.5rem;
  }
  #blogroll-header-section .splide__arrow--next {
    right: 0.5rem;
  }
}
#blogroll-header-section .splide__pagination {
  bottom: -2rem;
}
#blogroll-header-section .splide__pagination .splide__pagination__page {
  background: var(--MediumGrey);
  width: 40px;
  height: 4px;
  border-radius: 2px;
  margin: 0 4px;
  opacity: 1;
}
#blogroll-header-section .splide__pagination .splide__pagination__page.is-active {
  background: var(--MRTGreen);
  transform: none;
}

#blog-roll-tiles-section {
  padding: 25px 0;
}
#blog-roll-tiles-section .nav-tabs {
  border-bottom: 2px solid var(--MediumGrey);
  gap: 40px;
  justify-content: center;
  flex-wrap: nowrap;
}
#blog-roll-tiles-section .nav-tabs .nav-item .nav-link {
  border: none;
  background: transparent;
  color: var(--DarkGrey);
  font-weight: 600;
  padding: 10px 20px;
  position: relative;
  cursor: pointer;
  white-space: nowrap;
}
#blog-roll-tiles-section .nav-tabs .nav-item .nav-link:hover {
  color: var(--MRTNavy);
  border: none;
}
#blog-roll-tiles-section .nav-tabs .nav-item .nav-link.active {
  color: var(--MRTNavy);
  background: transparent;
  border: none;
}
#blog-roll-tiles-section .nav-tabs .nav-item .nav-link.active::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 0;
  height: 3px;
  background-color: var(--MRTGreen);
  border-radius: 2px;
}
@media (min-width: 992px) {
  #blog-roll-tiles-section .blog-post-card-wrapper:nth-child(2), #blog-roll-tiles-section .blog-post-card-wrapper:nth-child(4), #blog-roll-tiles-section .blog-post-card-wrapper:nth-child(6) {
    margin-top: 0 !important;
  }
}
#blog-roll-tiles-section .blog-post-card {
  border-radius: 15px;
}
#blog-roll-tiles-section .blog-post-card img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  height: 200px;
  border-radius: 10px;
}
#blog-roll-tiles-section .blog-post-card .blog-post-content {
  padding: 1rem;
  height: 80px;
  background-color: var(--White);
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}
@media (min-width: 992px) {
  #blog-roll-tiles-section {
    padding: 50px 0;
  }
}

#blog-post-header-section {
  background: var(--MRTGradient);
  margin-top: 75px;
  padding: 50px 0;
  position: relative;
  height: 400px;
}
#blog-post-header-section .category span {
  border-radius: 50px;
  background-color: var(--White);
  border: 1px solid var(--MediumGrey);
  padding: 7px 10px;
  text-transform: capitalize;
}
#blog-post-header-section .title {
  padding: 20px 0;
}
#blog-post-header-section .img-wrapper {
  border-radius: 50%;
  width: 45px;
  height: 45px;
  background-color: var(--White);
  padding: 10px;
}
#blog-post-header-section .img-wrapper img {
  width: 100%;
}
#blog-post-header-section .author {
  margin-left: 10px;
}

#blog-floating-section {
  padding-bottom: 60px;
}
#blog-floating-section .floating-content-card {
  z-index: 1;
  padding: 15px !important;
  padding-top: 30px !important;
  background-color: white;
  border-radius: 10px;
  box-shadow: none;
}
#blog-floating-section .floating-content-card img {
  border-radius: 10px;
}
@media (min-width: 992px) {
  #blog-floating-section .floating-content-card {
    position: relative;
    z-index: 2;
    width: 98%;
    max-width: 1340px;
    margin: 0 auto;
    margin-top: -150px;
    display: flex;
    ustify-content: center;
  }
}
@media (min-width: 1340px) {
  #blog-floating-section .floating-content-card {
    width: 100%;
  }
}
#blog-floating-section .share-row .nav-item {
  padding-right: 1rem;
}
#blog-floating-section .share-row .nav-item a svg {
  fill: var(--MRTNavy);
}
#blog-floating-section .share-row .nav-item a:hover svg, #blog-floating-section .share-row .nav-item a.active svg {
  fill: var(--MediumGrey);
}

.blog-page-content img {
  width: 100%;
}
.blog-page-content a {
  color: var(--MRTNavy);
  text-decoration: none;
  font-weight: 600;
}
.blog-page-content a:active, .blog-page-content a:hover {
  color: var(--MediumGrey);
}
.blog-page-content h2 {
  font-size: 27px !important;
  font-weight: 600 !important;
  line-height: 125% !important;
}
.blog-page-content h3 {
  font-size: 24px !important;
  font-weight: 600 !important;
  line-height: 125% !important;
}

#blog-post-related-section {
  padding: 50px 0;
  background-color: var(--LightBlue);
}
#blog-post-related-section .splide__slide {
  height: auto;
}
#blog-post-related-section .blog-post-card {
  border-radius: 10px;
  display: flex;
  text-decoration: none;
  overflow: clip;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  flex-direction: row;
  flex-grow: 1;
}
#blog-post-related-section .blog-post-card .blog-post-content {
  background-color: var(--White);
  width: 50%;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
#blog-post-related-section .blog-post-card .blog-post-content .category span {
  border-radius: 50px;
  background-color: var(--White);
  border: 1px solid var(--MediumGrey);
  padding: 7px 10px;
  text-transform: capitalize;
}
#blog-post-related-section .blog-post-card .blog-post-content h2 {
  margin-bottom: 1rem;
  color: var(--MRTNavy);
}
#blog-post-related-section .blog-post-card .blog-post-content p {
  color: var(--DarkGrey);
  margin: 0;
}
#blog-post-related-section .blog-post-card .blog-post-img {
  width: 50%;
}
#blog-post-related-section .blog-post-card .blog-post-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  #blog-post-related-section .blog-post-card {
    flex-direction: column;
  }
  #blog-post-related-section .blog-post-card .blog-post-content,
  #blog-post-related-section .blog-post-card .blog-post-img {
    width: 100%;
  }
  #blog-post-related-section .blog-post-card .blog-post-content {
    padding: 24px;
  }
  #blog-post-related-section .blog-post-card .blog-post-img img {
    height: 200px;
  }
}
#blog-post-related-section #splide-carousel {
  width: 100vw;
  margin-left: calc(-50vw + 50% - 15px);
}
@media (min-width: 768px) {
  #blog-post-related-section #splide-carousel {
    margin-left: calc(-50vw + 50%);
  }
}
#blog-post-related-section .splide__arrow {
  background: var(--White);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  opacity: 1;
}
#blog-post-related-section .splide__arrow svg {
  fill: var(--MRTNavy);
  width: 20px;
  height: 20px;
}
#blog-post-related-section .splide__arrow:hover {
  background: var(--MRTNavy);
}
#blog-post-related-section .splide__arrow:hover svg {
  fill: var(--White);
}
#blog-post-related-section .splide__arrow--prev {
  left: 2rem;
}
#blog-post-related-section .splide__arrow--next {
  right: 2rem;
}
@media (max-width: 768px) {
  #blog-post-related-section .splide__arrow {
    width: 36px;
    height: 36px;
  }
  #blog-post-related-section .splide__arrow--prev {
    left: 0.5rem;
  }
  #blog-post-related-section .splide__arrow--next {
    right: 0.5rem;
  }
}
#blog-post-related-section .splide__pagination {
  bottom: -2rem;
}
#blog-post-related-section .splide__pagination .splide__pagination__page {
  background: var(--MediumGrey);
  width: 40px;
  height: 4px;
  border-radius: 2px;
  margin: 0 4px;
  opacity: 1;
}
#blog-post-related-section .splide__pagination .splide__pagination__page.is-active {
  background: var(--MRTGreen);
  transform: none;
}