/*
 Theme Name:  PBC
 Theme URI:   https://pbcbiomed.com
 Description: Child theme for PBC Biomed
 Author:      PBC
 Template:    vayne-pro-premium
 Version:     1.0.0
 Text Domain: pbc-theme
*/

.single a,
.single a:visited {
  color: inherit!important;
  text-decoration-color: inherit!important;
}

@font-face {
  font-family: 'Roboto';
  src: url('/wp-content/themes/pbc/assets/fonts/Roboto/static/Roboto-Regular.ttf') format('truetype');
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url('/wp-content/themes/pbc/assets/fonts/Roboto/static/Roboto-Bold.ttf') format('truetype');
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Roboto';
  src: url('/wp-content/themes/pbc/assets/fonts/Roboto/static/Roboto-Italic.ttf') format('truetype');
  font-weight: 400;
  font-style: italic;
}

body {
  overflow-x: hidden;
  margin: 0px;
  padding-top: calc(var(--header-height) + var(--admin-offset, 0px));
  font-family: 'Roboto', sans-serif;
}

.pbc-topbar {
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, .06);
  font-size: 14px;
  line-height: 1;
  width: 100%
}

.pbc-topbar__inner {
  margin: 0 auto;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.pbc-topbar__left {
  display: flex;
  gap: 28px;
  align-items: center;
}

.pbc-topbar__left a {
  color: #21b4a9;
}

.pbc-topbar__link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  text-decoration: none;
  color: #4a5568
}

.pbc-topbar__link i {
  color: #21b4a9;
  font-size: 14px
}

.pbc-topbar__linkedin {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  font-weight: 900;
  text-decoration: none;
  color: #21b4a9;
}

.pbc-gray {
  color: #808181;
}

@media (max-width:768px) {
  .pbc-topbar {
    display: none
  }
}


#page-header {
  position: relative;
}
.menu-item{
  padding-left:2rem;
  padding-right:2rem;
}

#main-nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: none !important;
  z-index: 1000;
}

#main-nav,
#main-nav .main-menu-container {
  margin: 0;
  padding-top: 0;
}

/* overlay nav site-wide, just below the white topbar */
#main-nav {
  position: fixed;
  top: 42px;
  /* adjust to your topbar’s actual height */
  left: 0;
  width: 100%;
  box-shadow: none !important;
  z-index: 1000;
}

/* push content down so it doesn’t hide under the fixed nav */
.page-content {
  padding-top: 110px;
}

/* Dropdowns 
.pbc-menu__list li ul.sub-menu {
  background: #fff;
  padding: 8px 0;
  border-radius: 6px;
  min-width: 220px;
  display:flex;
  box-shadow: none!important;
}

.pbc-menu__list li ul.sub-menu>li{
	flex:1;
	background-color:#EAF7F6;
	border-radius:15px;
	height:5rem;
	padding:0.5rem;
	margin:1rem;
	font-size:1rem;
	line-height:1rem;
}
*/


.pbc-menu__list li ul.sub-menu li a {
  color: #2d3748;
  padding: 0.5rem 0.75rem;
  text-decoration:none;
}

.pbc-menu__list li ul.sub-menu>li.current_page_item{
  background-color:#30B0A0;
}

.pbc-menu__list li ul.sub-menu li.current_page_item a .menu-title,
.pbc-menu__list li ul.sub-menu li.current_page_item a .menu-desc{
	color:white!important;
}

:root {
  --topbar-h: 42px;
}

#page-header {
  position: relative;
}

.pbc-nav {
  position: fixed;
  width: 100%;
  margin-top:0rem;
  /*top:1.5rem;*/
  background-color: white;//transparent;
  z-index: 1000;
}

.pbc-nav.scrolled,
.pbc-nav.scrolled #main-menu > li > a {
  background-color: white;
  color:black;
  top:0;
}

.pbc-nav:hover,
.pbc-nav:hover #main-menu > li > a{
background-color:white;
color:black;
}

#main-menu {
  --chev-color: #30b0a0;
  --chev-size: 0.8em;   /* chevron size relative to text */
  --chev-gap: 6px;      /* space between text and chevron */
}

#main-menu > li:has(ul) > a::after {
  content: "";
  display: inline-block;
  width: var(--chev-size);
  height: var(--chev-size);
  margin-left: var(--chev-gap);
  vertical-align: -0.1em;
  
  background: center/contain no-repeat url('/wp-content/themes/pbc/assets/img/chevron.svg');
  transition: transform 0.2s ease;
  transform: rotate(270deg); /* right-pointing by default */
}

#main-menu > li:hover > a::after/*,
/**#main-menu > li.current-menu-item > a::after,
#main-menu > li.current_page_parent > a::after*/ {
  transform: rotate(90deg);
}
/*
#main-menu > li:hover > a::after{
  transform: rotate(90deg);
}
*/
.current_page_parent > a,
#main-menu > li.current_page_item > a {
  text-decoration: none !important; /* wipe underline */
  background-image: linear-gradient(#30b0a0, #30b0a0);
  background-repeat: no-repeat;
  background-size: 100% 3px; 
  background-position: 0 80%; /* right under text */
  color:#30b0a0;
}

#main-menu > li:hover > a,
.pbc-nav:hover #main-menu > li.current_page_item > a,
#main-menu > li.current_page_item:hover > a {
 color:#30b0a0;
}

.pbc-nav__inner {
  margin: 0 auto;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pbc-logo__img {
  max-height: 52px;
  width: auto;
  display: block;
}

.pbc-logo__text {
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.pbc-menu__list {
  list-style: none;
  display: flex;
  /*gap: 28px;*/
  margin: 0;
  padding: 0;
}

.pbc-menu__list li{
  padding-left:1rem!important;
  padding-right:1rem!important;
}

.pbc-menu__list>li>a {
  color: #000000;
  text-decoration: none;
  font-weight: 500;
  padding: 8px 0;
  position: relative;
}


.pbc-menu__list li ul.sub-menu {
  background: #fff;
  padding: 8px 0;
  min-width: 220px;
  border-radius: 6px;
  display:block;
}

.pbc-menu__list li ul.sub-menu li a {
  color: #2d3748;
  padding: 10px 16px;
  display: block;
}

body.admin-bar .pbc-nav {
  top: calc(var(--topbar-h) + 32px);
}

#page-header { position: static !important; }
body { padding-top: var(--admin-offset, 0px) !important; }

@media (max-width: 782px) {
  body.admin-bar .pbc-nav {
    top: calc(var(--topbar-h) + 46px);
  }
}

.page-content {
  padding-top: 0;
}

.pbc-nav__inner {
  height: 64px;
  padding: 0 16px;
}

.pbc-menu__list>li>a {
  display: flex;
  align-items: center;
  height: 64px;
  padding: 0;
  border: 0 !important;
}

.pbc-menu__list,
.pbc-menu__list li,
.pbc-menu__list ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.pbc-menu__list>li {
  position: relative;
}

.pbc-menu__list li ul.sub-menu {
  position: absolute;
  left:0;
  /*top: 100px;*/
  /*width: 100vw;*/
  justify-content: space-around;
  /*right:0px;
  left: 0px;*/
  display: none;
  background: #fff;
  min-width: 220px;
  padding: 8px 0;
  border-radius: 6px;
  z-index: 1100;
}

.pbc-menu__list>li:hover>ul.sub-menu {
  display: block;
}

.pbc-menu__list>li>a:hover {
  border: 0 !important;
  color: #2d3748;

}

.pbc-menu__list li ul.sub-menu>li>a::before {
  content: none !important;
}

.pbc-footer {
  background: #21b4a9;
  color: #fff
}

.pbc-container {
  margin: 0 100px;
  padding: 0 16px
}

.pbc-footer__top {
  padding: 2rem 0 1rem 0
}

.pbc-footer__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 40px;
  justify-items: center;
}

@media (max-width:992px) {
  .pbc-footer__grid {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width:640px) {
  .pbc-footer__grid {
    grid-template-columns: 1fr
  }
}

.pbc-footer__title {
  font-size: 1rem;
  line-height: 1.2rem;
  margin: 0 0 18px;
}

.pbc-footer__address {
  font-style: normal;
  font-size: 0.8rem;
  opacity: .95;
  margin: 0 0 18px;
  line-height: 1rem;
}

/*
#menu-item-15623{
 margin-top:1rem;
}
*/
.pbc-footer {
  font-size: 0.75rem;
}

.pbc-footer__contact {
  list-style: none;
  padding: 0
}

.pbc-footer__contact li {
  margin: 0.65rem 0
}

.pbc-footer__contact a {
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  gap: 10px;
  align-items: center;
  opacity: .95
}

.pbc-footer__contact a:hover {
  opacity: 1;
  text-decoration: underline
}

.pbc-footer__contact i {
  width: 18px;
  text-align: center;
  font-size: 16px
}

.pbc-footer__badges img {
//  height: 96px;
  filter: brightness(100%) contrast(100%)
}

.pbc-footer__menu {
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.75rem;
}

.pbc-footer__menu li {
  margin: 10px 0
}

.pbc-footer__menu a {
  color: #fff;
  text-decoration: none;
  opacity: .95
}

.pbc-footer__menu a:hover {
  opacity: 1;
  text-decoration: underline
}

.pbc-footer__col--aff .pbc-footer__affiliates {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 18px
}

.pbc-footer__col--aff img {
  max-width: 120px;
  height: auto;
  filter: brightness(0) invert(1) opacity(.95)
}

/* white logos */
.pbc-footer__col--aff img:hover {
  opacity: 1
}

.pbc-footer__divider {
  height: 1px;
  background: rgba(255, 255, 255, .35);
  margin: 16px 0
}

.pbc-footer__bottom {
  padding: 16px 0 26px;
}

.pbc-footer__bottom-inner {
  display: flex;
  width:80%;
  margin:auto;
  justify-content: space-between;
  align-items: center
}

@media (max-width:992px) {
  .pbc-footer__bottom-inner {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center
  }
}

.pbc-footer__credits {
  opacity: .9
}

.pbc-footer__copy {
  opacity: .9
}

.pbc-footer__social {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  gap: 14px
}

.pbc-footer__social a {
  display: inline-flex;
  width: 34px;
  height: 34px;
  border-radius: 6px;
  align-items: center;
  justify-content: center;
  text-decoration: none
}

.pbc-footer__lower {
  margin: auto;
}

.pbc-footer__social a:hover {
  background: rgba(255, 255, 255, .25)
}


.pbc-footer__menu,
.pbc-footer__menu li {
  list-style: none !important;
  margin: 0;
  padding: 0;
}

.pbc-footer__menu li::before {
  content: none !important;
}

#pbc-footer a,
#pbc-footer a:visited {
  color: #fff !important;
  text-decoration: none;
}

#pbc-footer a:hover {
  text-decoration: underline;
}

.pbc-footer__title {
  font-weight: 600;
  margin: 0 0 18px;
}

.pbc-footer__menu li {
  margin: 10px 0;
}

.pbc-footer__contact {
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}

.pbc-footer__col--aff img {
  max-width: 180px;
  height: auto;
  display: block;
  filter: brightness(0) invert(1) opacity(.95);
}


.pbc-footer__divider {
  background: rgba(255, 255, 255, .35);
  height: 1px;
  width:80%;

  margin: auto;
}

@media (max-width:992px) {
  .pbc-footer__grid {
    grid-template-columns: 1fr 1fr
  }
}

@media (max-width:640px) {
  .pbc-footer__grid {
    grid-template-columns: 1fr
  }

  .pbc-footer__bottom-inner {
    grid-template-columns: 1fr;
    text-align: center;
    
    justify-items: center;
  }
}
/*
.pbc-footer__col .menu-item-type-post_type {
  font-size: 0.75rem;
  margin-top: 1em;
}
*/
.pbc-footer__closing {
  display: flex;
  justify-content: space-between;
}

.pbc-burger {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  background: transparent;
  padding: 6px;
  cursor: pointer
}

.pbc-burger span {
  display: block;
  height: 2px;
  margin: 7px 0;
  background: #AAA;
  transition: transform .2s, opacity .2s
}

@media (max-width: 992px) {
  .pbc-burger {
    display: block;
    align-items: center;
    justify-content: center
  }

  .is-sticky .pbc-burger span,
  .fixed .pbc-burger span,
  .pbc-nav.mobile-solid .pbc-burger span {
    background: #2d3748
  }


  .pbc-menu {
    position: sticky;
    top: calc(var(--topbar-h, 42px) + 20px);
    /* 60~64 header row */
    left: 0;
    right: 0;
    max-height: 70vh;
    overflow: auto;
    background: #ffffff;
    transform: translateY(-8px) scale(.98);
    opacity: 0;
    pointer-events: none;
    transition: transform .2s ease, opacity .2s ease;
    border-radius: 10px;
  }

  .pbc-menu__list {
    display: block;
    padding: 8px 0
  }

  .pbc-menu__list>li>a {
    color: #2d3748 !important;
    text-shadow: none;
    padding: 12px 16px;
    display: block
  }

#page-header,
#page-wrap,
.boxed-wrapper,
.pbc-topbar,
.pbc-topbar_inner {
  overflow: visible !important;   /* stop clipping the sticky calc */
  transform: none !important;     /* disable hover/reveal transforms */
  filter: none !important;
  contain: initial !important;
  will-change: auto !important;
}
/* now your bar can actually stick to the viewport */
.pbc-topbar {
  position: sticky;
  top: 5rem;;
  z-index: 1000;
  background: inherit; /* or a solid color */
}

  .pbc-menu__list li ul.sub-menu a {
    padding: 10px 28px;
    font-size:0.5rem;
  }

  .menu-open .pbc-menu {
    transform: none;
    opacity: 1;
    pointer-events: auto
  }

  .menu-open .pbc-burger span:nth-child(1) {
    transform: translateY(9px) rotate(45deg)
  }

  .menu-open .pbc-burger span:nth-child(2) {
    opacity: 0
  }

  .menu-open .pbc-burger span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg)
  }

  .submenu-toggle::before {
    content: "\f107";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    font-size: 16px;
    color: #2d3748;
  }

  .submenu-toggle[aria-expanded="true"]::before {
    content: "\f106";
  }

  /* chevron-up */

  /* fallback if FA not present */
  .submenu-toggle:not([class*="fa"])::before {
    content: "▾";
    font-family: inherit;
  }

  .submenu-toggle[aria-expanded="true"]:not([class*="fa"])::before {
    content: "▴";
  }

}

@media (max-width: 992px) {
  .pbc-nav {
    position: fixed;
    background: #fff;
    top: 0px;
  }
}


/**Elementor Custom Skin***/
.news-scroll {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 10px;
  /* space for scrollbar */
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  /* space between cards */
  max-height: 100vh;
  padding: 10px;
}

.news-card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;

  max-height: 45vh;
}

.news-card p,
.news-card h1,
.news-card h2,
.news-card h3,
.news-card h4,
.news-card h5,
.news-card h6 {
  margin: 0; /* removes margin-block-start/end and inline */
}

.news-content {
  flex: 1;
  padding-right: 20px;
}

.news-image {
  flex: 0 0 180px;
}

.truncate {
  display: -webkit-box;
  -webkit-line-clamp: 2;     /* number of lines you want visible */
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.news-image img {
  width:auto;       /* 🔑 image never taller than card */
  max-height: 6rem;            /* keep aspect ratio */
  object-fit: cover;      /* crop if necessary */
  border-radius: 12px;
  display: block;
}

.news-date {
  font-size: 14px;
  color: #777;
  margin-bottom: 6px;
}

.news-card>.news-content .news-title a {
  color: #00a698;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  margin-block: 0px;
}

.news-card>.news-content .news-title a:hover {
  color: #00a698;
}

.news-excerpt {
  color: #333;
  margin: 10px 0;
  font-size: 12px;
  line-height: 1.4;
}

.news-card>.news-content .news-readmore {
  color: #00a698;
  font-weight: 500;
  text-decoration: none;
  font-size: 8px;
}

.news-card>.news-content .news-readmore:hover {
  color: #00a698;
}

/* Wrapper */
.events-slider-wrap { position: relative; }

/* Swiper slides stretch equal height */
.swiper .swiper-wrapper { align-items: stretch; }

/* Nav buttons */
.events-nav {
  position: absolute;
  top: 45%;
  z-index: 2;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: #30B0A0;
  color: #fff;
  cursor: pointer;
}

.events-nav:is([class^="events-next-"], [class*=" events-next-"]) {
  right: -3rem;
}

/* prev */
.events-nav:is([class^="events-prev-"], [class*=" events-prev-"]) {
  left: -3rem;
}
/* Arrows */
.events-nav::before {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  margin: 15px auto;
  border-right: 2px solid white;
  border-bottom: 2px solid white;
  transform: rotate(-45deg);
}
.events-nav:is([class^="events-prev-"], [class*=" events-prev-"])::before { transform: rotate(135deg); }

/* Card */
.event-card {
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  display:flex;
  flex-direction:column;
  height:100%;
}

.event-media { position:relative; }
.event-thumb { display:block; width:100%; height:auto; object-fit:cover; }
.event-thumb--ph { width:100%; aspect-ratio:16/9; background:#eef6f5; }

/* Date badge */
.event-badge {
  position:absolute; left:16px; top:16px;
  background:#13b5a1; color:#fff; border-radius:10px;
  padding:8px 10px; display:flex; flex-direction:column; align-items:center;
}
.event-badge b { font-size:20px; line-height:1rem; }
.event-badge em { font-style:normal; font-size:12px; opacity:.9; letter-spacing:.5px; }

/* Body */
.event-body { padding:20px; display:flex; flex-direction:column; gap:10px; }
.event-title a { color:#00a698; text-decoration:none; font-weight:600; }
.event-meta { color:#6b7280; font-size:14px; display:flex; gap:14px; align-items:center; }
.event-excerpt { margin:0; color:#374151; }
.event-readmore { color:#00a698; text-decoration:none; font-weight:500; }

@media (max-width: 767px) {
  .events-nav { display:none; }
}


.bold{
  font-weight: 800;
}

.page-title{
  display: none;
}

.ch-gold{
  color: #c29558;
}


/* Base link/card */
/* .navbar .menu-item > a {
  display: block;
  padding: 1.2em 1.6em;
  border-radius: 12px;
  background: transparent;
  text-decoration: none;
  transition: background-color .25s ease, box-shadow .25s ease, transform .25s ease;
}

/* Title + description */
.menu-title {
  display: block;
  font-weight: 600;
  font-size: 0.5rem;
  color: #1c9c92;
  margin-bottom: .25rem;
}
.menu-desc{
 display:none;
}
/* Hidden by default */
/*.menu-desc {
  display: block;
  font-size: 0.4rem;
  line-height:0.75rem;
  color: #808181;
  opacity: 1;
  overflow-y:none;
  transition: opacity .22s ease, max-height .28s ease, transform .28s ease;
}*/

/*  */
.navbar .menu-item > a:hover,
.navbar .menu-item:focus-within > a {
  background: #eaf7f6;
  transform: translateY(-3px);
}
/*
.navbar .menu-item > a:hover .menu-desc,
.navbar .menu-item:focus-within .menu-desc {
  opacity: 1;
  max-height: 6rem;
  transform: translateY(0);
}*/

/* Keyboard accessibility */
.navbar .menu-item > a:focus-visible {
  outline: 2px solid #1c9c92;
  outline-offset: 2px;
}

/* Reduced motion preference 
@media (prefers-reduced-motion: reduce) {
  .navbar .menu-item > a,
  .menu-desc {
    transition: none;
  }
} */


/* Destroy Vayne box shadow */
.sub-menu,
.sub-menu::before,
.sub-menu::after {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  filter: none !important;
}
/*
#main-menu#main-menu > li.menu-item-has-children:hover,
#main-menu#main-menu > li.menu-item-has-children:hover > a,
#main-menu#main-menu > li.menu-item-has-children:hover::before,
#main-menu#main-menu > li.menu-item-has-children:hover::after {
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  filter: none !important;
}

#main-menu > li > a{
color:black;
font-weight:300;
}
*/
@media screen and (max-width: 480px) {
  html body #main-nav > div,
  html body .main-content,
  html body #featured-links,
  html body .page-footer-inner {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

.events-grid {
  display: grid;
  gap: 24px;
}
.events-grid.cols-1 { grid-template-columns: 1fr; }
.events-grid.cols-2 { grid-template-columns: repeat(2, 1fr); }
.events-grid.cols-3 { grid-template-columns: repeat(3, 1fr); }
.events-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }

@media (max-width: 1024px) {
  .events-grid.cols-3, .events-grid.cols-4 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
  .events-grid { grid-template-columns: 1fr; }
}

.event-card{
  position:relative;background:#fff;border-radius:16px;overflow:hidden;
  box-shadow:0 6px 20px rgba(0,0,0,.06);
  transition:transform .25s ease, box-shadow .25s ease;
}
.event-card:hover{ transform: translateY(-3px); box-shadow:0 10px 24px rgba(0,0,0,.10); }

.event-card .event-media{ position:relative; }
.event-card .event-media img{
  width:100%; height:260px; object-fit:cover; display:block;
}

.event-card .date-badge{
  position:absolute; top:12px; left:12px; background:#63B3A7; color:#fff;
  padding:10px 12px 8px; border-radius:12px 12px 12px 0; line-height:1.05;
  min-width:64px; text-align:center; box-shadow:0 4px 12px rgba(0,0,0,.12);
}
.event-card .date-badge .day{ font-weight:800; font-size:22px; letter-spacing:.3px; }
.event-card .date-badge .month{ font-size:11px; letter-spacing:.08em; text-transform:uppercase; opacity:.95; margin-top:2px; }

.event-card .event-body{ padding:18px 22px 20px; }
.event-card .event-title{ margin:0 0 8px; }
.event-card .event-title a{ color:#36a295; text-decoration:none; }
.event-card .event-title a:hover{ text-decoration:underline; }

.event-card .event-excerpt{
  display:-webkit-box; -webkit-box-orient:vertical; overflow:hidden; text-overflow:ellipsis;
  -webkit-line-clamp: var(--lines, 3);
  color:#222; margin:0 0 10px;
}

.event-card .event-more a{ display:inline-flex; align-items:center; gap:6px; }

.page-content .news-wrap{
 margin-top:4rem;
}

.single-article {
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem;
  margin-top:3rem;
}

.single-featured-image img {
 /* width: 100%;*/
  border-radius: 10px;
  margin-bottom: 1.5rem;
}

.single-title {
  font-size: 2rem;
  font-weight: 700;
  line-height:1em;
  margin-bottom: .5rem;
}

.single-meta {
  color: #777;
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.single-content p {
  line-height: 1.7;
  margin-bottom: 1rem;
}

.post-navigation{
  display:flex;
  justify-content:space-between;
  margin: 1em;
}



