@charset "UTF-8";
#addtoany .a2a_modal_body {
  border-radius: 0;
}
#addtoany .a2a_modal_body svg {
  background: var(--dark-teal);
}
#addtoany .a2a_modal_body #a2a_copy_link_text {
  color: var(--dark-teal);
  font-size: 0.9rem;
  font-weight: 400;
  font-family: var(--font-helvetica);
}

.subscription-popup {
  position: fixed;
  bottom: 0;
  width: 100%;
  left: 0;
  background: var(--dark-teal);
  color: var(--white);
  padding: 15px 20px;
  opacity: 0;
  transform: translateY(100%);
  transition: all 0.4s ease;
}
@media screen and (max-width: 767px) {
  .subscription-popup {
    flex-direction: column;
    gap: 20px;
    padding: 20px;
  }
}
.subscription-popup .subscription-popup-inner {
  display: flex;
  flex-direction: row;
  gap: 60px;
  justify-content: center;
  align-items: center;
}
.subscription-popup .subscription-popup-inner p {
  font-family: var(--font-helvetica);
  font-size: 16px;
  font-weight: 400;
}
.subscription-popup .subscription-popup-inner .subscription-button {
  border: 1px solid var(--white);
  padding: 8px 15px;
  white-space: nowrap;
}
.subscription-popup .subscription-popup-inner .subscription-button:hover {
  background: var(--white);
}

.article_wrapper {
  display: grid;
  grid-template-columns: 1fr 300px;
  gap: 45px;
}
@media screen and (max-width: 1025px) {
  .article_wrapper {
    grid-template-columns: 1fr;
  }
}
.article_wrapper .content-header_wrapper .details_wrapper {
  margin-bottom: 20px;
}
.article_wrapper .content-header_wrapper .details_wrapper .taxonomy-date_bookmark_wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.article_wrapper .content-header_wrapper .details_wrapper .taxonomy-date_bookmark_wrapper .taxonomy_date span {
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
}
.article_wrapper .content-header_wrapper .details_wrapper .taxonomy-date_bookmark_wrapper .taxonomy_date span:first-child {
  position: relative;
  padding-right: 10px;
  color: var(--dark-teal);
  margin-right: 10px;
}
.article_wrapper .content-header_wrapper .details_wrapper .taxonomy-date_bookmark_wrapper .taxonomy_date span:first-child:hover {
  text-decoration: underline;
}
.article_wrapper .content-header_wrapper .details_wrapper .taxonomy-date_bookmark_wrapper .taxonomy_date span:first-child::after {
  position: absolute;
  content: "";
  height: 15px;
  width: 2px;
  background-color: var(--black);
  top: 50%;
  right: 2px;
  transform: translateY(-50%);
}
.article_wrapper .content-header_wrapper .details_wrapper .taxonomy-date_bookmark_wrapper .bookmark_wrapper .bookmark-btn {
  outline: none;
}
.article_wrapper .content-header_wrapper .details_wrapper .taxonomy-date_bookmark_wrapper .bookmark_wrapper .bookmark-btn svg {
  max-width: 25px;
}
.article_wrapper .content-header_wrapper .details_wrapper .taxonomy-date_bookmark_wrapper .bookmark_wrapper .bookmark-btn.added svg path:first-child {
  fill: var(--dark-teal);
  stroke: var(--dark-teal);
}
.article_wrapper .content-header_wrapper .details_wrapper .taxonomy-date_bookmark_wrapper .bookmark_wrapper .bookmark-btn.added svg path:last-child {
  fill: var(--white);
}
.article_wrapper .content-header_wrapper .details_wrapper .taxonomy-date_bookmark_wrapper .bookmark_wrapper .bookmark-btn.loading {
  opacity: 0.6;
  pointer-events: none;
  position: relative;
}
.article_wrapper .content-header_wrapper .details_wrapper .taxonomy-date_bookmark_wrapper .bookmark_wrapper .bookmark-btn.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 16px;
  height: 16px;
  margin: -8px 0 0 -8px;
  border: 2px solid #ccc;
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}
@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.article_wrapper .content-header_wrapper .details_wrapper .taxonomy-date_bookmark_wrapper .bookmark_wrapper .reminder-popup {
  position: relative;
}
.article_wrapper .content-header_wrapper .details_wrapper .taxonomy-date_bookmark_wrapper .bookmark_wrapper .reminder-popup .bookmark-icon_wrapper {
  cursor: pointer;
}
.article_wrapper .content-header_wrapper .details_wrapper .taxonomy-date_bookmark_wrapper .bookmark_wrapper .reminder-popup span {
  position: absolute;
  right: 0;
  top: 40px;
  min-width: 300px;
  text-align: center;
  background: var(--dark-teal);
  color: var(--white);
  padding: 20px 15px;
  line-height: 1.2;
  font-size: 0.9rem;
  opacity: 0;
  transition: all 0.3s ease-in-out;
}
.article_wrapper .content-header_wrapper .details_wrapper .taxonomy-date_bookmark_wrapper .bookmark_wrapper .reminder-popup span a:hover {
  text-decoration: none;
  color: var(--white);
}
.article_wrapper .content-header_wrapper .details_wrapper .taxonomy-date_bookmark_wrapper .bookmark_wrapper .reminder-popup span::after {
  position: absolute;
  right: 0;
  top: -6px;
  content: "";
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  font-size: 0;
  line-height: 0;
  border-top: 8px solid var(--dark-teal);
  transform: translateY(-22%) rotate(180deg) translateX(45%);
}
.article_wrapper .content-header_wrapper .details_wrapper .taxonomy-date_bookmark_wrapper .bookmark_wrapper .reminder-popup.show-reminder span {
  opacity: 1;
}
.article_wrapper .content-header_wrapper .details_wrapper .taxonomy-date_bookmark_wrapper .bookmark_wrapper a.auth-link svg {
  max-width: 25px;
}
.article_wrapper .content-header_wrapper .details_wrapper .title {
  margin-bottom: 20px;
  max-width: 708px;
}
.article_wrapper .content-header_wrapper .details_wrapper .title h1 {
  font-size: 2.5rem;
  line-height: 1.2;
  letter-spacing: 0.01em;
  font-weight: 500;
}
.article_wrapper .content-header_wrapper .details_wrapper .description {
  margin-bottom: 15px;
}
.article_wrapper .content-header_wrapper .details_wrapper .description p {
  font-size: 1.1rem;
  line-height: 1.2;
  font-weight: 400;
}
.article_wrapper .content-header_wrapper .details_wrapper .author {
  margin-bottom: 20px;
}
.article_wrapper .content-header_wrapper .details_wrapper .author span, .article_wrapper .content-header_wrapper .details_wrapper .author a {
  font-size: 13px;
  font-weight: 500;
  color: var(--dark-teal);
  text-decoration: none;
  text-transform: uppercase;
}
.article_wrapper .content-header_wrapper .details_wrapper .author a:hover {
  text-decoration: underline;
}
.article_wrapper .content-header_wrapper .details_wrapper .socmed-share_wrapper {
  margin-bottom: 5px;
}
.article_wrapper .content-header_wrapper .details_wrapper .socmed-share_wrapper a {
  padding: 0 8px;
}
.article_wrapper .content-header_wrapper .details_wrapper .socmed-share_wrapper a:first-child {
  padding-left: 0;
}
.article_wrapper .content-header_wrapper .details_wrapper .socmed-share_wrapper img {
  max-width: 17px;
}
.article_wrapper .content-header_wrapper .in-content_wrapper {
  max-width: 708px;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .article_wrapper .content-header_wrapper .in-content_wrapper {
    margin: auto;
  }
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper {
  margin-bottom: 40px;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper h2, .article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper h3, .article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper h4, .article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper h5, .article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper h6 {
  font-weight: 500;
  margin: 40px 0 20px;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper h2 {
  font-size: 1.9rem;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper h3 {
  font-size: 1.8rem;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper h4 {
  font-size: 1.7rem;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper h5 {
  font-size: 1.6rem;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper h6 {
  font-size: 1.5rem;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper p, .article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper a, .article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper ul, .article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper li, .article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper span, .article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper ol {
  font-size: 1.1rem;
  line-height: 1.2;
  margin: 20px 0;
  font-weight: 400;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper li {
  margin: 10px 0;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper figure {
  margin: 20px 0;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper a {
  text-decoration: underline;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper a:hover {
  text-decoration: none;
  color: var(--dark-teal);
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper iframe {
  width: 100% !important;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .mp_wrapper .mepr-unauthorized-excerpt {
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, #000 50%, rgba(0, 0, 0, 0) 100%);
  mask-image: linear-gradient(to bottom, #000 0%, #000 50%, rgba(0, 0, 0, 0) 100%);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .mp_wrapper .mepr-login-form-wrap {
  display: none;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper {
  border-top: 10px solid var(--dark-teal);
  padding: 20px 60px;
  max-width: 720px;
  margin: auto;
}
@media screen and (max-width: 767px) {
  .article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper {
    padding: 40px 0;
  }
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper .heading {
  margin-bottom: 40px;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper .heading p {
  font-size: 1.1rem;
  font-weight: 400;
  margin: 0;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper .sub-heading {
  margin-bottom: 20px;
  text-align: center;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper .sub-heading span, .article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper .sub-heading a {
  text-transform: uppercase;
  color: var(--dark-teal);
  font-size: 0.9rem;
  font-weight: 500;
  font-family: var(--font-helvetica);
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper .sub-heading .open-form_wrapper {
  text-decoration: underline;
  cursor: pointer;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper .sub-heading a:hover, .article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper .sub-heading .open-form_wrapper:hover {
  text-decoration: none;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper .login-form_wrapper {
  margin: 20px 0;
  opacity: 0;
  max-height: 0;
  overflow: hidden;
  transition: opacity 1s ease, max-height 0.5s ease;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper .login-form_wrapper.form-visible {
  opacity: 1;
  max-height: 500px;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper .login-form_wrapper .mp_wrapper {
  max-width: 400px;
  margin: auto;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper .login-form_wrapper .mp_wrapper .mp-spacer {
  display: none;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper .login-form_wrapper .mp_wrapper .mp-form-row .mp-form-label label {
  font-size: 14px;
  font-family: var(--font-helvetica);
  font-weight: 400;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper .login-form_wrapper .mp_wrapper .mp-form-row input {
  height: 40px;
  font-size: 14px;
  font-family: var(--font-helvetica);
  font-weight: 400;
  outline: none;
  border: 1px solid var(--black);
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper .login-form_wrapper .mp_wrapper .mp-form-row .invalid {
  background-color: var(--white) !important;
  border: 1px solid red !important;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper .login-form_wrapper .mp_wrapper .submit {
  margin-top: 20px;
  margin-bottom: 10px;
  position: relative;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper .login-form_wrapper .mp_wrapper .submit #wp-submit {
  background: var(--dark-teal);
  color: var(--white);
  text-decoration: none;
  text-transform: uppercase;
  font-family: var(--font-helvetica);
  font-size: 12px;
  padding: 10px 15px;
  border: 1px solid var(--dark-teal);
  transition: all ease-in-out 0.1s;
  display: block;
  width: 100%;
  font-weight: 500;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper .login-form_wrapper .mp_wrapper .submit #wp-submit:hover {
  color: var(--dark-teal);
  background: transparent;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper .login-form_wrapper .mp_wrapper .submit .mepr-form-has-errors {
  display: none !important;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper .login-form_wrapper .mp_wrapper .mepr-form > div:nth-child(3) {
  display: flex;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper .login-form_wrapper .mp_wrapper .mepr-form > div > label {
  font-size: 14px;
  font-family: var(--font-helvetica);
  font-weight: 400;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 5px;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper .login-form_wrapper .mp_wrapper .mepr-form > div > label input {
  margin-right: 2px;
  position: relative;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper .login-form_wrapper .mp_wrapper .mepr-form > div > label input::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--white);
  border: 1px solid var(--dark-teal);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper .login-form_wrapper .mp_wrapper .mepr-form > div > label input[type=checkbox]:checked::after {
  content: "✓";
  background: var(--dark-teal);
  color: #fff;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper .login-form_wrapper .mp_wrapper .cc-error {
  display: none !important;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper .login-form_wrapper .mp_wrapper .mepr-login-actions a {
  font-size: 14px;
  font-family: var(--font-helvetica);
  font-weight: 400;
  color: var(--dark-teal);
  text-decoration: underline;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper .login-form_wrapper .mp_wrapper .mepr-login-actions a:hover {
  text-decoration: none;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper .spacer {
  position: relative;
  height: 40px;
  margin: 40px auto;
  max-width: 500px;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper .spacer::after {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  content: "";
  height: 1px;
  width: 100%;
  background-color: var(--black);
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper .spacer span {
  position: absolute;
  min-width: 50px;
  content: "";
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 1;
  background-color: var(--white);
  margin: 0;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper .subs-plans_wrapper {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  max-width: 500px;
  margin: auto;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper .subs-plans_wrapper .subs-plan_item {
  position: relative;
  text-align: center;
  border: 1px solid var(--light-gray);
  padding: 50px 20px;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper .subs-plans_wrapper .subs-plan_item:first-child, .article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper .subs-plans_wrapper .subs-plan_item:nth-child(2) {
  border-bottom: 0;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper .subs-plans_wrapper .subs-plan_item:first-child {
  border-right: 0;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper .subs-plans_wrapper .subs-plan_item:nth-child(3) {
  border-left: 1px solid var(--light-gray);
  border-right: 0;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper .subs-plans_wrapper .subs-plan_item span {
  display: block;
  line-height: 1.2;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper .subs-plans_wrapper .subs-plan_item .periods span {
  font-size: 1.125rem;
  text-transform: uppercase;
  font-weight: 400;
  margin: 0;
  margin-bottom: 20px;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper .subs-plans_wrapper .subs-plan_item .price span {
  margin: auto;
  font-size: 1.5rem;
  font-weight: 500;
  margin-bottom: 5px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper .subs-plans_wrapper .subs-plan_item .price span small {
  position: absolute;
  left: -15px;
  font-size: 15px;
  top: 0;
  font-weight: 400;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper .subs-plans_wrapper .subs-plan_item .terms span {
  font-size: 1rem;
  font-weight: 300;
  color: #919191;
  margin: 0;
  margin-bottom: 20px;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper .subs-plans_wrapper .subs-plan_item .subs-url a {
  margin: auto;
  text-decoration: none;
  font-size: 0.7rem;
  font-weight: 500;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper .subs-plans_wrapper .subs-plan_item .discount span {
  position: absolute;
  top: 0;
  right: 0;
  background: #F43232;
  font-size: 0.7rem;
  color: #fff;
  text-transform: uppercase;
  padding: 5px 10px;
  margin: 0;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper .subs-plans_wrapper.temporary-class {
  display: block;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .content_wrapper .auth-popup_wrapper .subs-plans_wrapper.temporary-class .subs-plan_item {
  max-width: 300px;
  margin: auto;
  border: 1px solid var(--light-gray);
}
.article_wrapper .content-header_wrapper .in-content_wrapper .tags_wrapper {
  margin: 20px 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 20px;
  border-top: 1px solid var(--heading-border);
  border-bottom: 1px solid var(--heading-border);
  padding: 10px 0;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .tags_wrapper span.heading {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 500;
  margin-top: 3px;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .tags_wrapper ul.tags-list {
  padding: 0;
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  margin: 0;
  gap: 20px;
  row-gap: 0;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .tags_wrapper ul.tags-list li.tag-item {
  list-style: none;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .tags_wrapper ul.tags-list li.tag-item a {
  font-size: 13px;
  text-transform: uppercase;
  font-weight: 500;
  text-decoration: none;
  font-family: var(--font-helvetica);
}
.article_wrapper .content-header_wrapper .in-content_wrapper .tags_wrapper ul.tags-list li.tag-item a:hover {
  color: var(--dark-teal);
  text-decoration: underline;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .author-profile_wrapper {
  display: grid;
  grid-template-columns: 200px 1fr;
  background-color: var(--dark-teal);
  gap: 20px;
  align-items: center;
  padding: 40px 20px;
  margin: 40px 0;
}
@media screen and (max-width: 575px) {
  .article_wrapper .content-header_wrapper .in-content_wrapper .author-profile_wrapper {
    grid-template-columns: 1fr;
    text-align: center;
  }
}
.article_wrapper .content-header_wrapper .in-content_wrapper .author-profile_wrapper .author-image_wrapper .photo_wrapper {
  margin-bottom: 10px;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .author-profile_wrapper .author-image_wrapper .photo_wrapper img {
  border-radius: 100%;
  width: 185px;
  height: 185px;
  -o-object-fit: cover;
     object-fit: cover;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .author-profile_wrapper .author-about_wrapper .name-postion_wrapper {
  margin-bottom: 20px;
  line-height: 1.5;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .author-profile_wrapper .author-about_wrapper .name-postion_wrapper h3.name {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 400;
  text-transform: uppercase;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .author-profile_wrapper .author-about_wrapper .name-postion_wrapper h3.name:hover {
  text-decoration: underline;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .author-profile_wrapper .author-about_wrapper .name-postion_wrapper span.position {
  color: var(--white);
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
}
.article_wrapper .content-header_wrapper .in-content_wrapper .author-profile_wrapper .author-about_wrapper .author-info p {
  color: var(--white);
  font-size: 15px;
  font-weight: 400;
}
.article_wrapper .sidebar_wrapper .widget-area .tribe-compatibility-container {
  margin-bottom: 50px;
}
.article_wrapper .sidebar_wrapper .widget-area .tribe-compatibility-container .tribe-events-widget-events-list .tribe-events-widget-events-list__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid var(--heading-border);
  padding-bottom: 10px;
  margin-bottom: 20px;
}
.article_wrapper .sidebar_wrapper .widget-area .tribe-compatibility-container .tribe-events-widget-events-list .tribe-events-widget-events-list__header .title-icon_wrapper {
  display: flex;
  gap: 5px;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-end;
}
.article_wrapper .sidebar_wrapper .widget-area .tribe-compatibility-container .tribe-events-widget-events-list .tribe-events-widget-events-list__header .title-icon_wrapper svg {
  width: 17px;
  margin-top: -2px;
}
.article_wrapper .sidebar_wrapper .widget-area .tribe-compatibility-container .tribe-events-widget-events-list .tribe-events-widget-events-list__header .title-icon_wrapper span.tribe-events-widget-events-list__header-title {
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 0.8;
  color: var(--dark-teal);
}
.article_wrapper .sidebar_wrapper .widget-area .tribe-compatibility-container .tribe-events-widget-events-list .tribe-events-widget-events-list__header span.view-all-link {
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--dark-teal);
  padding-right: 15px;
}
.article_wrapper .sidebar_wrapper .widget-area .tribe-compatibility-container .tribe-events-widget-events-list .tribe-events-widget-events-list__header span.view-all-link:hover {
  text-decoration: underline;
}
.article_wrapper .sidebar_wrapper .widget-area .tribe-compatibility-container .tribe-events-widget-events-list .tribe-events-widget-events-list__header span.view-all-link::after {
  position: absolute;
  right: 0;
  top: 7px;
  content: "";
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid var(--dark-teal);
  font-size: 0;
  line-height: 0;
  transform: rotate(270deg);
}
.article_wrapper .sidebar_wrapper .widget-area .tribe-compatibility-container .tribe-events-widget-events-list .tribe-events-widget-events-list__events .tribe-events-widget-events-list__event-datetime-wrapper {
  display: none;
}
.article_wrapper .sidebar_wrapper .widget-area .tribe-compatibility-container .tribe-events-widget-events-list .tribe-events-widget-events-list__events .tribe-events-widget-events-list__event-row {
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}
.article_wrapper .sidebar_wrapper .widget-area .tribe-compatibility-container .tribe-events-widget-events-list .tribe-events-widget-events-list__events .tribe-events-widget-events-list__event-row .tribe-events-widget-events-list__event-date-tag span {
  text-transform: uppercase;
  color: var(--dark-teal);
  font-family: var(--font-helvetica);
}
.article_wrapper .sidebar_wrapper .widget-area .tribe-compatibility-container .tribe-events-widget-events-list .tribe-events-widget-events-list__events .tribe-events-widget-events-list__event-row .tribe-events-widget-events-list__event-date-tag span.tribe-events-widget-events-list__event-date-tag-daynum {
  order: 1;
  font-size: 20px;
  font-weight: 700;
}
.article_wrapper .sidebar_wrapper .widget-area .tribe-compatibility-container .tribe-events-widget-events-list .tribe-events-widget-events-list__events .tribe-events-widget-events-list__event-row .tribe-events-widget-events-list__event-date-tag span.tribe-events-widget-events-list__event-date-tag-month {
  order: 2;
  font-size: 12px;
  font-weight: 500;
  text-transform: initial;
}
.article_wrapper .sidebar_wrapper .widget-area .tribe-compatibility-container .tribe-events-widget-events-list .tribe-events-widget-events-list__events .tribe-events-widget-events-list__event-row .tribe-events-widget-events-list__event-wrapper h3.tribe-events-widget-events-list__event-title a {
  font-family: var(--font-helvetica);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  display: block;
}
.article_wrapper .sidebar_wrapper .widget-area .tribe-compatibility-container .tribe-events-widget-events-list .tribe-events-widget-events-list__events .tribe-events-widget-events-list__event-row .tribe-events-widget-events-list__event-wrapper h3.tribe-events-widget-events-list__event-title a:hover {
  text-decoration: underline;
  color: var(--dark-teal);
}
.article_wrapper .sidebar_wrapper .widget-area .trending_stories {
  margin-bottom: 40px;
}
.article_wrapper .sidebar_wrapper .widget-area .trending_stories .trending_stories_wrapper .heading {
  border-bottom: 1px solid var(--heading-border);
  padding-bottom: 5px;
  margin-bottom: 20px;
}
.article_wrapper .sidebar_wrapper .widget-area .trending_stories .trending_stories_wrapper .heading h2 {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark-teal);
  font-family: var(--font-helvetica);
}
.article_wrapper .sidebar_wrapper .widget-area .trending_stories .trending_stories_wrapper ul.list_wrapper {
  padding: 0;
}
.article_wrapper .sidebar_wrapper .widget-area .trending_stories .trending_stories_wrapper ul.list_wrapper li {
  margin-bottom: 15px;
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 10px;
  list-style: none;
  align-items: center;
}
.article_wrapper .sidebar_wrapper .widget-area .trending_stories .trending_stories_wrapper ul.list_wrapper li h3 {
  position: relative;
  font-size: 1rem;
  text-decoration: none;
  font-weight: 500;
  line-height: 1.2;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
  font-family: var(--font-playfair);
}
.article_wrapper .sidebar_wrapper .widget-area .trending_stories .trending_stories_wrapper ul.list_wrapper li h3:hover {
  text-decoration: underline;
  color: var(--dark-teal);
}
.article_wrapper .sidebar_wrapper .widget-area .trending_stories .trending_stories_wrapper ul.list_wrapper li:hover::marker {
  color: var(--dark-teal);
}
.article_wrapper .sidebar_wrapper .widget-area .trending_stories .trending_stories_wrapper ul.list_wrapper li:hover a {
  color: var(--dark-teal);
}
.article_wrapper .sidebar_wrapper .widget-area .cover_story_sidebar {
  margin-bottom: 40px;
}
.article_wrapper .sidebar_wrapper .widget-area .cover_story_sidebar .cover_story_sidebar_wrapper .heading {
  border-bottom: 1px solid var(--heading-border);
  padding-bottom: 5px;
  margin-bottom: 20px;
}
.article_wrapper .sidebar_wrapper .widget-area .cover_story_sidebar .cover_story_sidebar_wrapper .heading span {
  font-size: 1.3rem;
  color: var(--dark-teal);
  font-weight: 700;
}
.article_wrapper .sidebar_wrapper .widget-area .cover_story_sidebar .cover_story_sidebar_wrapper .item_wrapper .cover-personality {
  margin-bottom: 15px;
}
.article_wrapper .sidebar_wrapper .widget-area .cover_story_sidebar .cover_story_sidebar_wrapper .item_wrapper .cover-personality p {
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 1.2;
}

.more-section_wrapper {
  margin: 20px 0;
}
.more-section_wrapper .section_nav {
  border-bottom: 1px solid var(--heading-border);
  padding-bottom: 10px;
  margin-bottom: 30px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
}
.more-section_wrapper .section_nav h2 {
  font-weight: 500;
}
.more-section_wrapper .stories-content_wrapper {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  -moz-column-gap: 20px;
       column-gap: 20px;
  row-gap: 20px;
}
@media screen and (max-width: 991px) {
  .more-section_wrapper .stories-content_wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 991px) {
  .more-section_wrapper .stories-content_wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 575px) {
  .more-section_wrapper .stories-content_wrapper {
    grid-template-columns: 1fr;
  }
}
.more-section_wrapper .stories-content_wrapper .stories_item .taxonomy {
  margin-bottom: 5px;
}
.more-section_wrapper .stories-content_wrapper .stories_item .taxonomy span {
  font-family: var(--font-helvetica);
  text-transform: uppercase;
  font-weight: 500;
  font-size: 13px;
}
.more-section_wrapper .stories-content_wrapper .stories_item .taxonomy span:hover {
  color: var(--dark-teal);
  text-decoration: underline;
}
.more-section_wrapper .stories-content_wrapper .stories_item .title {
  margin-bottom: 5px;
  margin-top: 5px;
}
.more-section_wrapper .stories-content_wrapper .stories_item .title h3 {
  font-size: 1.1rem;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}
@media screen and (max-width: 575px) {
  .more-section_wrapper .stories-content_wrapper .stories_item .title h3 {
    font-size: 1.2rem;
  }
}
.more-section_wrapper .stories-content_wrapper .stories_item .title h3:hover {
  color: var(--dark-teal);
  text-decoration: underline;
}/*# sourceMappingURL=article.css.map */