* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

/* ========== base styles ========== */
/* body owns default size/weight/line-height — don't restate on p */
p {
  margin-bottom: 20px;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  font-weight: var(--fw-semibold);
  margin-bottom: 16px;
}

h1,
.h1 {
  font-size: var(--fs-h1);
  line-height: var(--lh-heading-tight);
}

h2,
.h2 {
  font-size: var(--fs-h2);
  line-height: var(--lh-heading-tight);
}

h3,
.h3 {
  font-size: var(--fs-h3);
  line-height: var(--lh-heading);
}

h4,
.h4 {
  font-size: var(--fs-h4);
  line-height: var(--lh-heading);
}

h5,
.h5 {
  font-size: var(--fs-h5);
  line-height: var(--lh-heading-relaxed);
}

h6,
.h6 {
  font-size: var(--fs-h6);
  line-height: var(--lh-heading-relaxed);
}

ul,
ol {
  line-height: var(--lh-loose);
  padding-left: 0;
}

ul li {
  list-style: none;
}

img,
svg {
  vertical-align: middle;
}

input,
select,
textarea {
  border: unset;
  outline: none;
  width: 100%;
  font: inherit;
  /* one declaration — inherits body type */
}

button,
[role="button"],
[class*="btn"] {
  cursor: pointer;
  border: unset;
  font: inherit;
  font-weight: var(--fw-medium);
  outline: none;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px;
}

/* ========== component styles ========== */

[class*="badge"] {
  display: flex;
  padding: 4px 8px;
  border-radius: 8px;
  font-size: var(--fs-sm);
  line-height: var(--lh-tight);
  text-wrap: nowrap;
  text-decoration: none;
}

/* ========== utility styles ========== */
.container {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-right: auto;
  margin-left: auto;
}

.row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  margin-top: calc(-1 * var(--bs-gutter-y));
  margin-right: calc(-0.5 * var(--bs-gutter-x));
  margin-left: calc(-0.5 * var(--bs-gutter-x));
}

.row>* {
  flex-shrink: 0;
  width: 100%;
  max-width: 100%;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin-top: var(--bs-gutter-y);
}

.row-gap-4 {
  row-gap: 16px;
}

.row-gap-6 {
  row-gap: 24px;
}

.col {
  position: relative;
  width: 100%;
  padding-left: 12px;
  padding-right: 12px;
  flex: 1 0 0%;
}

.col-3 {
  flex: 0 0 auto;
  width: 25%;
}

.col-6 {
  flex: 0 0 auto;
  width: 50%;
}

.col-12 {
  flex: 0 0 auto;
  width: 100%;
}

[class*="flex"] {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.items-center {
  align-items: center;
}

.gap-2 {
  gap: 8px;
}

.gap-3 {
  gap: 12px;
}

.gap-4 {
  gap: 16px;
}

.gap-6 {
  gap: 24px;
}

.gap-7 {
  gap: 28px;
}

.hidden {
  display: none !important;
}

.sticky {
  position: sticky;
}

.top-0 {
  top: 0;
}

.overflow-auto {
  overflow: auto;
}

.font-medium {
  font-weight: var(--fw-medium);
}

.font-bold {
  font-weight: var(--fw-bold);
}

.font-semibold {
  font-weight: var(--fw-semibold);
}

.font-light {
  font-weight: var(--fw-regular);
}

.text-sm {
  font-size: var(--fs-sm);
}

.text-center {
  text-align: center;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

.order-3 {
  order: 3;
}

.relative {
  position: relative !important;
}

.absolute {
  position: absolute;
}

.static {
  position: static;
}

.top-4 {
  top: 16px;
}

.top-40 {
  top: 160px;
}

.right-4 {
  right: 16px;
}

.truncate-2 {
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  display: -webkit-box !important;
  overflow: hidden;
  text-overflow: ellipsis;
}

.truncate-3 {
  -webkit-line-clamp: 3;
  line-clamp: 3;
  -webkit-box-orient: vertical;
  display: -webkit-box !important;
  overflow: hidden;
  text-overflow: ellipsis;
}

.section-gap-y {
  margin-bottom: clamp(2.5rem, 1.6071rem + 2.381vw, 63.75rem);
  margin-top: clamp(2.5rem, 1.6071rem + 2.381vw, 6.75rem);
}

.section-gap-b {
  margin-bottom: clamp(2.5rem, 1.6071rem + 2.381vw, 3.75rem);
}

.img-fluid {
  max-width: 100%;
  height: auto;
}

.img-placeholder {
  aspect-ratio: 16 / 9;
  background-color: var(--background-gray);
  border-radius: 8px;
  overflow: hidden;
}

.rounded-2 {
  border-radius: 8px;
}

.rounded-3 {
  border-radius: 12px;
}

.rounded-4 {
  border-radius: 16px;
}

.rounded-full {
  border-radius: 9999px;
}

.mt-0 {
  margin-top: 0 !important;
}

.mt-5 {
  margin-top: 20px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

/* Margin Bottom */
.mb-1 {
  margin-bottom: 4px !important;
}

.mb-2 {
  margin-bottom: 8px !important;
}

.mb-4 {
  margin-bottom: 16px !important;
}

.mb-5 {
  margin-bottom: 20px !important;
}

.mb-6 {
  margin-bottom: 24px !important;
}

.mb-8 {
  margin-bottom: 32px !important;
}

.mb-12 {
  margin-bottom: 48px !important;
}

.p-4 {
  padding: 16px !important;
}

.pl-4 {
  padding-left: 16px !important;
}

.pr-2 {
  padding-right: 8px !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pb-2 {
  padding-bottom: 8px !important;
}

.pb-4 {
  padding-bottom: 16px !important;
}

.px-4 {
  padding-left: 16px !important;
  padding-right: 16px !important;
}

.px-5 {
  padding-left: 20px !important;
  padding-right: 20px !important;
}

/* Padding Top + Bottom */

.py-3 {
  padding-top: 12px;
  padding-bottom: 12px;
}

.py-4 {
  padding-top: 16px;
  padding-bottom: 16px;
}

.py-6 {
  padding-top: 24px;
  padding-bottom: 24px;
}

/* Margin Top + Bottom */

.my-2 {
  margin-top: 8px;
  margin-bottom: 8px;
}

.my-3 {
  margin-top: 12px;
  margin-bottom: 12px;
}

.my-4 {
  margin-top: 16px;
  margin-bottom: 16px;
}

/* Margin Left + Right */
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

/* Margin Right */

.w-100 {
  width: 100% !important;
}

@media (min-width: 768px) {
  .w-md-auto {
    width: auto !important;
  }
}

.sticky-column {
  position: sticky;
  top: 120px;
}

/* sticky-title is an h2 — only override size (weight comes from h2) */
.sticky-title {
  font-size: var(--fs-h3);
  line-height: var(--lh-heading);
}

@media (min-width: 1200px) {
  .sticky-title {
    font-size: var(--fs-h4);
  }
}

/* ========== custom styles ========== */
.top-header {
  font-size: var(--fs-md);
  line-height: var(--lh-tight);
}

.other-sites {
  padding: 0;
}

.social-icons {
  padding: 12px 8px;
  color: var(--background-color);
  background-color: #ffffff1f;
  gap: 10px;
  text-decoration: none;
}

.social-icons li a {
  display: flex;
}

.logo {
  margin-inline: auto;
}

.logo img {
  width: auto;
  height: 38px;
}

.search-input {
  padding: 6px 30px 6px 8px;

  border-radius: 4px;
}

.search-btn {
  position: absolute;
  right: 12px;
  top: 50%;
  background-color: transparent;
  transform: translateY(-50%);
}

.show-search-btn {
  padding: 12px;
  border-radius: 999px;
}

/* navbar sidebar */

.dropdown {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

header {
  z-index: 99;
}

.header ul .dropdown ul {
  display: block;
  visibility: hidden;
  position: absolute;
  margin: 0;
  z-index: 999;
  transform-origin: top;
  transform: scale(0);
  white-space: nowrap;
  left: 0;
  top: 50px;
  width: 100%;
}

.header ul .dropdown ul li {
  min-width: 170px;
}

.cancel-btn {
  display: none;
}

.cancel-btn,
.toggle-slide-btn {
  display: none;
}

.show-ul {
  overflow-y: auto;
  transform: translate(0) !important;
}

.doc-overlay {
  background: #12121280;
}

.doc-overlay {
  top: 0;
  bottom: 0;
  left: 0;
  position: fixed;
  width: 100vw;
  height: 100vh;
  opacity: 0.5;
  z-index: 2;
}

.dropdown {
  display: flex;
  align-items: center;
  gap: 6px;
  justify-content: space-between;
}

.dropdown ul .dropdown ul {
  position: absolute;
  top: 10px;
  left: calc(100% + 15px);
}

.header nav {
  height: 100vh;
  left: 0;
  position: absolute;
  top: 0;
  transform: translateX(-100%);
  transition: all 0.2s;
  z-index: 10;
}

.toggle-slide-btn {
  display: block;
  padding: 0;
}

.header ul li.showMenu>ul {
  display: block !important;
  opacity: 1;
  transform: scaleY(1);
  visibility: visible;
}

.nav-links li a {
  padding: 12px;
  width: 100%;
  display: inline-flex;
}

.solid-sidebar {
  background-color: var(--background-color);
  width: 250px;
  height: 100%;
}

.solid-sidebar img {
  padding: 12px;
}

.transparent-sidebar {
  background: rgba(0, 0, 0, 0.5);
  padding: 12px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.secondary-nav {
  border-block: 1px solid var(--background-gray);
}

.secondary-nav li a {
  padding: 12px 0;
  text-wrap: nowrap;
  display: inline-flex;
  position: relative;
  font-size: var(--fs-md);
  font-weight: var(--fw-medium);
  line-height: var(--lh-tight);
}

.search-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 999;
  padding: 170px 20px 20px;
  display: none;
}

.search-overlay .search-input {
  padding: 12px 32px 12px 12px;
}

.search-overlay .close-search-btn {
  position: absolute;
  top: 12px;
  right: 11px;
  padding: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.6);
  padding: 10px;
  border-radius: 999px;
}

/* mobile navbar */
.mobile-navbar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: var(--background-color);
  z-index: 98;
  padding-block: 8px;
  transition: all 0.3s ease-in-out
}

.mobile-navbar.hide {
  transform: translateY(100%);
}

.mobile-navbar ul li {
  flex: 1;
  text-align: center;
}

.mobile-navbar ul li a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  line-height: var(--lh-tight);
  color: var(--text-light);
  text-transform: uppercase;
  gap: 2px;
  width: 100%;
}

.mobile-navbar ul li a .svg-container {
  width: auto;
  padding: 6px 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background-color: transparent;
}

/* ========== News card system ========== */
.news-card {
  --card-gap: 12px;
  --card-media-col: 44%;
  --card-media-share: var(--card-media-col);
  --card-media-min: 72px;
  --card-media-max: 138px;
  --card-title-size: 18px;
  --card-title-lh: var(--lh-snug);
  --card-title-weight: var(--fw-medium);
  --card-title-lines: 3;

  display: grid;
  align-items: center;
  gap: var(--card-gap);
  padding-top: 14px;
  margin-top: 14px;
  grid-template-columns: none;
}

.news-card--row {
  --card-title-size: var(--fs-base);
  --card-title-lh: var(--lh-snug);
  grid-template-columns:
    minmax(var(--card-media-min),
      min(var(--card-media-share), var(--card-media-max))) minmax(0, 1fr);
}

.news-card .news-title {
  font-size: var(--card-title-size);
  line-height: var(--card-title-lh);
  font-weight: var(--card-title-weight);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: var(--card-title-lines);
  line-clamp: var(--card-title-lines);
}

.news-card .news-card__excerpt {
  margin: 0;
}

.news-card .img-placeholder {
  min-width: 0;
}

.news-card--featured {
  --card-title-size: var(--fs-h3);
  --card-title-lh: var(--lh-heading);
  --card-title-weight: var(--fw-semibold);
  --card-title-lines: 3;
}

/* Author articles: vertical cards in col-md-6 grid */
.author-articles .news-card {
  align-items: start;
  grid-template-columns: none;
  --card-title-size: var(--fs-base);
  --card-title-lh: var(--lh-snug);
}

@media (min-width: 992px) {
  .news-rail--stack-at-lg>.news-card {
    --card-title-size: 18px;
    --card-title-lh: var(--lh-snug);
    --card-title-weight: var(--fw-semibold);
    grid-template-columns: none;
  }

  .news-card--row-at-lg {
    --card-title-size: var(--fs-base);
    --card-title-lh: var(--lh-snug);
    grid-template-columns:
      minmax(var(--card-media-min), min(var(--card-media-share), var(--card-media-max))) minmax(0, 1fr);
  }

  .news-card--featured-lg {
    --card-title-size: var(--fs-h3);
    --card-title-lh: var(--lh-heading);
    --card-title-weight: var(--fw-semibold);
    --card-title-lines: 3;
  }
}

.footer-icons li a {
  padding: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

/* ========== blog post page ========== */
/* breadcrumb */
.yoast-breadcrumbs {
  margin-bottom: 16px;
  font-size: var(--fs-sm);
  color: var(--text-light);
}

.yoast-breadcrumbs a {
  color: var(--text-light);
  text-decoration: none;
}

.yoast-breadcrumbs a:hover {
  color: var(--secondary-color);
}

.blog-post-container {
  max-height: 1250px;
  overflow: hidden;
  position: relative;
}

.blog-post-container::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 140px;
  content: "";
  background: linear-gradient(to bottom,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.85) 55%,
      rgba(255, 255, 255, 1) 100%);
  pointer-events: none;
  z-index: 97;
}

.blog-post-container.expanded {
  max-height: none;
  overflow: visible;
  position: static;
}

.blog-post-container.expanded::after {
  display: none;
}

.blog-post-container.expanded .read-more-btn {
  display: none;
}

.read-more-btn {
  position: absolute;
  bottom: 24px;
  left: 50%;
  z-index: 98;
  transform: translateX(-50%);
  border-radius: 999px;
  padding: 10px 20px;
  font-size: var(--fs-sm);
  gap: 6px;
}

.blog-post {
  margin-bottom: 20px;
}

.blog-post :is(h1, h2, h3, h4, h5, h6, p, ul, ol, figure),
.sec-list{
  margin-bottom: 20px;
}

.blog-post h1 {
  font-weight: var(--fw-bold);
  /* only delta vs global h1 */
}

.blog-post figcaption {
  font-size: var(--fs-sm);
  line-height: var(--lh-snug);
  padding: 8px 0;
}

.blog-post figure:not(.wp-block-table) img,
.blog-post .wp-block-image img {
  border-radius: 8px;
}

.blog-post blockquote {
  padding: 12px;
  padding-left: 16px;
  margin-bottom: 20px;
}

.blog-post blockquote:last-child {
  margin-bottom: 0;
}

/* Related News — unique nav button overrides only */
.related-news .swiper-button-prev,
.related-news .swiper-button-next {
  position: static;
  width: 32px;
  height: 32px;
  margin: 0;
  transform: none;
  border-radius: 50%;
  border: 1px solid var(--light-gray);
  background: var(--background-color);
  color: var(--black);
  box-shadow: none;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.swiper-button-next,
.swiper-button-prev {

  ::slotted(svg),
  svg {
    width: auto;
    height: auto;
  }
}

.related-news .swiper-button-prev:hover,
.related-news .swiper-button-next:hover {
  background: var(--primary-color);
  border-color: var(--primary-color);
  color: var(--white);
}

.related-news .swiper-button-disabled {
  opacity: 0.35;
  cursor: default;
  pointer-events: none;
}

.styled-heading {
  width: fit-content;
  font-weight: var(--fw-medium);
  color: var(--white);
  padding: 4px 15px;
  background-color: var(--primary-color);
  border-radius: 5px 5px 5px 0;
  margin-left: -22px;
  margin-bottom: 12px;
  position: relative;
}

.styled-heading:before {
  content: "";
  position: absolute;
  left: 0px;
  bottom: -6px;
  width: 0;
  height: 0;
  border-top: 0px solid transparent;
  border-bottom: 6px solid transparent;
  border-right: 6px solid #112f80;
}

.author-card {
  margin-left: 6px;
}

.author-card p + a {
  color: var(--secondary-color);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.author-card p + a:hover {
  color: var(--primary-color);
}

.tab_list {
  display: flex;
  gap: 8px;
  justify-content: space-between;
  margin-bottom: 20px;
  overflow-x: auto;
}

.tab_item {
  padding: 8px 12px;
  cursor: pointer;
  font-size: 16px;
}

.tab_item:hover {
  border-bottom: 2px solid var(--secondary-color);
}

.tab_item.is-active {
  font-weight: var(--fw-bold);
  color: var(--secondary-color);
  border-bottom: 2px solid var(--secondary-color);
}

.tab_content-item {
  display: none;
}

.tab_content-item.is-active {
  display: block;
}

.author-img-container img {
  border-radius: 50%;
}

/* scroll to top */
body:has(.mobile-navbar.hide) .scroll-top {
  bottom: 20px;
}

.scroll-top {
  position: fixed;
  right: 20px;
  bottom: 80px;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: 0.3s;
  z-index: 98;
}

.scroll-top.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.progress-ring {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
}

/* contact page */
.contact-links .svg-container {
  padding: 12px;
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  background-color: var(--bg-yellow);
  border-radius: 50%;
}

.contact-form label {
  display: inline-block;
  font-weight: var(--fw-semibold);
  font-size: 15px;
}
.contact-form .required {
  color: #d6070f;
  margin-left: 2px;
}
.contact-form-error {
  color: #d6070f;
  margin: 0 0 1rem;
  font-weight: 600;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form input[type="tel"],
.contact-form select,
.contact-form textarea {
  background-color: var(--white);
  border: 1px solid var(--background-gray);
  border-radius: 8px;
  padding: 10px;
  transition: 0.3s;
  font-size: 15px;
}

/* table */
.wp-block-table {
  margin: 0 0 1em;
  overflow-x: auto;
  border: 1px solid #f0f0f0 !important;
}

.wp-block-table table {
  border-collapse: collapse;
  width: 100%;
}

.wp-block-table td,
.wp-block-table th {
  border: 1px solid;
  padding: 0.7em;
  min-width: 140px;
}

.wp-block-table th {
  font-weight: var(--fw-semibold);
}

.wp-block-image :where(figcaption) {
  text-align: center;
}

.blog-post ul li,
.blog-post ol li,
.sec-list li{
  margin-bottom: 10px;
}

.blog-post ul > li,
.sec-list > li{
  position: relative;
  padding-left: 1em;
  list-style: none;
}

.blog-post ul > li:last-child,
.sec-list > li:last-child{
  margin-bottom: 0;
}

.blog-post ul > li::before,
.sec-list > li::before{
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--secondary-color);
}

.author-section {
  position: relative;
}

.author-section span.text {
  position: relative;
  padding-left: 16px;
}

/* ========== Other page (404, TQ) ========== */
.other-page img {
  width: 300px;
}

.block {
  display: block;
}

/* Media Queries */
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }

  .solid-sidebar {
    width: 300px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }

  .col-md-4 {
    flex: 0 0 auto;
    width: 33.33%;
  }

  .col-md-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-md-8 {
    flex: 0 0 auto;
    width: 66.666667%;
  }

  .col-md-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .md-block {
    display: block !important;
  }

  .md-inline-block {
    display: inline-block !important;
  }

  .md-hidden {
    display: none !important;
  }

  .md-flex-row {
    flex-direction: row;
  }

  .md-order-2 {
    order: 2;
  }

  .md-order-3 {
    order: 3;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }

  .col-lg-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-lg-4 {
    flex: 0 0 auto;
    width: 33.33333333%;
  }

  .col-lg-5 {
    flex: 0 0 auto;
    width: 41.66666667%;
  }

  .col-lg-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-lg-7 {
    flex: 0 0 auto;
    width: 58.33333333%;
  }

  .col-lg-8 {
    flex: 0 0 auto;
    width: 66.66666667%;
  }

  .col-lg-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-lg-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .lg-block {
    display: block !important;
  }

  .lg-order-1 {
    order: 1;
  }

  .lg-order-2 {
    order: 2;
  }

  .lg-order-3 {
    order: 3;
  }

  .lg-mt-0 {
    margin-top: 0;
  }

  .lg-pt-0 {
    padding-top: 0;
  }

  .lg-border-none {
    border: none !important;
  }

  .scroll-top {
    bottom: 20px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }

  .col-xl-3 {
    flex: 0 0 auto;
    width: 25%;
  }

  .col-xl-6 {
    flex: 0 0 auto;
    width: 50%;
  }

  .col-xl-9 {
    flex: 0 0 auto;
    width: 75%;
  }

  .col-xl-12 {
    flex: 0 0 auto;
    width: 100%;
  }

  .xl-block {
    display: block !important;
  }

  .xl-mb-0 {
    margin-bottom: 0 !important;
  }

}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .sticky-column .row>.col-md-6:nth-child(2) .news-card {
    border-top: 0;
    margin: 0;
    padding: 0;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .sticky-column .row>.col-lg-4:nth-child(3) .news-card {
    border-top: 0;
    margin: 0;
    padding: 0;
  }
}

@media (min-width: 992px) {
  .latest-col-5 .row>.col-md-6:nth-child(1) .news-card {
    border-top: 0;
    margin: 0;
    padding: 0;
  }
}

.latest-col-5 .news-card {
  padding-top: 15px;
  margin-top: 15px;
}

@media (min-width: 768px) {
  .entertainment-row .col-md-6.order-3.md-order-2 .news-card {
    border-top: 0;
    margin: 0;
    padding: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px),
(min-width: 1200px) {
  .business-row .col-md-6.order-3.md-order-2 .news-card {
    border-top: 0;
    margin: 0;
    padding: 0;
  }
}

@media (min-width: 768px) and (max-width: 991px){
  .sports-side-row .col-6.col-lg-12:nth-child(2) .news-card {
    border-top: 0;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .news-card--row-at-lg-only {
    --card-title-size: var(--fs-base);
    --card-title-lh: var(--lh-snug);
    grid-template-columns:
      minmax(var(--card-media-min), min(var(--card-media-share), var(--card-media-max))) minmax(0, 1fr);
  }
}

.author-section span {
  font-size: 16px;
}

.blog-post ol {
  padding-left: 16px;
}

 /* Anoop Style Starts Here */
    .about-hero-sec {
        margin-top: 48px;
    }

    .container:has(.our-mission-con) {
        background-color: #f4f7ff;
        border-radius: 16px;
		padding-block: 36px;
		@media(min-width: 768px){
			padding: 36px;
		}
    }

    .our-mission-con {
        @media(min-width: 1024px) {
            border-right: 1px solid #dfdfdf;
            padding-right: 24px;
        }
    }
 

    .flex-auth-card {
        border: 1px solid var(--background-gray);
        border-radius: 8px;
        padding: 24px;
        display: flex;
        flex-direction: column;
        gap: 16px;
        position: relative;
        height: 100%;
    }

    .flex-auth-card .auth-img {
        border-radius: 50%;
        height: 92px;
        width: 92px;
        object-fit: cover;
        position: absolute;
        top: -46px;
        right: 32px;
        border: 2px solid var(--secondary-color);
    }
.flex-auth-card .flex-social-con{
	margin-top: auto;
}
    .flex-auth-card .flex-social-con li a {
        border: 1px solid var(--secondary-color);
        width: 36px;
        height: 36px;
        border-radius: 50%;
    }

    .flex-auth-card .flex-social-con li:hover a {
        background-color: var(--secondary-color);
    }

    .flex-auth-card .flex-social-con li:hover a svg :is(path, g) {
        fill: #fff;
    }
    .team-sec .row:has(.flex-auth-card){
       row-gap: 68px;
    }
    .team-sec{
        padding-block: 48px;
    }
    /* Anoop Style Ends Here */