a {
  font-family: inherit;
  font-weight: 500;
  line-height: 1.2;
  color: rgb(0, 123, 255);
}

.main-title {
  text-align: center;
  border-bottom: 7px solid #e9e9e9;
  padding-bottom: 10px;
}
h1.main-title {
  font-weight: 500;
}
@media (min-width: 576px) {
  .site-main {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .site-main {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .site-main {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .site-main {
    max-width: 1140px;
  }
}
body {
  margin: 0;
  padding: 0;
}
.full-bleed {
  width: 100vw;
  left: 0;
  right: 0;
  margin: 0 calc(-50vw + 50%);
}
.site-main {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.container-fluid {
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
*,
::after,
::before {
  box-sizing: border-box;
}
.featured-media {
  display: block;
  max-width: 100%; /* prevent overflow */
  margin: 2rem auto; /* center horizontally with top/bottom spacing */
  text-align: center; /* center figcaption text */
}

/* Make the image responsive */
.featured-media .featured-image {
  max-height: 555px;
  width: 100%;
  aspect-ratio: 2 / 1;
  object-fit: cover;
}

/* no media content box*/
.no-media-content {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
  position: relative;
  padding: 0.75rem 1.25rem;
  margin-bottom: 1rem;
  border: 1px solid transparent;
  border-radius: 0.25rem;
  text-align: center;
  width: 100%;
}

/* -------------------- Single NEWS STYLES -------------------- */
.news-container,
.service-container {
  margin: 1.5rem 0 3rem 0;
}
h1.service-header-title,
h1.news-header-title {
  font-weight: 500;
}
.news-content {
    text-align: justify;
}
.news-publisher{
    margin:0;
}
/* -------------------- NEWS PAGE STYLES -------------------- */
.my-post-card {
  margin-bottom: 30px;
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-left: 15px;
  padding-right: 15px;

  /* default: col-12 */
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  max-width: 100%;
}

/* ≥ md (768px): col-md-6 */
@media (min-width: 768px) {
  .my-post-card {
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* ≥ lg (992px): col-lg-4 */
@media (min-width: 992px) {
  .my-post-card {
    -ms-flex: 0 0 33.333333%;
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
}

.media-center-page {
  padding: 2rem;
}

.media-center-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

@media (max-width: 1024px) {
  .media-center-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .media-center-grid {
    grid-template-columns: 1fr;
  }
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

.my-row {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}

.page-top {
  margin-top: 50px;
}

hr {
  display: block;
  margin-top: 1rem;
  margin-bottom: 1rem;
  margin-left: auto;
  margin-right: auto;

  box-sizing: content-box;
  height: 0; /* ensures no extra height */
  overflow: visible;

  border: 0; /* reset all borders */
  border-top: 1px solid #c6c6c6;
}

/* Root */
.cc {
  --gap: 16px;
  width: 100%;
}
/* default (desktop) */
.cc {
  --visible: 3;
}

/* tablet */
@media (max-width: 1024px) {
  .cc {
    --visible: 2;
  }
}

/* mobile */
@media (max-width: 767px) {
  .cc {
    --visible: 1;
  }
}

/* Viewport clips the track while it moves */
.cc-viewport {
  overflow: hidden;
  width: 100%;
  touch-action: pan-y; /* allow vertical scroll; JS handles horizontal drag */
}

/* Track must be a horizontal row so translateX moves it */
.cc-track {
  display: flex;
  gap: var(--gap);
  will-change: transform;
  transform: translate3d(0, 0, 0);
}

/* Each card takes 1/visible of the viewport width (minus gaps) */
.cc-card {
  flex: 0 0 calc((100% - (var(--gap) * (var(--visible) - 1))) / var(--visible));
}

/* Pagination container */
.cc-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 10px;
}

/* Dots (buttons) */
.cc-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid #999;
  background: transparent;
  cursor: pointer;
}

.cc-dot.is-active {
  background: #000;
  border-color: #000;
}
