.elementor-1278 .elementor-element.elementor-element-450a780{--display:flex;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}.elementor-1278 .elementor-element.elementor-element-824c970{--display:flex;--flex-direction:column;--container-widget-width:100%;--container-widget-height:initial;--container-widget-flex-grow:0;--container-widget-align-self:initial;--flex-wrap-mobile:wrap;--margin-top:0px;--margin-bottom:0px;--margin-left:0px;--margin-right:0px;--padding-top:0px;--padding-bottom:0px;--padding-left:0px;--padding-right:0px;}:root{--page-title-display:none;}/* Start custom CSS for html, class: .elementor-element-0c2d0eb *//* ========================================================= */
/* RESEARCH HERO BLOG PAGE HEADER                            */
/* ========================================================= */

.rh-blog-hero {
  position: relative;

  display: flex;
  align-items: center;

  width: 100%;
  min-height: 620px;

  /*
   * Research Hero ka header transparent aur absolute hai.
   * Extra top spacing content ko header ke neeche rakhegi.
   */
  padding: 190px 20px 85px;

  overflow: hidden;
  isolation: isolate;

  background:
    linear-gradient(
      135deg,
      #1dbc88 0%,
      #19ad80 48%,
      #159f76 100%
    );
}


/* ========================================================= */
/* BACKGROUND SOFT GLOW                                      */
/* ========================================================= */

.rh-blog-hero::before {
  content: "";

  position: absolute;

  top: -220px;
  left: 50%;

  width: 850px;
  height: 500px;

  border-radius: 50%;

  background:
    rgba(255, 255, 255, 0.16);

  filter: blur(80px);
  transform: translateX(-50%);

  pointer-events: none;
  z-index: -1;
}


/* ========================================================= */
/* BOTTOM BACKGROUND GLOW                                    */
/* ========================================================= */

.rh-blog-hero::after {
  content: "";

  position: absolute;

  right: -180px;
  bottom: -270px;

  width: 580px;
  height: 580px;

  border-radius: 50%;

  background:
    rgba(21, 50, 90, 0.15);

  filter: blur(75px);

  pointer-events: none;
  z-index: -1;
}


/* ========================================================= */
/* ANIMATED SVG BACKGROUND                                   */
/* ========================================================= */

.rh-blog-hero__background {
  position: absolute;
  inset: 0;

  width: 100%;
  height: 100%;

  pointer-events: none;
  z-index: -2;
}

.rh-blog-hero__background svg {
  display: block;

  width: 100%;
  height: 100%;

  opacity: 0.62;
}


/* ========================================================= */
/* FLOWING BACKGROUND LINES                                  */
/* ========================================================= */

.rh-blog-hero__flow {
  fill: none;

  stroke-linecap: round;
  stroke-width: 3;
  stroke-dasharray: 18 18;

  animation:
    rhBlogFlowMove
    20s
    linear
    infinite;
}

.rh-blog-hero__flow--one {
  stroke: rgba(255, 255, 255, 0.2);
}

.rh-blog-hero__flow--two {
  stroke: rgba(21, 50, 90, 0.13);

  animation-duration: 27s;
  animation-direction: reverse;
}


/* ========================================================= */
/* CONNECTION LINES                                          */
/* ========================================================= */

.rh-blog-hero__connections line {
  fill: none;

  stroke: rgba(255, 255, 255, 0.15);
  stroke-width: 1.5;
  stroke-dasharray: 7 10;

  animation:
    rhBlogConnectionMove
    15s
    linear
    infinite;
}


/* ========================================================= */
/* DATA NODES                                                */
/* ========================================================= */

.rh-blog-hero__nodes circle {
  fill: rgba(255, 255, 255, 0.2);

  stroke: rgba(255, 255, 255, 0.58);
  stroke-width: 2;

  transform-box: fill-box;
  transform-origin: center;

  animation:
    rhBlogNodePulse
    4s
    ease-in-out
    infinite;
}

.rh-blog-hero__nodes circle:nth-child(2n) {
  animation-delay: 1s;
}

.rh-blog-hero__nodes circle:nth-child(3n) {
  animation-delay: 2s;
}


/* ========================================================= */
/* CLINICAL PLUS SYMBOLS                                     */
/* ========================================================= */

.rh-blog-hero__symbols {
  stroke: rgba(255, 255, 255, 0.3);
  stroke-width: 5;
  stroke-linecap: round;

  animation:
    rhBlogSymbolFloat
    7s
    ease-in-out
    infinite;
}


/* ========================================================= */
/* CONTENT CONTAINER                                         */
/* ========================================================= */

.rh-blog-hero__container {
  position: relative;

  width: 100%;
  max-width: 1080px;

  margin: 0 auto;
}


/* ========================================================= */
/* CENTER GLASS CARD                                         */
/* ========================================================= */

.rh-blog-hero__glass-card {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 100%;
  min-height: 335px;

  padding: 62px 80px;

  overflow: hidden;

  border:
    1px solid
    rgba(255, 255, 255, 0.72);

  border-radius: 26px;

  background:
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.82),
      rgba(255, 255, 255, 0.53)
    );

  box-shadow:
    0 35px 80px rgba(4, 27, 50, 0.24),
    inset 0 1px 1px rgba(255, 255, 255, 0.95),
    inset 0 -1px 1px rgba(255, 255, 255, 0.2);

  backdrop-filter:
    blur(28px)
    saturate(145%);

  -webkit-backdrop-filter:
    blur(28px)
    saturate(145%);

  opacity: 0;
  transform: translateY(45px);

  animation:
    rhBlogCardEnter
    0.9s
    cubic-bezier(0.22, 1, 0.36, 1)
    0.12s
    forwards;
}


/* ========================================================= */
/* GLASS REFLECTION                                          */
/* ========================================================= */

.rh-blog-hero__glass-card::before {
  content: "";

  position: absolute;
  inset: 0;

  border-radius: inherit;

  background:
    linear-gradient(
      120deg,
      rgba(255, 255, 255, 0.52),
      transparent 30%,
      transparent 68%,
      rgba(255, 255, 255, 0.14)
    );

  pointer-events: none;
}


/* ========================================================= */
/* COLOURED GLASS GLOW                                       */
/* ========================================================= */

.rh-blog-hero__glass-card::after {
  content: "";

  position: absolute;

  top: -130px;
  right: -90px;

  width: 360px;
  height: 360px;

  border-radius: 50%;

  background:
    rgba(29, 183, 135, 0.18);

  filter: blur(50px);

  pointer-events: none;
}


/* ========================================================= */
/* CONTENT                                                   */
/* ========================================================= */

.rh-blog-hero__content {
  position: relative;
  z-index: 2;

  width: 100%;
  max-width: 850px;

  margin: 0 auto;

  text-align: center;
}


/* ========================================================= */
/* BREADCRUMB                                                */
/* ========================================================= */

.rh-blog-hero__breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;

  margin-bottom: 21px;

  color: rgba(21, 50, 90, 0.7);

  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.rh-blog-hero__breadcrumb a {
  color: #109267;
  text-decoration: none;

  transition:
    color 0.25s ease;
}

.rh-blog-hero__breadcrumb a:hover {
  color: #15325a;
}


/* ========================================================= */
/* EYEBROW                                                   */
/* ========================================================= */

.rh-blog-hero__eyebrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  margin-bottom: 18px;
  padding: 9px 16px;

  color: #109267;

  border:
    1px solid
    rgba(16, 146, 103, 0.2);

  border-radius: 999px;

  background:
    rgba(255, 255, 255, 0.5);

  box-shadow:
    0 8px 20px
    rgba(16, 146, 103, 0.08);

  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}


/* ========================================================= */
/* MAIN HEADING                                              */
/* ========================================================= */

.rh-blog-hero__content h1 {
  margin: 0;

  color: #15325a;

  font-size:
    clamp(42px, 5vw, 68px);

  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.rh-blog-hero__content h1 span {
  display: block;

  color: #109267;
}


/* ========================================================= */
/* DESCRIPTION                                               */
/* ========================================================= */

.rh-blog-hero__description {
  max-width: 720px;

  margin: 24px auto 0;

  color: rgba(21, 50, 90, 0.76);

  font-size:
    clamp(16px, 1.5vw, 18px);

  font-weight: 400;
  line-height: 1.75;
}


/* ========================================================= */
/* BLOG TOPIC PILLS                                          */
/* ========================================================= */

.rh-blog-hero__topics {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;

  margin-top: 30px;
}

.rh-blog-hero__topics span {
  display: inline-flex;
  align-items: center;

  padding: 9px 14px;

  color: #15325a;

  border:
    1px solid
    rgba(21, 50, 90, 0.11);

  border-radius: 999px;

  background:
    rgba(255, 255, 255, 0.45);

  font-size: 12px;
  font-weight: 700;
  line-height: 1;

  box-shadow:
    0 8px 22px
    rgba(4, 27, 50, 0.06);
}


/* ========================================================= */
/* ANIMATIONS                                                */
/* ========================================================= */

@keyframes rhBlogFlowMove {

  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -330;
  }

}

@keyframes rhBlogConnectionMove {

  from {
    stroke-dashoffset: 0;
  }

  to {
    stroke-dashoffset: -175;
  }

}

@keyframes rhBlogNodePulse {

  0%,
  100% {
    opacity: 0.4;
    transform: scale(1);
  }

  50% {
    opacity: 0.95;
    transform: scale(1.35);
  }

}

@keyframes rhBlogSymbolFloat {

  0%,
  100% {
    opacity: 0.4;
    transform: translateY(0);
  }

  50% {
    opacity: 0.85;
    transform: translateY(-15px);
  }

}

@keyframes rhBlogCardEnter {

  from {
    opacity: 0;
    transform: translateY(45px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }

}


/* ========================================================= */
/* TABLET                                                    */
/* ========================================================= */

@media (max-width: 900px) {

  .rh-blog-hero {
    min-height: auto;

    padding:
      155px
      20px
      70px;
  }

  .rh-blog-hero__container {
    max-width: 720px;
  }

  .rh-blog-hero__glass-card {
    min-height: 0;

    padding:
      52px
      42px;

    border-radius: 23px;
  }

  .rh-blog-hero__content h1 {
    font-size:
      clamp(39px, 7vw, 57px);
  }

}


/* ========================================================= */
/* MOBILE                                                    */
/* ========================================================= */

@media (max-width: 600px) {

  .rh-blog-hero {
    padding:
      135px
      14px
      45px;
  }

  .rh-blog-hero__glass-card {
    padding:
      38px
      20px;

    border-radius: 20px;
  }

  .rh-blog-hero__breadcrumb {
    margin-bottom: 17px;

    font-size: 12px;
  }

  .rh-blog-hero__eyebrow {
    margin-bottom: 15px;
    padding: 8px 12px;

    font-size: 9px;
  }

  .rh-blog-hero__content h1 {
    font-size: 38px;
    line-height: 1.08;
  }

  .rh-blog-hero__description {
    margin-top: 19px;

    font-size: 15px;
    line-height: 1.65;
  }

  .rh-blog-hero__topics {
    gap: 8px;

    margin-top: 24px;
  }

  .rh-blog-hero__topics span {
    padding: 8px 11px;

    font-size: 10px;
  }

}


/* ========================================================= */
/* SMALL MOBILE                                              */
/* ========================================================= */

@media (max-width: 390px) {

  .rh-blog-hero__content h1 {
    font-size: 33px;
  }

  .rh-blog-hero__glass-card {
    padding:
      34px
      16px;
  }

}


/* ========================================================= */
/* WORDPRESS ADMIN BAR                                       */
/* ========================================================= */

body.admin-bar .rh-blog-hero {
  padding-top: 220px;
}

@media (max-width: 900px) {

  body.admin-bar .rh-blog-hero {
    padding-top: 185px;
  }

}

@media (max-width: 600px) {

  body.admin-bar .rh-blog-hero {
    padding-top: 165px;
  }

}


/* ========================================================= */
/* REDUCED MOTION ACCESSIBILITY                              */
/* ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .rh-blog-hero__flow,
  .rh-blog-hero__connections line,
  .rh-blog-hero__nodes circle,
  .rh-blog-hero__symbols {
    animation: none;
  }

  .rh-blog-hero__glass-card {
    opacity: 1;
    transform: none;
    animation: none;
  }

}/* End custom CSS */
/* Start custom CSS for html, class: .elementor-element-927d253 *//* ========================================================= */
/* RESEARCH HERO BLOG POSTS + SIDEBAR                        */
/* ========================================================= */

.rh-blog-section {
  position: relative;

  padding: 100px 20px;

  background:
    linear-gradient(
      180deg,
      #f6fbf9 0%,
      #ffffff 42%,
      #f8fbfd 100%
    );
}

.rh-blog-section__container {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 44px;
  align-items: start;

  width: 100%;
  max-width: 1240px;

  margin: 0 auto;
}


/* ========================================================= */
/* SECTION HEADING                                           */
/* ========================================================= */

.rh-blog-section__heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: 35px;
  align-items: end;

  margin-bottom: 42px;
  padding-bottom: 28px;

  border-bottom:
    1px solid
    rgba(21, 50, 90, 0.1);
}

.rh-blog-section__eyebrow {
  display: inline-block;

  margin-bottom: 12px;

  color: #109267;

  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.rh-blog-section__heading h2 {
  margin: 0;

  color: #15325a;

  font-size:
    clamp(32px, 3.5vw, 48px);

  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.035em;
}

.rh-blog-section__heading > p {
  margin: 0;

  color: #607086;

  font-size: 15px;
  line-height: 1.75;
}


/* ========================================================= */
/* BLOG CARD GRID                                            */
/* ========================================================= */

.rh-blog-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}


/* ========================================================= */
/* BLOG CARD                                                 */
/* ========================================================= */

.rh-blog-card {
  overflow: hidden;

  border:
    1px solid
    rgba(21, 50, 90, 0.09);

  border-radius: 20px;

  background: #ffffff;

  box-shadow:
    0 18px 45px
    rgba(12, 42, 66, 0.07);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.rh-blog-card:hover {
  transform: translateY(-7px);

  border-color:
    rgba(29, 183, 136, 0.25);

  box-shadow:
    0 28px 60px
    rgba(12, 42, 66, 0.13);
}


/* ========================================================= */
/* BLOG CARD VISUAL                                          */
/* ========================================================= */

.rh-blog-card__visual {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 225px;

  overflow: hidden;

  text-decoration: none;
}

.rh-blog-card__visual::before,
.rh-blog-card__visual::after {
  content: "";

  position: absolute;

  border-radius: 50%;
}

.rh-blog-card__visual::before {
  top: -70px;
  right: -55px;

  width: 190px;
  height: 190px;

  background:
    rgba(255, 255, 255, 0.18);
}

.rh-blog-card__visual::after {
  left: -55px;
  bottom: -75px;

  width: 175px;
  height: 175px;

  border:
    1px solid
    rgba(255, 255, 255, 0.22);
}


/* Visual Variations */

.rh-blog-card__visual--one {
  background:
    linear-gradient(
      135deg,
      #1dbc88,
      #109267
    );
}

.rh-blog-card__visual--two {
  background:
    linear-gradient(
      135deg,
      #15325a,
      #25628e
    );
}

.rh-blog-card__visual--three {
  background:
    linear-gradient(
      135deg,
      #25b99a,
      #167f74
    );
}

.rh-blog-card__visual--four {
  background:
    linear-gradient(
      135deg,
      #25628e,
      #15325a
    );
}

.rh-blog-card__visual--five {
  background:
    linear-gradient(
      135deg,
      #20b78d,
      #136f67
    );
}

.rh-blog-card__visual--six {
  background:
    linear-gradient(
      135deg,
      #173b65,
      #1a8b83
    );
}


/* Category Label */

.rh-blog-card__visual-label {
  position: absolute;

  top: 18px;
  left: 18px;

  z-index: 2;

  padding: 8px 12px;

  color: #ffffff;

  border:
    1px solid
    rgba(255, 255, 255, 0.28);

  border-radius: 999px;

  background:
    rgba(255, 255, 255, 0.14);

  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  font-size: 10px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}


/* Visual Icon */

.rh-blog-card__visual-icon {
  position: relative;
  z-index: 2;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 88px;
  height: 88px;

  border:
    1px solid
    rgba(255, 255, 255, 0.32);

  border-radius: 24px;

  background:
    rgba(255, 255, 255, 0.14);

  box-shadow:
    inset 0 1px 1px
    rgba(255, 255, 255, 0.28);

  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transition:
    transform 0.35s ease;
}

.rh-blog-card:hover .rh-blog-card__visual-icon {
  transform:
    translateY(-5px)
    rotate(-3deg);
}

.rh-blog-card__visual-icon svg {
  width: 46px;
  height: 46px;

  fill: none;

  stroke: #ffffff;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* ========================================================= */
/* BLOG CARD CONTENT                                         */
/* ========================================================= */

.rh-blog-card__body {
  padding: 26px;
}

.rh-blog-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;

  margin-bottom: 14px;

  color: #7a8798;

  font-size: 11px;
  font-weight: 600;
}

.rh-blog-card__meta span[aria-hidden="true"] {
  width: 4px;
  height: 4px;

  border-radius: 50%;

  background: #1dbc88;
}

.rh-blog-card__body h3 {
  margin: 0 0 13px;

  font-size: 21px;
  font-weight: 750;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.rh-blog-card__body h3 a {
  color: #15325a;
  text-decoration: none;

  transition:
    color 0.25s ease;
}

.rh-blog-card__body h3 a:hover {
  color: #109267;
}

.rh-blog-card__body p {
  margin: 0 0 21px;

  color: #647387;

  font-size: 14px;
  line-height: 1.7;
}


/* Read More Link */

.rh-blog-card__link {
  display: inline-flex;
  align-items: center;
  gap: 8px;

  color: #109267;

  font-size: 13px;
  font-weight: 800;
  text-decoration: none;
}

.rh-blog-card__link svg,
.rh-blog-sidebar__view-all svg,
.rh-blog-pagination__next svg {
  width: 17px;
  height: 17px;

  fill: none;

  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;

  transition:
    transform 0.25s ease;
}

.rh-blog-card__link:hover svg,
.rh-blog-sidebar__view-all:hover svg,
.rh-blog-pagination__next:hover svg {
  transform: translateX(4px);
}


/* ========================================================= */
/* BLOG PAGINATION                                           */
/* ========================================================= */

.rh-blog-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;

  margin-top: 45px;
}

.rh-blog-pagination__item,
.rh-blog-pagination__next {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 43px;
  height: 43px;

  border:
    1px solid
    rgba(21, 50, 90, 0.11);

  border-radius: 11px;

  background: #ffffff;

  color: #15325a;

  font-size: 13px;
  font-weight: 750;
  text-decoration: none;

  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease,
    transform 0.25s ease;
}

.rh-blog-pagination__item:hover,
.rh-blog-pagination__item.is-active {
  color: #ffffff;

  border-color: #1dbc88;

  background: #1dbc88;

  transform: translateY(-2px);
}

.rh-blog-pagination__next {
  gap: 7px;

  min-width: auto;

  padding: 0 16px;
}

.rh-blog-pagination__next:hover {
  color: #109267;

  border-color:
    rgba(29, 183, 136, 0.35);

  transform: translateY(-2px);
}


/* ========================================================= */
/* BLOG SIDEBAR                                              */
/* ========================================================= */

.rh-blog-sidebar {
  position: sticky;
  top: 120px;

  display: flex;
  flex-direction: column;
  gap: 25px;
}


/* Sidebar Widget */

.rh-blog-sidebar__widget {
  padding: 27px;

  border:
    1px solid
    rgba(21, 50, 90, 0.09);

  border-radius: 20px;

  background:
    rgba(255, 255, 255, 0.95);

  box-shadow:
    0 18px 45px
    rgba(12, 42, 66, 0.07);
}

.rh-blog-sidebar__widget-heading {
  display: flex;
  align-items: center;
  gap: 12px;

  margin-bottom: 22px;
  padding-bottom: 17px;

  border-bottom:
    1px solid
    rgba(21, 50, 90, 0.09);
}

.rh-blog-sidebar__widget-heading h3 {
  margin: 0;

  color: #15325a;

  font-size: 19px;
  font-weight: 800;
  line-height: 1.2;
}

.rh-blog-sidebar__heading-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  width: 37px;
  height: 37px;

  flex: 0 0 auto;

  border-radius: 11px;

  background:
    rgba(29, 183, 136, 0.11);
}

.rh-blog-sidebar__heading-icon svg {
  width: 19px;
  height: 19px;

  fill: none;

  stroke: #109267;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* ========================================================= */
/* SEARCH FORM                                               */
/* ========================================================= */

.rh-blog-search {
  position: relative;

  display: flex;
  align-items: center;
}

.rh-blog-search input[type="search"] {
  width: 100%;
  height: 52px;

  padding:
    0
    56px
    0
    16px;

  border:
    1px solid
    rgba(21, 50, 90, 0.13);

  border-radius: 13px;
  outline: none;

  background: #f8fbfa;

  color: #15325a;

  font-family: inherit;
  font-size: 13px;

  transition:
    border-color 0.25s ease,
    box-shadow 0.25s ease,
    background-color 0.25s ease;
}

.rh-blog-search input[type="search"]::placeholder {
  color: #84909f;
}

.rh-blog-search input[type="search"]:focus {
  border-color:
    rgba(29, 183, 136, 0.65);

  background: #ffffff;

  box-shadow:
    0 0 0 4px
    rgba(29, 183, 136, 0.1);
}

.rh-blog-search button {
  position: absolute;

  top: 6px;
  right: 6px;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 40px;
  height: 40px;

  padding: 0;

  border: 0;
  border-radius: 10px;

  background: #1dbc88;

  color: #ffffff;

  cursor: pointer;

  transition:
    background-color 0.25s ease,
    transform 0.25s ease;
}

.rh-blog-search button:hover {
  background: #109267;

  transform: translateY(-1px);
}

.rh-blog-search button svg {
  width: 18px;
  height: 18px;

  fill: none;

  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
}


/* ========================================================= */
/* LATEST POSTS                                              */
/* ========================================================= */

.rh-latest-posts {
  display: flex;
  flex-direction: column;
}

.rh-latest-post {
  display: flex;
  align-items: center;
  gap: 14px;

  padding: 16px 0;

  border-bottom:
    1px solid
    rgba(21, 50, 90, 0.08);
}

.rh-latest-post:first-child {
  padding-top: 0;
}

.rh-latest-post:last-child {
  padding-bottom: 0;

  border-bottom: 0;
}


/* Latest Thumbnail */

.rh-latest-post__thumbnail {
  position: relative;

  display: flex;
  align-items: center;
  justify-content: center;

  width: 76px;
  height: 70px;

  flex: 0 0 76px;

  overflow: hidden;

  border-radius: 12px;

  color: rgba(255, 255, 255, 0.74);

  font-size: 20px;
  font-weight: 800;
  text-decoration: none;
}

.rh-latest-post__thumbnail::before {
  content: "";

  position: absolute;

  right: -20px;
  bottom: -25px;

  width: 65px;
  height: 65px;

  border:
    1px solid
    rgba(255, 255, 255, 0.3);

  border-radius: 50%;
}

.rh-latest-post__thumbnail span {
  position: relative;
  z-index: 2;
}

.rh-latest-post__thumbnail--one {
  background:
    linear-gradient(
      135deg,
      #1dbc88,
      #109267
    );
}

.rh-latest-post__thumbnail--two {
  background:
    linear-gradient(
      135deg,
      #15325a,
      #25628e
    );
}

.rh-latest-post__thumbnail--three {
  background:
    linear-gradient(
      135deg,
      #25b99a,
      #167f74
    );
}

.rh-latest-post__thumbnail--four {
  background:
    linear-gradient(
      135deg,
      #25628e,
      #15325a
    );
}


/* Latest Content */

.rh-latest-post__content {
  min-width: 0;
}

.rh-latest-post__date {
  display: block;

  margin-bottom: 5px;

  color: #8793a2;

  font-size: 10px;
  font-weight: 650;
}

.rh-latest-post__content h4 {
  margin: 0;

  font-size: 13px;
  font-weight: 750;
  line-height: 1.45;
}

.rh-latest-post__content h4 a {
  color: #15325a;
  text-decoration: none;

  transition:
    color 0.25s ease;
}

.rh-latest-post__content h4 a:hover {
  color: #109267;
}


/* View All */

.rh-blog-sidebar__view-all {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;

  width: 100%;

  margin-top: 23px;
  padding: 13px 18px;

  border:
    1px solid
    rgba(29, 183, 136, 0.22);

  border-radius: 12px;

  background:
    rgba(29, 183, 136, 0.08);

  color: #109267;

  font-size: 12px;
  font-weight: 800;
  text-decoration: none;

  transition:
    color 0.25s ease,
    background-color 0.25s ease,
    border-color 0.25s ease;
}

.rh-blog-sidebar__view-all:hover {
  color: #ffffff;

  border-color: #109267;

  background: #109267;
}


/* ========================================================= */
/* ACCESSIBILITY                                             */
/* ========================================================= */

.screen-reader-text {
  position: absolute !important;

  width: 1px;
  height: 1px;

  padding: 0;
  margin: -1px;

  overflow: hidden;
  clip: rect(0, 0, 0, 0);

  white-space: nowrap;

  border: 0;
}


/* ========================================================= */
/* MEDIUM DESKTOP                                            */
/* ========================================================= */

@media (max-width: 1100px) {

  .rh-blog-section__container {
    grid-template-columns:
      minmax(0, 1fr)
      310px;

    gap: 30px;
  }

  .rh-blog-card__body {
    padding: 22px;
  }

  .rh-blog-card__body h3 {
    font-size: 19px;
  }

  .rh-blog-sidebar__widget {
    padding: 23px;
  }

}


/* ========================================================= */
/* TABLET                                                    */
/* ========================================================= */

@media (max-width: 900px) {

  .rh-blog-section {
    padding:
      75px
      20px;
  }

  .rh-blog-section__container {
    display: flex;
    flex-direction: column;
    gap: 50px;
  }

  .rh-blog-section__main,
  .rh-blog-sidebar {
    width: 100%;
  }

  .rh-blog-sidebar {
    position: static;

    display: grid;
    grid-template-columns:
      repeat(2, minmax(0, 1fr));

    align-items: start;
  }

}


/* ========================================================= */
/* SMALL TABLET                                              */
/* ========================================================= */

@media (max-width: 700px) {

  .rh-blog-section__heading {
    display: block;
  }

  .rh-blog-section__heading > p {
    margin-top: 17px;
  }

  .rh-blog-grid {
    grid-template-columns: 1fr;
  }

  .rh-blog-sidebar {
    grid-template-columns: 1fr;
  }

}


/* ========================================================= */
/* MOBILE                                                    */
/* ========================================================= */

@media (max-width: 600px) {

  .rh-blog-section {
    padding:
      58px
      14px;
  }

  .rh-blog-section__heading {
    margin-bottom: 30px;
  }

  .rh-blog-section__heading h2 {
    font-size: 32px;
  }

  .rh-blog-card {
    border-radius: 17px;
  }

  .rh-blog-card__visual {
    min-height: 205px;
  }

  .rh-blog-card__body {
    padding: 21px;
  }

  .rh-blog-card__body h3 {
    font-size: 19px;
  }

  .rh-blog-sidebar__widget {
    padding: 21px;

    border-radius: 17px;
  }

  .rh-blog-pagination {
    margin-top: 32px;
  }

}


/* ========================================================= */
/* REDUCED MOTION                                            */
/* ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .rh-blog-card,
  .rh-blog-card__visual-icon,
  .rh-blog-card__link svg,
  .rh-blog-pagination__item,
  .rh-blog-pagination__next,
  .rh-blog-sidebar__view-all svg,
  .rh-blog-search button {
    transition: none;
  }

}/* End custom CSS */