/*
============================================================
Theme Name   : Pressly - News Magazine HTML Template
File         : style.css
Author       : Pressly
Version      : 1.0
Description  : Main CSS File
============================================================
*/

/*
------------------------------------------------------------
CONTENTS
------------------------------------------------------------
01. BASE
02. NAVIGATION 
03. PAGE HEADER 
04. POST COMPONENTS 
05. ARTICLE COMPONENTS 
06. ASIDE COMPONENTS 
07. FOOTER 
08. RESPONSIVE 
09. HEADER & TOP BAR
10. SEARCH & MOBILE MENU
11. NAVBAR & DROPDOWNS
12. HOME — FEATURED SLIDER
13. HOME 02 — EDITOR'S PICK HERO
14. HOME — RECENT POSTS
15. HOME — LIFESTYLE
16. HOME — TECHNOLOGY & HEALTH
17. HOME — ADVERTISEMENT
18. HOME — LATEST ARTICLES & INSTAGRAM
19. SIDEBAR WIDGETS
20. FOOTER & BACK TO TOP
21. THEME & TYPOGRAPHY
22. ARTICLE PAGE
23. CATEGORY PAGE
24. AUTHOR PAGE
25. ABOUT PAGE
26. CONTACT PAGE
27. REGULAR PAGE
28. GLOBAL UI — LOADER & LANGUAGE
------------------------------------------------------------
*/

/*============================================================
# 01. BASE
============================================================*/

body {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 16px;
  color: #505050;
  font-weight: 400;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Roboto", Arial, sans-serif;
  color: #11151c;
  font-weight: 500;
  margin: 0px 0px 15px;
}

h1 {
  font-size: 32.437px;
}

h2 {
  font-size: 25.629px;
}

h3 {
  font-size: 20.25px;
}

h4 {
  font-size: 16px;
}

h5 {
}

p {
  margin: 0px 0px 20px;
}

a {
  color: #11151c;
  -webkit-transition: 0.2s color;
  transition: 0.2s color;
}

a:hover, a:focus {
  color: #c83255;
  text-decoration: none;
  outline: none;
}

::-moz-selection {
  background-color: #c83255;
  color: #FFF;
}

::selection {
  background-color: #c83255;
  color: #FFF;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

ul.list-style, ol.list-style {
  padding-left: 15px;
  margin-bottom: 10px;
}

ul.list-style {
  list-style-type: disc;
}

ol.list-style {
  list-style-type: decimal;
}

blockquote.blockquote {
  padding: 30px;
  margin: 0px 0px 20px;
  border: 2px solid #e8eaed;
}

blockquote.blockquote:before {
  content: "";
  font-family: fontAwesome;
  width: 70px;
  height: 70px;
  line-height: 70px;
  text-align: center;
  border-radius: 50%;
  color: #c83255;
  font-size: 30px;
  background: #fff;
  border: 2px solid #e8eaed;
  float: left;
  margin-right: 10px;
}

blockquote.blockquote .blockquote-footer {
  color: #97989b;
}

figure {
  margin-bottom: 20px;
}

figure>img {
  width: 100%;
}

figure.float-end {
  margin-left: 15px;
}

figure.float-start {
  margin-right: 15px;
}

figure>figcaption {
  font-size: 14px;
  text-align: center;
  margin-top: 10px;
  font-style: italic;
  color: #97989b;
}

.section {
  padding-top: 30px;
}

.section-row {
  margin-bottom: 30px;
}

.section-title {
  position: relative;
  margin-bottom: 20px;
}

.section-title .title {
  position: relative;
  display: inline-block;
  background-color: #fff;
  font-size: 16px;
  text-transform: uppercase;
  margin-top: 0px;
  margin-bottom: 0px;
  padding-right: 10px;
  z-index: 20;
}

.section-title:after {
  content: "";
  display: inline-block;
  height: 2px;
  background-color: #e8eaed;
  position: absolute;
  left: 0;
  right: 0;
  top: 10px;
  z-index: 10;
}

.input {
  width: 100%;
  height: 40px;
  padding: 0px 15px;
  background-color: #fff;
  border-radius: 2px;
  border: 2px solid #e8eaed;
}

textarea.input {
  padding: 15px;
  height: 90px;
}

.primary-button, .secondary-button {
  display: inline-block;
  padding: 10px 40px;
  border-radius: 2px;
  border: none;
  font-weight: 500;
  font-size: 14px;
  text-transform: uppercase;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.primary-button {
  background-color: #c83255;
  color: #fff;
  -webkit-box-shadow: 0px 0px 0px 2px #c83255 inset;
  box-shadow: 0px 0px 0px 2px #c83255 inset;
}

.secondary-button {
  background-color: #353535;
  color: #fff;
  -webkit-box-shadow: 0px 0px 0px 2px #353535 inset;
  box-shadow: 0px 0px 0px 2px #353535 inset;
}

.primary-button:hover, .primary-button:focus {
  background-color: transparent;
  color: #c83255;
}

.secondary-button:hover, .secondary-button:focus {
  background-color: transparent;
  color: #353535;
}

.social-facebook {
  background: #225b99 !important;
}

.social-twitter {
  background: #00adf2 !important;
}

.social-google-plus {
  background: #dc4d2d !important;
}

.social-pinterest {
  background: #cc2127 !important;
}

.social-instagram {
  background: #d341b2 !important;
}


/*============================================================
# 02. NAVIGATION 
============================================================*/

#nav {
  border-bottom: 1px solid #e8eaed;
}

#nav:after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

#nav.shadow-active:after {
  opacity: 1;
  visibility: visible;
}

#nav-top {
  text-align: center;
}

#nav-top>.container {
  position: relative;
}

#nav-bottom {
  border-top: 1px solid #e8eaed;
}

.nav-social {
  float: left;
  padding: 10px 0px;
}

.nav-social li {
  display: inline-block;
}

.nav-social li a {
  display: block;
  padding: 15px;
  line-height: 20px;
}

.nav-logo {
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.nav-logo .logo {
  display: inline-block;
  line-height: 70px;
  height: 70px;
}

.nav-logo .logo>img {
  width: 100%;
  max-height: 70px;
}

.nav-btns {
  float: right;
  padding: 10px 0px;
}

.nav-btns>button {
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  border: none;
  background: transparent;
}

#nav-search {
  position: fixed;
  left: 50%;
  -webkit-transform: translate(-50%, 10px);
  -ms-transform: translate(-50%, 10px);
  transform: translate(-50%, 10px);
  opacity: 0;
  visibility: hidden;
  max-width: 960px;
  width: 100%;
  padding: 60px 5%;
  background: #1b1c1e;
  z-index: 999;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

#nav-search.active {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate(-50%, 0px);
  -ms-transform: translate(-50%, 0px);
  transform: translate(-50%, 0px);
}

#nav-search form .input {
  height: 80px;
  background: transparent;
  border: 2px solid #323335;
  color: #fff;
  font-size: 24px;
  font-weight: 500;
  padding: 15px 25px;
}

.nav-menu {
  position: relative;
  text-align: center;
  float: none;
}

.nav-menu>li {
  float: none;
  display: inline-block;
}

.nav-menu>li>a {
  display: block;
  padding: 25px 15px;
  line-height: 20px;
  font-weight: 500;
  text-transform: uppercase;
}

.nav-menu li.has-dropdown {
  position: relative;
}

.nav-menu li.has-dropdown>a:after {
  font-family: "FontAwesome";
  content: "";
  margin-left: 5px;
}

.nav-menu li.has-dropdown>.dropdown {
  position: absolute;
  left: 0;
  width: 200px;
  text-align: left;
  z-index: 60;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.nav-menu li.has-dropdown:hover>.dropdown {
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
  opacity: 1;
  visibility: visible;
}

.nav-menu li.has-dropdown>.dropdown .dropdown-body {
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  border-top: 2px solid #c83255;
}

.dropdown .dropdown-list li {
  border-bottom: 1px solid #e8eaed;
}

.dropdown .dropdown-list li a {
  display: block;
  padding: 10px;
  line-height: 20px;
}

.dropdown .dropdown-heading {
  text-transform: uppercase;
  font-size: 14px;
  margin-top: 0px;
  margin-bottom: 10px;
  line-height: 30px;
}























#nav-aside {
  position: fixed;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: #1b1c1e;
  max-width: 360px;
  width: 100%;
  padding: 80px 20px;
  overflow-y: scroll;
  z-index: 99;
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: 0.4s all cubic-bezier(.77, 0, .18, 1);
  transition: 0.4s all cubic-bezier(.77, 0, .18, 1);
}

#nav-aside.active {
  -webkit-transform: translateX(0%);
  -ms-transform: translateX(0%);
  transform: translateX(0%);
}

.nav-aside-menu li a {
  display: block;
  padding: 15px 0px;
  color: #fff;
  border-bottom: 1px solid #323335;
}

.nav-aside-menu li a:hover, .nav-aside-menu li a:focus {
  color: #c83255;
}

.nav-aside-menu li.has-dropdown>a {
  cursor: pointer;
}

.nav-aside-menu li.has-dropdown>a:after {
  font-family: "FontAwesome";
  content: "";
  float: right;
}

.nav-aside-menu li.has-dropdown>.dropdown {
  display: none;
  margin-left: 30px;
  border-left: 1px solid #323335;
}

.nav-aside-menu li.has-dropdown.active>.dropdown {
  display: block;
}

.nav-aside-menu li.has-dropdown>.dropdown a {
  padding: 15px;
}

.nav-close {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 10px;
  right: 15px;
  background-color: transparent;
  border: none;
}

.nav-close span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}

.nav-close span:before, .nav-close span:after {
  content: "";
  display: block;
  width: 30px;
  background-color: #fff;
  height: 2px;
}

.nav-close span:before {
  -webkit-transform: translateY(0px) rotate(-135deg);
  -ms-transform: translateY(0px) rotate(-135deg);
  transform: translateY(0px) rotate(-135deg);
}

.nav-close span:after {
  -webkit-transform: translateY(-2px) rotate(135deg);
  -ms-transform: translateY(-2px) rotate(135deg);
  transform: translateY(-2px) rotate(135deg);
}


/*============================================================
# 03. PAGE HEADER 
============================================================*/

.page-header {
  position: relative;
  margin: 0;
  padding-top: 120px;
  padding-bottom: 80px;
  background-color: #1b1c1e;
}

#post-header {
  padding-top: 240px;
  padding-bottom: 80px;
}

.page-header .page-header-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.page-header .page-header-bg:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(27, 28, 30, 0)), color-stop(90%, rgba(27, 28, 30, 0.8)));
  background: linear-gradient(180deg, rgba(27, 28, 30, 0) 0%, rgba(27, 28, 30, 0.8) 90%);
}

.page-header h1 {
  font-size: 41.053px;
  color: #FFF;
}

.page-header p.lead {
  font-size: 20.25px;
  color: #FFF;
}


/*============================================================
# 04. POST COMPONENTS 
============================================================*/

.post {
  position: relative;
  margin-bottom: 30px;
}

.post .post-body {
  position: relative;
  margin: -50px 0px 0px 3%;
  padding: 5%;
  background: #fff;
  z-index: 10;
}

.post .post-img {
  display: block;
  overflow: hidden;
}

.post-img>img {
  width: 100%;
  -webkit-transition: 1.6s -webkit-transform;
  transition: 1.6s -webkit-transform;
  transition: 1.6s transform;
  transition: 1.6s transform, 1.6s -webkit-transform;
}

.post-img:hover>img {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}

.post .post-title {
  font-size: 18px;
}

.post .post-title.title-sm {
  font-size: 16px;
}

.post .post-title.title-lg {
  font-size: 25.629px;
}

.post .post-category {
  margin-bottom: 10px;
}

.post-category a {
  color: #c83255;
  font-weight: 500;
  font-size: 12px;
  text-transform: uppercase;
}

.post-category a:after {
  content: ",";
  display: inline-block;
}

.post-category a:last-child:after {
  display: none;
}

.post .post-meta {
  margin-bottom: 10px;
}

.post-meta li {
  display: inline-block;
  color: #97989b;
  font-size: 12px;
  text-transform: uppercase;
}

.post-meta li a {
  color: #97989b;
  font-weight: 500;
}

.post-meta li a:hover, .post-meta li a:focus {
  color: #c83255;
}

.post-meta li:after {
  content: "•";
  display: inline-block;
  padding-left: 5px;
  padding-right: 5px;
}

.post-meta li:last-child:after {
  display: none;
}

.hot-post {
  padding: 0 15px;
}

.hot-post .hot-post-left {
  padding-right: 0px;
  padding-left: 0px;
}

.hot-post .hot-post-right {
  padding-right: 0;
  padding-left: 5px;
}

.hot-post .post {
  margin-bottom: 7px;
}

.hot-post {
  margin-bottom: 25px;
}

.post.post-thumb .post-img:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(27, 28, 30, 0)), color-stop(90%, rgba(27, 28, 30, 0.8)));
  background: linear-gradient(180deg, rgba(27, 28, 30, 0) 0%, rgba(27, 28, 30, 0.8) 90%);
}

.post.post-thumb .post-body {
  position: absolute;
  margin: 0px;
  padding: 0px 5%;
  z-index: 20;
  bottom: 5%;
  background-color: transparent;
}

.post.post-thumb .post-title a {
  color: #fff;
}

.post.post-thumb .post-title a:hover, .post.post-thumb .post-title a:focus {
  color: #c83255;
}

.post.post-thumb .post-meta li {
  color: #fff;
}

.post.post-thumb .post-meta li a {
  color: #fff;
}

.post.post-thumb .post-meta li a:hover, .post.post-thumb .post-meta li a:focus {
  color: #c83255;
}

.post.post-sm .post-body {
  margin: 15px 0px 0px;
  background: transparent;
  padding: 0;
}

.post.post-widget:after {
  content: "";
  display: table;
  clear: both;
}

.post.post-widget .post-img {
  float: left;
  width: 130px;
}

.post.post-widget .post-body {
  position: relative;
  background: transparent;
  margin: 0px 0px 0px 150px;
  padding: 0;
}

.post.post-widget .post-title {
  font-size: 16px;
  margin-bottom: 0px;
}

.post.post-row:after {
  content: "";
  display: table;
  clear: both;
}

.post.post-row .post-img {
  width: 40%;
  float: left;
}

.post.post-row .post-body {
  margin: 0px 0px 0px calc(40% + 30px);
  padding: 0;
}


/*============================================================
# 05. ARTICLE COMPONENTS 
============================================================*/

.page-header .post-category {
  margin-bottom: 10px;
}

.page-header .post-meta li {
  color: #fff;
}

.page-header .post-meta li a {
  color: #fff;
}

.page-header .post-meta li a:hover, .page-header .post-meta li a:focus {
  color: #c83255;
}

.post-share a {
  display: inline-block;
  padding: 5px 15px;
  border-radius: 5px;
  color: #fff;
  background-color: #97989b;
  margin-right: 4px;
  margin-bottom: 6px;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}

.post-share a:hover {
  opacity: 0.9;
}

.post-share a i {
  width: 20px;
  text-align: center;
}

.post-share a span {
  padding-left: 10px;
  border-left: 2px solid rgba(255, 255, 255, 0.1);
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
  margin-left: 10px;
}

.post-content .post-attachement.float-start {
  margin-right: 15px;
}

.post-content .post-attachement.float-end {
  margin-left: 15px;
}

.post-tags ul li {
  display: inline-block;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 500;
}

.post-tags ul li:first-child {
  font-weight: 400;
}

.post-tags ul li:after {
  content: ",";
  display: inline-block;
}

.post-tags ul li:first-child:after {
  display: none;
}

.post-tags ul li:last-child:after {
  display: none;
}

.post-nav:after {
  content: "";
  display: table;
  clear: both;
}

.post-nav .post-title {
  font-size: 14px;
  margin: 0px;
}

.post-nav .prev-post {
  float: left;
  width: 50%;
  padding-right: 15px;
}

.post-nav .next-post {
  float: right;
  width: 50%;
  text-align: right;
  padding-left: 15px;
}

.post-nav .post-img {
  display: block;
  width: 100px;
  overflow: hidden;
}

.post-nav .prev-post .post-img {
  float: left;
  margin-right: 15px;
}

.post-nav .next-post .post-img {
  float: right;
  margin-left: 15px;
}

.post-nav .next-post span, .post-nav .prev-post span {
  font-weight: 500;
  color: #97989b;
  text-transform: uppercase;
  font-size: 12px;
}

.post-nav .next-post:after, .post-nav .prev-post:after {
  content: "";
  display: table;
  clear: both;
}

.author.media .media-left {
  position: relative;
  padding-right: 30px;
}

.author .author-img {
  width: 100px;
  border-radius: 50%;
  margin-bottom: 15px;
}

.author .author-social li {
  display: inline-block;
  margin-right: 10px;
}

.author .author-social li a {
  display: block;
}

.page-header .author .author-social li a {
  color: #fff;
}

.page-header .author .author-social li a:hover, .page-header .author .author-social li a:focus {
  color: #c83255;
}

.post-comments .media {
  margin-top: 30px;
}

.post-comments .media:nth-child(1) {
  margin-top: 0px;
}

.post-comments .media .media-left {
  position: relative;
  padding-right: 15px;
}

.post-comments .media .media-left .media-object {
  width: 50px;
  border-radius: 50%;
  position: relative;
  z-index: 20;
}

.post-comments .media .media-left:after {
  content: "";
  position: absolute;
  left: calc(50% - 9px);
  top: 80px;
  bottom: 15px;
  width: 1px;
  background-color: #e8eaed;
}

.post-comments .media .media-heading h4 {
  display: inline-block;
  font-size: 14px;
  text-transform: uppercase;
}

.post-comments .media .media-heading .time {
  color: #97989b;
  margin-left: 10px;
  font-size: 12px;
}

.post-comments .media .reply {
  text-transform: uppercase;
  display: inline-block;
  padding: 5px 13px;
  font-size: 12px;
  font-weight: 500;
  color: #fff;
  background-color: #323335;
  border-radius: 2px;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}

.post-comments .media .reply:hover {
  opacity: 0.9;
}

.post-comments .media.media-author .media-heading h4 {
  color: #c83255;
}

.post-comments .media.media-author .media-left:after {
  background-color: #c83255;
}


/*============================================================
# 06. ASIDE COMPONENTS 
============================================================*/

.aside-widget {
  margin-bottom: 30px;
}

.social-widget ul {
  overflow: auto;
}

.social-widget ul li {
  float: left;
  width: 33.33%;
}

.social-widget ul li a {
  display: block;
  text-align: center;
  padding: 30px 15px;
  color: #fff;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}

.social-widget ul li a:hover {
  opacity: 0.9;
}

.social-widget ul li a span {
  font-weight: 500;
  font-size: 14px;
}

.social-widget ul li a i {
  display: block;
  font-size: 30px;
  margin-bottom: 10px;
}

.newsletter-widget {
  position: relative;
  padding: 0px 30px 30px;
  border-left: 2px dashed #e8eaed;
  border-right: 2px dashed #e8eaed;
}

.aside-widget:last-child .newsletter-widget {
  border-bottom: 2px dashed #e8eaed;
}

.newsletter-widget form {
  position: relative;
  z-index: 20;
}

.newsletter-widget .input {
  margin-bottom: 15px;
}

.newsletter-widget:after {
  content: "";
  font-family: FontAwesome;
  position: absolute;
  bottom: -25px;
  right: 27px;
  font-size: 160px;
  color: #e8eaed;
  -webkit-transform: rotate(13deg);
  -ms-transform: rotate(13deg);
  transform: rotate(13deg);
}

.footer-widget .newsletter-widget {
  padding: 0px;
  border: none;
}

.footer-widget .newsletter-widget:after {
  color: #323335;
}

.category-widget ul li {
  padding: 15px 0px;
  border-bottom: 1px solid #e8eaed;
}

.category-widget ul li a {
  display: block;
  text-transform: uppercase;
  font-weight: 500;
}

.category-widget ul li a span {
  float: right;
  font-size: 14px;
  color: #97989b;
  margin-left: 15px;
}

.footer-widget .category-widget ul li {
  border-color: #323335;
}

.tags-widget ul li {
  display: inline-block;
  margin-right: 4px;
  margin-bottom: 6px;
}

.tags-widget ul li a {
  text-transform: uppercase;
  display: block;
  padding: 10px 15px;
  font-size: 12px;
  font-weight: 500;
  color: #97989b;
  background-color: #323335;
  border-radius: 2px;
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}

.tags-widget ul li a:hover, .tags-widget ul li a:focus {
  color: #fff !important;
  background-color: #c83255;
}

.galery-widget ul {
  margin: -2px -2px;
}

.galery-widget ul li {
  display: inline-block;
  width: 33.33%;
  padding: 2px;
  margin-right: -4px;
}

.galery-widget ul li a {
  display: block;
  overflow: hidden;
}

.galery-widget ul li a img {
  width: 100%;
  -webkit-transition: 1.6s -webkit-transform;
  transition: 1.6s -webkit-transform;
  transition: 1.6s transform;
  transition: 1.6s transform, 1.6s -webkit-transform;
}

.galery-widget ul li a:hover img {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}


/*============================================================
# 07. FOOTER 
============================================================*/

#footer {
  margin-top: 40px;
  padding-top: 80px;
  padding-bottom: 40px;
  background-color: #1b1c1e;
}

#footer {
  color: #97989b;
}

#footer a {
  color: #97989b;
}

#footer a:hover, #footer a:focus {
  color: #c83255;
}

.footer-widget {
  margin-bottom: 30px;
}

.footer-widget .footer-title {
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-logo .logo {
  display: inline-block;
  line-height: 70px;
  height: 70px;
}

.footer-bottom {
  margin-top: 30px;
  padding-top: 30px;
  border-top: 1px solid #323335;
}

.footer-nav {
  text-align: right;
}

.footer-nav li {
  display: inline-block;
  margin-right: 10px;
}

.contact li {
  position: relative;
  margin-bottom: 20px;
  padding-left: 55px;
  padding-top: 5px;
  min-height: 40px;
}

.contact li i {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  text-align: center;
  height: 40px;
  background: #fff;
  color: #c83255;
  border: 1px solid #e8eaed;
  line-height: 40px;
  border-radius: 50%;
}

.footer-widget .contact li i {
  color: #97989b;
  background-color: #353535;
  border: none;
}

.contact-social li {
  display: inline-block;
  margin-right: 3px;
  margin-bottom: 6px;
}

.contact-social li a {
  display: block;
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  text-align: center;
  border-radius: 50%;
  color: #fff !important;
  -webkit-transition: 0.2s opacity;
  transition: 0.2s opacity;
}

.contact-social li a:hover {
  opacity: 0.9;
}


/*============================================================
# 08. RESPONSIVE 
============================================================*/

@media only screen and (max-width: 991px) {
  #nav-bottom {
    display: none;
  }

  .nav-social {
    display: none;
  }

  .nav-logo {
    position: static;
    -webkit-transform: none;
    -ms-transform: none;
    transform: none;
    left: 0;
    display: inline-block;
    float: left;
  }

  .footer-nav {
    text-align: left;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 767px) {
  .page-header h1 {
    font-size: 32.437px;
  }

  .post-nav .prev-post {
    float: none;
    width: 100%;
    margin-bottom: 15px;
    padding-right: 0px;
  }

  .post-nav .prev-post:last-child {
    margin-bottom: 0px;
  }

  .post-nav .next-post {
    float: none;
    width: 100%;
  }

  .post-nav .next-post {
    float: none;
    width: 100%;
    padding-left: 0px;
    text-align: left;
  }

  .post-nav .next-post .post-img {
    margin-right: 15px;
    float: left;
    margin-left: 0px;
  }
}


/*============================================================
# 09. HEADER & TOP BAR
============================================================*/

:root {
  --pressly-accent: #c83255;
  --pressly-ink: #1b1c1e;
  --pressly-muted: #72757a;
  --pressly-line: #eceef1;
  --pressly-soft: #f6f7f8;
}

#nav {
  background: #fff;
  border-bottom: 0;
}

/* Top Bar */

#nav-top {
  background: #fff;
  border-bottom: 1px solid var(--pressly-line);
}

#nav-top > .container {
  min-height: 92px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  column-gap: 24px;
}

.nav-social,
.nav-btns {
  float: none;
  padding: 0;
  margin: 0;
}

.nav-social {
  display: flex;
  align-items: center;
  justify-self: start;
  gap: 6px;
}

.nav-social li {
  display: block;
}

.nav-social li a {
  width: 40px;
  height: 40px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--pressly-ink);
  background: transparent;
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.nav-social li a:hover,
.nav-social li a:focus {
  color: var(--pressly-accent);
  background: var(--pressly-soft);
  transform: translateY(-1px);
}

.nav-logo {
  position: static;
  left: auto;
  transform: none;
  justify-self: center;
  line-height: 1;
}

.nav-logo .logo {
  height: auto;
  min-height: 54px;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-logo .logo > img {
  width: auto;
  max-width: 150px;
  max-height: 54px;
  display: block;
}

.nav-btns {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 6px;
}

.nav-btns > button {
  width: 42px;
  height: 42px;
  line-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--pressly-ink);
  transition: color .2s ease, background-color .2s ease, transform .2s ease;
}

.nav-btns > button:hover,
.nav-btns > button:focus {
  color: var(--pressly-accent);
  background: var(--pressly-soft);
  transform: translateY(-1px);
  outline: none;
}

#nav-bottom {
  background: rgba(255,255,255,.98);
  border-top: 0;
  border-bottom: 1px solid var(--pressly-line);
}

#nav-bottom > .container {
  display: flex;
  justify-content: center;
}

.nav-menu {
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.nav-menu > li {
  position: relative;
  display: block;
}

.nav-menu > li > a {
  position: relative;
  padding: 21px 16px 20px;
  line-height: 20px;
  font-size: 14px;
  letter-spacing: .25px;
  color: var(--pressly-ink);
  transition: color .2s ease;
}

.nav-menu > li > a:before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: -1px;
  height: 3px;
  border-radius: 3px 3px 0 0;
  background: var(--pressly-accent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .2s ease;
}

.nav-menu > li:hover > a,
.nav-menu > li > a:focus {
  color: var(--pressly-accent);
}

.nav-menu > li:hover > a:before,
.nav-menu > li > a:focus:before {
  transform: scaleX(1);
}

.nav-menu li.has-dropdown > .dropdown {
  top: calc(100% + 1px);
  border: 1px solid var(--pressly-line);
  border-top: 3px solid var(--pressly-accent);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 16px 40px rgba(23, 28, 35, .10);
  overflow: hidden;
}

.nav-menu li.has-dropdown > .dropdown .dropdown-body {
  background: #fff;
}

.dropdown .dropdown-list li a {
  transition: color .2s ease, background-color .2s ease, padding-left .2s ease;
}

.dropdown .dropdown-list li a:hover,
.dropdown .dropdown-list li a:focus {
  color: var(--pressly-accent);
  background: #fafafa;
  padding-left: 22px;
}

#nav-search {
  border-radius: 10px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, .22);
}

@media only screen and (max-width: 991px) {
  #nav-top > .container {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .nav-social {
    display: none;
  }

  .nav-logo {
    float: none;
    display: block;
    margin-right: auto;
  }

  .nav-logo .logo {
    min-height: 48px;
  }

  .nav-logo .logo > img {
    max-height: 48px;
    max-width: 135px;
  }

  .nav-btns {
    margin-left: auto;
  }
}

@media only screen and (max-width: 575px) {
  #nav-top > .container {
    min-height: 70px;
  }

  .nav-logo .logo > img {
    max-width: 125px;
    max-height: 44px;
  }

  .nav-btns > button {
    width: 40px;
    height: 40px;
  }
}

#nav-top > .container::before,
#nav-top > .container::after,
#nav-bottom > .container::before,
#nav-bottom > .container::after {
  display: none;
  content: none;
}

#nav-top {
  position: relative;
  border-bottom-color: #eceef1;
}

#nav-top:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, var(--pressly-accent) 38%, var(--pressly-accent) 62%, transparent 100%);
  opacity: .9;
}

#nav-top > .container {
  min-height: 104px;
}

.nav-logo .pressly-wordmark {
  min-height: 64px;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  text-decoration: none;
  color: var(--pressly-ink);
  line-height: 1;
}

.pressly-wordmark-main {
  position: relative;
  display: block;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 38px;
  line-height: .95;
  font-weight: 500;
  letter-spacing: -2.2px;
  color: var(--pressly-ink);
  white-space: nowrap;
}

.pressly-wordmark-main > span {
  color: var(--pressly-accent);
}

.pressly-wordmark-main:after {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-left: 4px;
  margin-bottom: 2px;
  border-radius: 50%;
  background: var(--pressly-accent);
}

.pressly-wordmark small {
  display: block;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 8px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 3px;
  color: #8b8e93;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav-social,
.nav-btns {
  min-height: 46px;
}

.nav-social {
  gap: 4px;
}

.nav-social li a {
  width: 38px;
  height: 38px;
  position: relative;
  font-size: 14px;
  background: transparent;
  border: 1px solid transparent;
}

.nav-social li a:hover,
.nav-social li a:focus {
  color: var(--pressly-accent);
  background: #fff;
  border-color: #eceef1;
  box-shadow: 0 7px 20px rgba(23, 28, 35, .07);
  transform: translateY(-2px);
}

.nav-btns {
  position: relative;
  gap: 8px;
}

.nav-btns:before {
  content: "";
  width: 1px;
  height: 24px;
  margin-right: 5px;
  background: #e7e9ec;
}

.nav-btns > button {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border: 1px solid #eceef1;
  background: #fff;
  box-shadow: 0 3px 12px rgba(23, 28, 35, .035);
}

.nav-btns > button:hover,
.nav-btns > button:focus {
  color: #fff;
  background: var(--pressly-accent);
  border-color: var(--pressly-accent);
  box-shadow: 0 8px 20px rgba(200, 50, 85, .22);
  transform: translateY(-2px);
}

@media only screen and (min-width: 992px) {
  #nav-top > .container {
    grid-template-columns: minmax(180px, 1fr) auto minmax(180px, 1fr);
  }
}

@media only screen and (max-width: 991px) {
  #nav-top > .container {
    min-height: 82px;
    position: relative;
  }

  .nav-logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
  }

  .nav-logo .pressly-wordmark {
    min-height: 54px;
  }

  .pressly-wordmark-main {
    font-size: 32px;
    letter-spacing: -1.8px;
  }

  .pressly-wordmark small {
    font-size: 7px;
    letter-spacing: 2.4px;
  }

  .nav-btns:before {
    display: none;
  }
}

@media only screen and (max-width: 575px) {
  #nav-top > .container {
    min-height: 76px;
  }

  .pressly-wordmark-main {
    font-size: 29px;
  }

  .pressly-wordmark small {
    font-size: 6px;
    letter-spacing: 2px;
  }

  .nav-btns {
    gap: 4px;
  }

  .nav-btns > button {
    width: 38px;
    height: 38px;
  }
}


/*============================================================
# 10. SEARCH & MOBILE MENU
============================================================*/

/* Search */

#nav-search {
  position: fixed;
  inset: 0;
  left: 0;
  width: 100%;
  max-width: none;
  padding: 24px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  background: rgba(14, 15, 17, .72);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  z-index: 1200;
  opacity: 0;
  visibility: hidden;
  transform: none;
  transition: opacity .22s ease, visibility .22s ease;
}

#nav-search.active {
  opacity: 1;
  visibility: visible;
  transform: none;
}

.pressly-search-shell {
  width: min(920px, 100%);
  margin-top: clamp(90px, 14vh, 150px);
  padding: 42px 44px 38px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 28px 90px rgba(0, 0, 0, .30);
  transform: translateY(-12px) scale(.985);
  transition: transform .25s cubic-bezier(.2,.8,.2,1);
}

#nav-search.active .pressly-search-shell {
  transform: translateY(0) scale(1);
}

.pressly-search-kicker {
  margin-bottom: 8px;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 11px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2.2px;
  text-transform: uppercase;
  color: var(--pressly-accent);
}

.pressly-search-title {
  margin: 0 0 24px;
  font-family: "Roboto", Arial, sans-serif;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.15;
  font-weight: 500;
  color: var(--pressly-ink);
}

.pressly-search-field {
  min-height: 68px;
  display: grid;
  grid-template-columns: 24px 1fr auto;
  align-items: center;
  gap: 14px;
  padding: 8px 8px 8px 22px;
  border: 1px solid #e4e6e9;
  border-radius: 12px;
  background: #f7f8f9;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.pressly-search-field:focus-within {
  border-color: rgba(200, 50, 85, .55);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(200, 50, 85, .08);
}

.pressly-search-field > i {
  color: #93979d;
  font-size: 17px;
}

#nav-search form .input {
  width: 100%;
  height: 48px;
  min-width: 0;
  padding: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--pressly-ink);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 17px;
  line-height: 48px;
  font-weight: 400;
  box-shadow: none;
}

#nav-search form .input::placeholder {
  color: #9a9da2;
}

.pressly-search-submit {
  height: 50px;
  padding: 0 24px;
  border: 0;
  border-radius: 9px;
  background: var(--pressly-accent);
  color: #fff;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .6px;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.pressly-search-submit:hover,
.pressly-search-submit:focus {
  background: #b52b49;
  box-shadow: 0 10px 24px rgba(200, 50, 85, .24);
  transform: translateY(-1px);
  outline: none;
}

.pressly-search-suggestions {
  margin-top: 18px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px 14px;
  color: #8a8d92;
  font-size: 12px;
}

.pressly-search-suggestions > span {
  font-family: "Roboto", Arial, sans-serif;
  font-weight: 500;
  color: #5c6066;
}

.pressly-search-suggestions a {
  color: #777b80;
  text-decoration: none;
}

.pressly-search-suggestions a:hover,
.pressly-search-suggestions a:focus {
  color: var(--pressly-accent);
}

#nav-search .search-close {
  position: fixed;
  top: 28px;
  right: 32px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.12);
  transition: background-color .18s ease, transform .18s ease;
}

#nav-search .search-close:hover,
#nav-search .search-close:focus {
  background: var(--pressly-accent);
  transform: rotate(4deg);
  outline: none;
}

/* Mobile Menu */

#nav-aside {
  max-width: 410px;
  width: min(410px, 92vw);
  padding: 0;
  overflow-y: auto;
  background: #17181a;
  z-index: 1250;
  box-shadow: -24px 0 70px rgba(0,0,0,.20);
  transition: transform .38s cubic-bezier(.77, 0, .18, 1);
}

.nav-aside-head {
  min-height: 126px;
  padding: 31px 72px 24px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid #2d2f32;
}

.aside-brand {
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  color: #fff;
  text-decoration: none;
}

.aside-brand-main {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 29px;
  line-height: .95;
  font-weight: 500;
  letter-spacing: -1.7px;
  color: #fff;
}

.aside-brand-main > span {
  color: var(--pressly-accent);
}

.aside-brand-main > b {
  display: inline-block;
  width: 5px;
  height: 5px;
  margin-left: 3px;
  margin-bottom: 2px;
  border-radius: 50%;
  background: var(--pressly-accent);
}

.aside-brand small {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 6px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 2.3px;
  color: #7e8288;
}

.aside-menu-label {
  margin-top: 16px;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #62666c;
}

.nav-aside-navigation {
  padding: 18px 30px 8px;
}

.nav-aside-menu {
  margin: 0;
  padding: 0;
}

.nav-aside-menu > li {
  border-bottom: 1px solid #2a2c2f;
}

.nav-aside-menu > li > a {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 58px;
  padding: 0 34px 0 0;
  border: 0;
  color: #f3f3f4;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: .1px;
  transition: color .18s ease, padding-left .18s ease;
}

.nav-aside-menu > li > a:hover,
.nav-aside-menu > li > a:focus {
  color: var(--pressly-accent);
  padding-left: 4px;
}

.nav-aside-menu li.has-dropdown > a:after {
  content: "";
  position: absolute;
  right: 3px;
  top: 50%;
  float: none;
  transform: translateY(-50%);
  font-family: "FontAwesome";
  font-size: 14px;
  color: #777b81;
  transition: transform .2s ease, color .2s ease;
}

.nav-aside-menu li.has-dropdown.active > a:after {
  color: var(--pressly-accent);
  transform: translateY(-50%) rotate(180deg);
}

.nav-aside-menu li.has-dropdown > .dropdown {
  display: none;
  margin: -1px 0 12px;
  padding: 7px 0 9px 15px;
  border: 0;
  border-left: 2px solid #34363a;
}

.nav-aside-menu li.has-dropdown.active > .dropdown {
  display: block;
}

.nav-aside-menu li.has-dropdown > .dropdown li {
  border: 0;
}

.nav-aside-menu li.has-dropdown > .dropdown a {
  display: block;
  padding: 9px 12px;
  border: 0;
  color: #9b9fa5;
  font-size: 13px;
  line-height: 1.35;
  font-weight: 400;
  transition: color .18s ease, transform .18s ease;
}

.nav-aside-menu li.has-dropdown > .dropdown a:hover,
.nav-aside-menu li.has-dropdown > .dropdown a:focus {
  color: #fff;
  transform: translateX(3px);
}

.nav-aside-footer {
  margin-top: 16px;
  padding: 24px 30px 34px;
  border-top: 1px solid #2d2f32;
}

.nav-aside-footer > span {
  display: block;
  margin-bottom: 14px;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 1.6px;
  text-transform: uppercase;
  color: #686c72;
}

.nav-aside-social {
  display: flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 0;
}

.nav-aside-social li a {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #33363a;
  border-radius: 50%;
  color: #bbbfc4;
  transition: color .18s ease, background-color .18s ease, border-color .18s ease, transform .18s ease;
}

.nav-aside-social li a:hover,
.nav-aside-social li a:focus {
  color: #fff;
  background: var(--pressly-accent);
  border-color: var(--pressly-accent);
  transform: translateY(-2px);
}

#nav-aside .nav-aside-close {
  top: 22px;
  right: 22px;
  width: 42px;
  height: 42px;
  border: 1px solid #303236;
  border-radius: 50%;
  transition: border-color .18s ease, background-color .18s ease, transform .18s ease;
}

#nav-aside .nav-aside-close:hover,
#nav-aside .nav-aside-close:focus {
  border-color: var(--pressly-accent);
  background: var(--pressly-accent);
  transform: rotate(4deg);
  outline: none;
}

#nav-aside .nav-close span:before,
#nav-aside .nav-close span:after,
#nav-search .nav-close span:before,
#nav-search .nav-close span:after {
  width: 22px;
}

body.pressly-overlay-open {
  overflow: hidden;
}

#nav.shadow-active:after {
  z-index: 1240;
  background-color: rgba(10, 11, 12, .58);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

@media only screen and (max-width: 575px) {
  #nav-search {
    padding: 16px;
  }

  .pressly-search-shell {
    margin-top: 88px;
    padding: 28px 20px 24px;
    border-radius: 14px;
  }

  .pressly-search-title {
    margin-bottom: 18px;
    font-size: 24px;
  }

  .pressly-search-field {
    grid-template-columns: 20px 1fr;
    min-height: 60px;
    padding: 8px 16px;
  }

  #nav-search form .input {
    height: 42px;
    font-size: 15px;
    line-height: 42px;
  }

  .pressly-search-submit {
    grid-column: 1 / -1;
    width: 100%;
    height: 46px;
    margin-top: 4px;
  }

  .pressly-search-suggestions {
    gap: 8px 12px;
  }

  #nav-search .search-close {
    top: 18px;
    right: 18px;
    width: 42px;
    height: 42px;
  }

  #nav-aside {
    width: min(360px, 94vw);
  }

  .nav-aside-head {
    min-height: 112px;
    padding: 25px 66px 20px 24px;
  }

  .nav-aside-navigation {
    padding: 12px 24px 6px;
  }

  .nav-aside-footer {
    padding-left: 24px;
    padding-right: 24px;
  }

  #nav-aside .nav-aside-close {
    top: 18px;
    right: 18px;
  }
}


/*============================================================
# 11. NAVBAR & DROPDOWNS
============================================================*/

@media only screen and (min-width: 992px) {
  /* Main Navigation */

#nav-bottom {
    position: relative;
    min-height: 68px;
    background: rgba(255,255,255,.98);
    border-bottom: 1px solid #eceef1;
    box-shadow: 0 1px 0 rgba(17,21,28,.015);
    z-index: 80;
  }

  #nav-bottom > .container {
    min-height: 68px;
    align-items: stretch;
    overflow: visible;
  }

  .nav-menu {
    min-height: 68px;
    gap: 2px;
  }

  .nav-menu > li {
    display: flex;
    align-items: stretch;
  }

  .nav-menu > li > a {
    min-height: 68px;
    padding: 0 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    border-radius: 0;
    color: #1b1c1e;
    font-family: "Roboto", Arial, sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: .55px;
    text-transform: uppercase;
    transition: color .22s ease, background-color .22s ease;
  }

  .nav-menu > li > a:before {
    left: 17px;
    right: 17px;
    bottom: 0;
    height: 3px;
    border-radius: 3px 3px 0 0;
    transform: scaleX(0);
    opacity: 0;
    transition: transform .22s ease, opacity .22s ease;
  }

  .nav-menu > li:hover > a,
  .nav-menu > li:focus-within > a,
  .nav-menu > li.is-current > a {
    color: var(--pressly-accent);
    background: linear-gradient(to bottom, rgba(200,50,85,0), rgba(200,50,85,.045));
  }

  .nav-menu > li:hover > a:before,
  .nav-menu > li:focus-within > a:before,
  .nav-menu > li.is-current > a:before {
    transform: scaleX(1);
    opacity: 1;
  }

  .nav-menu li.has-dropdown > a:after {
    margin-left: 2px;
    font-size: 11px;
    transform-origin: center;
    transition: transform .22s ease, color .22s ease;
  }

  .nav-menu li.has-dropdown:hover > a:after,
  .nav-menu li.has-dropdown:focus-within > a:after {
    transform: rotate(180deg);
  }

  .nav-menu a:focus-visible {
    outline: 2px solid rgba(200,50,85,.36);
    outline-offset: -4px;
  }

  .nav-menu li.has-dropdown > .dropdown {
    top: calc(100% + 10px);
    width: 240px;
    padding-top: 0;
    background: #fff;
    border: 1px solid #eceef1;
    border-radius: 12px;
    box-shadow: 0 20px 55px rgba(17,21,28,.13);
    overflow: visible;
    transform: translateY(9px) scale(.985);
    transform-origin: top center;
    transition: opacity .18s ease, visibility .18s ease, transform .22s ease;
  }

  .nav-menu li.has-dropdown:hover > .dropdown,
  .nav-menu li.has-dropdown:focus-within > .dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .nav-menu li.has-dropdown > .dropdown .dropdown-body {
    padding: 10px;
    border: 0;
    border-radius: 12px;
    box-shadow: none;
  }

  .dropdown .dropdown-list {
    margin: 0;
  }

  .dropdown .dropdown-list li {
    border: 0;
  }

  .dropdown .dropdown-list li + li {
    margin-top: 2px;
  }

  .dropdown .dropdown-list li a {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 42px;
    padding: 10px 12px;
    border-radius: 8px;
    color: #3f4348;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.35;
    transition: color .18s ease, background-color .18s ease, transform .18s ease;
  }

  .dropdown .dropdown-list li a:before {
    content: "";
    width: 5px;
    height: 5px;
    margin-right: 10px;
    border-radius: 50%;
    background: #d9dce0;
    transition: background-color .18s ease, transform .18s ease;
  }

  .dropdown .dropdown-list li a:hover,
  .dropdown .dropdown-list li a:focus {
    padding-left: 12px;
    color: var(--pressly-accent);
    background: rgba(200,50,85,.055);
    transform: translateX(2px);
  }

  .dropdown .dropdown-list li a:hover:before,
  .dropdown .dropdown-list li a:focus:before {
    background: var(--pressly-accent);
    transform: scale(1.25);
  }

  

  

  

  .dropdown .dropdown-heading {
    position: relative;
    margin: 0 0 13px;
    padding-bottom: 10px;
    color: #1b1c1e;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: .8px;
    line-height: 1.3;
  }

  .dropdown .dropdown-heading:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 24px;
    height: 2px;
    border-radius: 2px;
    background: var(--pressly-accent);
  }

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  @media (max-width: 1199px) {
    .nav-menu > li > a {
      padding-left: 13px;
      padding-right: 13px;
      font-size: 12px;
    }

    .nav-menu > li > a:before {
      left: 13px;
      right: 13px;
    }

    
  }
}

@media only screen and (min-width: 992px) {
  #nav-bottom {
    transition: box-shadow .22s ease, background-color .22s ease, min-height .22s ease;
  }

  #nav-bottom.is-sticky {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 98;
    background: rgba(255,255,255,.97);
    box-shadow: 0 10px 30px rgba(17,21,28,.09);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
  }

  #nav-bottom.is-sticky,
  #nav-bottom.is-sticky > .container,
  #nav-bottom.is-sticky .nav-menu,
  #nav-bottom.is-sticky .nav-menu > li > a {
    min-height: 62px;
  }

  .nav-menu li.has-dropdown > .dropdown {
    top: 100%;
  }

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  .pressly-links-mega.dropdown-body {
    padding: 20px 22px !important;
  }

  .pressly-links-mega > .row {
    --bs-gutter-x: 30px;
    align-items: stretch;
  }

  .pressly-links-mega .dropdown-heading {
    margin-bottom: 9px;
    padding-bottom: 8px;
  }

  .pressly-links-mega .dropdown-list {
    margin-bottom: 0 !important;
  }

  .pressly-links-mega .dropdown-list li a {
    min-height: 34px !important;
    padding: 6px 5px 6px 0 !important;
  }

  

  

  

  

  

  

  

  

  

  

  
}



@media only screen and (min-width: 992px) {
  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  

  .pressly-links-mega.dropdown-body {
    padding: 22px 24px !important;
  }

  .pressly-links-mega .dropdown-heading {
    position: relative;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #eef0f2;
    font-size: 11px;
    letter-spacing: .6px;
  }

  .pressly-links-mega .dropdown-heading:after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 28px;
    height: 2px;
    background: var(--pressly-accent);
  }

  .pressly-links-mega .dropdown-list li a {
    border-radius: 6px;
    transition: color .18s ease, background-color .18s ease, padding-left .18s ease;
  }

  .pressly-links-mega .dropdown-list li a:hover,
  .pressly-links-mega .dropdown-list li a:focus {
    padding-left: 8px !important;
    background: #faf5f7;
  }

  
}


/*============================================================
# 12. HOME — FEATURED SLIDER
============================================================*/

/* Featured Slider */

.pressly-featured-section {
  padding: 34px 0 18px;
  background: #fff;
}

.pressly-featured-slider {
  position: relative;
  overflow: hidden;
  height: 520px;
  border: 1px solid rgba(27, 28, 30, 0.07);
  border-radius: 18px;
  background: #17191c;
  box-shadow: 0 18px 48px rgba(24, 28, 32, 0.12);
  isolation: isolate;
}

.pressly-featured-stage,
.pressly-feature-slide,
.pressly-slide-media {
  position: absolute;
  inset: 0;
}

.pressly-feature-slide {
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transform: scale(1.015);
  transition: opacity 680ms ease, transform 850ms cubic-bezier(.2,.65,.3,1), visibility 680ms step-end;
}

.pressly-feature-slide.is-active {
  z-index: 2;
  visibility: visible;
  opacity: 1;
  transform: scale(1);
  transition: opacity 680ms ease, transform 850ms cubic-bezier(.2,.65,.3,1), visibility 0s step-start;
}

.pressly-slide-media {
  display: block;
  z-index: 1;
}

.pressly-slide-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.055);
  transition: transform 7s cubic-bezier(.1,.55,.2,1);
}

.pressly-feature-slide.is-active .pressly-slide-media img {
  transform: scale(1.01);
}

.pressly-slide-shade {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: linear-gradient(90deg, rgba(15,17,20,.92) 0%, rgba(15,17,20,.76) 32%, rgba(15,17,20,.28) 61%, rgba(15,17,20,.10) 100%),
    linear-gradient(0deg, rgba(15,17,20,.38) 0%, transparent 42%);
}

.pressly-slide-content {
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 3;
  width: min(650px, 58%);
  padding: 0 0 0 82px;
  transform: translateY(-46%);
  color: #fff;
}

.pressly-slide-category {
  display: inline-flex;
  align-items: center;
  min-height: 29px;
  margin-bottom: 17px;
  padding: 7px 13px;
  border-radius: 999px;
  background: #c83255;
  color: #fff;
  font-size: 10px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.pressly-slide-category:hover,
.pressly-slide-category:focus {
  color: #fff;
  background: #b52b49;
}

.pressly-slide-title {
  margin: 0 0 17px;
  font-family: "Roboto", Arial, sans-serif;
  font-size: clamp(39px, 4.2vw, 61px);
  font-weight: 500;
  line-height: 1.03;
  letter-spacing: -.035em;
}

.pressly-slide-title a {
  color: #fff;
}

.pressly-slide-title a:hover,
.pressly-slide-title a:focus {
  color: #fff;
  opacity: .88;
}

.pressly-slide-excerpt {
  max-width: 565px;
  margin: 0 0 22px;
  color: rgba(255,255,255,.80);
  font-family: "Roboto", Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
}

.pressly-slide-meta,
.pressly-slide-author {
  display: flex;
  align-items: center;
}

.pressly-slide-meta {
  gap: 12px;
  color: rgba(255,255,255,.76);
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .045em;
}

.pressly-slide-author {
  gap: 10px;
  color: #fff;
}

.pressly-slide-author:hover,
.pressly-slide-author:focus {
  color: #fff;
  opacity: .82;
}

.pressly-slide-author img {
  width: 38px;
  height: 38px;
  border: 2px solid rgba(255,255,255,.88);
  border-radius: 50%;
  object-fit: cover;
}

.pressly-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c83255;
}

.pressly-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 5;
  display: grid;
  width: 46px;
  height: 46px;
  margin-top: -23px;
  padding: 0;
  place-items: center;
  border: 1px solid rgba(255,255,255,.20);
  border-radius: 50%;
  background: rgba(12,14,17,.55);
  color: #fff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  transition: background-color .2s ease, transform .2s ease, border-color .2s ease;
}

.pressly-slider-prev {
  left: 18px;
}

.pressly-slider-next {
  right: 18px;
}

.pressly-slider-arrow:hover,
.pressly-slider-arrow:focus {
  background: #c83255;
  border-color: #c83255;
  transform: scale(1.06);
  outline: none;
}

.pressly-slider-footer {
  position: absolute;
  left: 82px;
  right: 82px;
  bottom: 23px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pressly-slider-count {
  display: flex;
  gap: 5px;
  color: rgba(255,255,255,.62);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .09em;
}

.pressly-slider-count .pressly-current-slide {
  color: #fff;
}

.pressly-slider-dots {
  display: flex;
  align-items: center;
  gap: 7px;
}

.pressly-slider-dots button {
  position: relative;
  width: 35px;
  height: 12px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.pressly-slider-dots button:before {
  position: absolute;
  left: 0;
  right: 0;
  top: 5px;
  height: 3px;
  content: "";
  border-radius: 999px;
  background: rgba(255,255,255,.52);
  transition: background-color .2s ease, transform .2s ease;
}

.pressly-slider-dots button.is-active:before {
  background: #c83255;
  transform: scaleY(1.35);
}

.pressly-slider-dots button:focus {
  outline: none;
}

.pressly-slider-dots button:focus-visible:before {
  box-shadow: 0 0 0 2px #fff;
}

.pressly-story-deck {
  display: grid;
  grid-template-columns: minmax(300px, .86fr) minmax(0, 2fr);
  gap: 30px;
  margin-top: 30px;
  padding-bottom: 18px;
  border-bottom: 1px solid #eceef0;
}

/* Trending Now */

.pressly-trending-panel {
  padding-right: 30px;
  border-right: 1px solid #eceef0;
}

.pressly-deck-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.pressly-deck-heading h2 {
  margin: 0;
  color: #17191c;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.pressly-deck-heading h2 i {
  margin-right: 8px;
  color: #c83255;
  font-size: 16px;
}

.pressly-deck-heading > a {
  color: #c83255;
  font-size: 11px;
  font-weight: 500;
}

.pressly-deck-heading > a i {
  margin-left: 5px;
}

.pressly-trending-list {
  display: grid;
  gap: 13px;
}

.pressly-trending-item {
  display: grid;
  grid-template-columns: 82px 28px minmax(0,1fr);
  align-items: center;
  gap: 10px;
  padding-bottom: 13px;
  border-bottom: 1px solid #f0f1f2;
}

.pressly-trending-item:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.pressly-trending-img {
  display: block;
  overflow: hidden;
  height: 63px;
  border-radius: 9px;
}

.pressly-trending-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.pressly-trending-item:hover .pressly-trending-img img {
  transform: scale(1.06);
}

.pressly-trending-number {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 7px;
  background: #c83255;
  color: #fff;
  font-size: 10px;
  font-weight: 500;
}

.pressly-trending-item h3 {
  margin: 0 0 6px;
  font-size: 13px;
  line-height: 1.35;
}

.pressly-trending-item h3 a {
  color: #17191c;
}

.pressly-trending-item h3 a:hover {
  color: #c83255;
}

.pressly-trending-item p,
.pressly-mini-story p {
  margin: 0;
  color: #8d9299;
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
}

.pressly-trending-item p span,
.pressly-mini-story p span {
  display: inline-block;
  width: 3px;
  height: 3px;
  margin: 0 7px 2px;
  border-radius: 50%;
  background: #c83255;
}

.pressly-latest-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0,1fr));
  gap: 18px;
}

.pressly-mini-story {
  min-width: 0;
}

.pressly-mini-img {
  position: relative;
  display: block;
  overflow: hidden;
  height: 118px;
  margin-bottom: 11px;
  border-radius: 10px;
  background: #f2f3f4;
}

.pressly-mini-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.pressly-mini-story:hover .pressly-mini-img img {
  transform: scale(1.055);
}

.pressly-mini-img span {
  position: absolute;
  left: 10px;
  bottom: 9px;
  padding: 5px 8px;
  border-radius: 999px;
  background: #c83255;
  color: #fff;
  font-size: 8px;
  font-weight: 500;
  line-height: 1;
  text-transform: uppercase;
}

.pressly-mini-story h3 {
  margin: 0 0 7px;
  font-size: 13px;
  line-height: 1.34;
}

.pressly-mini-story h3 a {
  color: #17191c;
}

.pressly-mini-story h3 a:hover {
  color: #c83255;
}

@media (max-width: 1199.98px) {
  .pressly-featured-slider {
    height: 480px;
  }

  .pressly-slide-content {
    width: 62%;
    padding-left: 72px;
  }

  .pressly-slider-footer {
    left: 72px;
    right: 72px;
  }

  .pressly-slide-title {
    font-size: clamp(36px, 4.3vw, 52px);
  }

  .pressly-story-deck {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pressly-trending-panel {
    padding-right: 0;
    padding-bottom: 22px;
    border-right: 0;
    border-bottom: 1px solid #eceef0;
  }

  .pressly-trending-list {
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 22px;
  }

  .pressly-trending-item {
    border-bottom: 0;
    padding-bottom: 0;
  }
}

@media (max-width: 991.98px) {
  .pressly-featured-section {
    padding-top: 24px;
  }

  .pressly-featured-slider {
    height: 470px;
    border-radius: 15px;
  }

  .pressly-slide-content {
    width: 72%;
    padding-left: 62px;
  }

  .pressly-slide-shade {
    background: linear-gradient(90deg, rgba(15,17,20,.90) 0%, rgba(15,17,20,.60) 55%, rgba(15,17,20,.18) 100%);
  }

  .pressly-slider-footer {
    left: 62px;
    right: 62px;
  }

  .pressly-slide-excerpt {
    font-size: 14px;
  }

  .pressly-latest-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
    row-gap: 22px;
  }

  .pressly-mini-img {
    height: 165px;
  }
}

@media (max-width: 767.98px) {
  .pressly-featured-section {
    padding-top: 18px;
  }

  .pressly-featured-slider {
    height: 520px;
    border-radius: 14px;
  }

  .pressly-slide-media img {
    object-position: 62% center;
  }

  .pressly-slide-shade {
    background: linear-gradient(0deg, rgba(15,17,20,.95) 0%, rgba(15,17,20,.64) 58%, rgba(15,17,20,.18) 100%);
  }

  .pressly-slide-content {
    top: auto;
    left: 0;
    bottom: 58px;
    width: 100%;
    padding: 0 25px;
    transform: none;
  }

  .pressly-slide-title {
    margin-bottom: 12px;
    font-size: clamp(30px, 8vw, 40px);
    line-height: 1.06;
  }

  .pressly-slide-title br {
    display: none;
  }

  .pressly-slide-excerpt {
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 16px;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
  }

  .pressly-slide-meta {
    font-size: 9px;
  }

  .pressly-slide-author img {
    width: 32px;
    height: 32px;
  }

  .pressly-slider-arrow {
    top: 26px;
    width: 38px;
    height: 38px;
    margin: 0;
    font-size: 23px;
  }

  .pressly-slider-prev {
    left: auto;
    right: 66px;
  }

  .pressly-slider-next {
    right: 20px;
  }

  .pressly-slider-footer {
    left: 25px;
    right: 25px;
    bottom: 20px;
  }

  .pressly-trending-list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .pressly-trending-item {
    grid-template-columns: 86px 30px minmax(0,1fr);
  }

  .pressly-latest-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
    gap: 16px 12px;
  }

  .pressly-mini-img {
    height: 120px;
  }
}

@media (max-width: 479.98px) {
  .pressly-featured-slider {
    height: 500px;
  }

  .pressly-slide-category {
    margin-bottom: 12px;
  }

  .pressly-slide-title {
    font-size: 29px;
  }

  .pressly-slide-excerpt {
    font-size: 13px;
  }

  .pressly-slider-count {
    display: none;
  }

  .pressly-slider-footer {
    justify-content: flex-end;
  }

  .pressly-latest-grid {
    grid-template-columns: 1fr;
  }

  .pressly-mini-img {
    height: 180px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pressly-feature-slide,
  .pressly-slide-media img,
  .pressly-trending-img img,
  .pressly-mini-img img {
    transition: none !important;
  }
}


/*============================================================
# 13. HOME 02 — EDITOR’S PICK HERO
============================================================*/

.pressly-home2-section {
  padding-top: 54px;
}

.pressly-editor-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 38px;
}

.pressly-editor-heading h1 {
  margin: 0 0 7px;
  font-size: 38px;
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: -0.7px;
}

.pressly-editor-heading p {
  margin: 0;
  color: #7e838c;
  font-size: 18px;
  line-height: 1.5;
}

.pressly-editor-slider {
  position: relative;
  min-height: 530px;
  margin-bottom: 62px;
}

.pressly-editor-stage {
  position: relative;
  min-height: 490px;
}

.pressly-editor-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .45s ease, visibility .45s ease;
}

.pressly-editor-slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 2;
}

.pressly-editor-media {
  position: absolute;
  top: 0;
  right: 0;
  width: 69%;
  height: 490px;
  overflow: hidden;
  border-radius: 26px;
  background: #eef1f4;
}

.pressly-editor-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.025);
  transition: transform 1.1s ease;
}

.pressly-editor-slide.is-active .pressly-editor-media img {
  transform: scale(1);
}

.pressly-editor-media-icon {
  position: absolute;
  top: 22px;
  right: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  color: #fff;
  background: rgba(17, 21, 28, .57);
  border: 1px solid rgba(255, 255, 255, .48);
  backdrop-filter: blur(7px);
  -webkit-backdrop-filter: blur(7px);
  font-size: 17px;
}

.pressly-editor-card {
  position: absolute;
  left: 0;
  top: 50%;
  width: 43%;
  min-height: 330px;
  padding: 44px 42px 31px;
  transform: translateY(-50%);
  border-radius: 24px;
  background: rgba(255, 255, 255, .97);
  border: 1px solid #edf0f2;
  box-shadow: 0 16px 38px rgba(16, 24, 40, .12);
  z-index: 3;
}

.pressly-editor-category {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  margin-bottom: 22px;
  padding: 4px 13px;
  border-radius: 999px;
  background: #f5f6f7;
  color: #5f6570;
  font-size: 12px;
  font-weight: 500;
}

.pressly-editor-card h2 {
  max-width: 390px;
  margin-bottom: 24px;
  font-size: 30px;
  line-height: 1.18;
  letter-spacing: -.38px;
  font-weight: 500;
}

.pressly-editor-card h2 a {
  color: #11151c;
}

.pressly-editor-card h2 a:hover,
.pressly-editor-card h2 a:focus {
  color: #c83255;
}

.pressly-editor-author {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 29px;
}

.pressly-editor-author img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
}

.pressly-editor-author div {
  display: grid;
  gap: 2px;
}

.pressly-editor-author a {
  color: #1a1d22;
  font-size: 13px;
  line-height: 1.3;
  font-weight: 500;
}

.pressly-editor-author time {
  color: #8b9099;
  font-size: 12px;
}

.pressly-editor-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 22px;
  border-top: 1px solid #eceff2;
}

.pressly-editor-stats,
.pressly-editor-reading {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #5f6570;
  font-size: 12px;
}

.pressly-editor-stats span,
.pressly-editor-reading span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pressly-editor-reading i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #e1e5e9;
  color: #11151c;
}

.pressly-editor-controls {
  position: absolute;
  left: 42px;
  bottom: -10px;
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 5;
}

.pressly-editor-controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid #dfe3e7;
  background: #fff;
  color: #69707a;
  font-size: 14px;
  transition: .2s ease;
}

.pressly-editor-controls button:hover,
.pressly-editor-controls button:focus {
  border-color: #c83255;
  background: #c83255;
  color: #fff;
}

.pressly-editor-count {
  margin-left: 6px;
  color: #a1a5ac;
  font-size: 12px;
  letter-spacing: .4px;
}

.pressly-editor-count b {
  color: #c83255;
  font-weight: 500;
}

.pressly-editor-slide .pressly-editor-card {
  opacity: 0;
  transform: translate(-14px, -50%);
  transition: opacity .45s ease .08s, transform .52s ease .08s;
}

.pressly-editor-slide.is-active .pressly-editor-card {
  opacity: 1;
  transform: translate(0, -50%);
}

@media (max-width: 1199.98px) {
  .pressly-editor-media {
    width: 67%;
  }

  .pressly-editor-card {
    width: 46%;
    padding: 38px 34px 28px;
  }

  .pressly-editor-card h2 {
    font-size: 27px;
  }
}

@media (max-width: 991.98px) {
  .pressly-home2-section {
    padding-top: 42px;
  }

  .pressly-editor-heading {
    margin-bottom: 28px;
  }

  .pressly-editor-slider,
  .pressly-editor-stage {
    min-height: 610px;
  }

  .pressly-editor-media {
    position: relative;
    width: 100%;
    height: 400px;
  }

  .pressly-editor-card {
    top: auto;
    left: 28px;
    bottom: 0;
    width: calc(100% - 56px);
    min-height: 0;
    padding: 30px 32px 24px;
    transform: none;
  }

  .pressly-editor-slide .pressly-editor-card,
  .pressly-editor-slide.is-active .pressly-editor-card {
    transform: translateY(18px);
  }

  .pressly-editor-slide.is-active .pressly-editor-card {
    transform: translateY(0);
  }

  .pressly-editor-card h2 {
    max-width: none;
    font-size: 26px;
  }

  .pressly-editor-author {
    margin-bottom: 20px;
  }

  .pressly-editor-controls {
    left: 28px;
    bottom: -4px;
  }
}

@media (max-width: 767.98px) {
  .pressly-home2-section {
    padding-top: 32px;
  }

  .pressly-editor-heading h1 {
    font-size: 32px;
  }

  .pressly-editor-heading p {
    font-size: 16px;
  }

  .pressly-editor-slider {
    min-height: 635px;
    margin-bottom: 44px;
  }

  .pressly-editor-stage {
    min-height: 590px;
  }

  .pressly-editor-media {
    height: 350px;
    border-radius: 20px;
  }

  .pressly-editor-card {
    left: 18px;
    width: calc(100% - 36px);
    padding: 26px 24px 22px;
    border-radius: 20px;
  }

  .pressly-editor-category {
    margin-bottom: 15px;
  }

  .pressly-editor-card h2 {
    margin-bottom: 18px;
    font-size: 24px;
  }

  .pressly-editor-card-footer {
    padding-top: 17px;
  }

  .pressly-editor-controls {
    left: 18px;
  }
}

@media (max-width: 575.98px) {
  .pressly-editor-heading {
    margin-bottom: 22px;
  }

  .pressly-editor-heading h1 {
    font-size: 29px;
  }

  .pressly-editor-heading p {
    font-size: 14px;
  }

  .pressly-editor-slider {
    min-height: 650px;
  }

  .pressly-editor-stage {
    min-height: 610px;
  }

  .pressly-editor-media {
    height: 310px;
  }

  .pressly-editor-media-icon {
    top: 14px;
    right: 14px;
    width: 40px;
    height: 40px;
  }

  .pressly-editor-card {
    left: 12px;
    width: calc(100% - 24px);
    padding: 24px 20px 20px;
  }

  .pressly-editor-card h2 {
    font-size: 22px;
  }

  .pressly-editor-author {
    margin-bottom: 16px;
  }

  .pressly-editor-card-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .pressly-editor-reading {
    width: 100%;
    justify-content: space-between;
  }

  .pressly-editor-controls {
    left: 12px;
    bottom: -4px;
  }

  .pressly-editor-controls button {
    width: 42px;
    height: 42px;
  }
}

/*============================================================
# 14. HOME — RECENT POSTS
============================================================*/

/* Recent Posts */

.pressly-content-section {
  padding-top: 42px;
  padding-bottom: 12px;
}

.pressly-content-section .section-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.pressly-content-section .section-title .title {
  flex: 0 0 auto;
  padding: 0;
  background: #fff;
  font-size: 17px;
  line-height: 1.2;
  letter-spacing: .02em;
  font-weight: 500;
}

.pressly-content-section .section-title .title:before {
  content: "";
  display: inline-block;
  width: 4px;
  height: 17px;
  margin-right: 9px;
  border-radius: 10px;
  background: #c83255;
  vertical-align: -2px;
}

.pressly-content-section .section-title:after {
  position: static;
  flex: 1 1 auto;
  height: 1px;
  background: #e9ebef;
}

.pressly-content-section .col-lg-8 > .row:first-child > .col-lg-6 .post {
  margin-bottom: 38px;
}

.pressly-content-section .col-lg-8 > .row:first-child > .col-lg-6 .post-img {
  border-radius: 10px;
  background: #f5f6f7;
}

.pressly-content-section .col-lg-8 > .row:first-child > .col-lg-6 .post-img > img {
  display: block;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2,.7,.2,1);
}

.pressly-content-section .col-lg-8 > .row:first-child > .col-lg-6 .post-img:hover > img {
  transform: scale(1.035);
}

.pressly-content-section .col-lg-8 > .row:first-child > .col-lg-6 .post-body {
  margin: -34px 14px 0;
  padding: 20px 20px 17px;
  border: 1px solid #edf0f2;
  border-radius: 9px;
  box-shadow: 0 10px 26px rgba(20, 22, 26, .055);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.pressly-content-section .col-lg-8 > .row:first-child > .col-lg-6 .post:hover .post-body {
  transform: translateY(-2px);
  border-color: #e5e8eb;
  box-shadow: 0 14px 32px rgba(20, 22, 26, .075);
}

.pressly-content-section .col-lg-8 > .row:first-child > .col-lg-6 .post-category {
  margin-bottom: 9px;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.pressly-content-section .col-lg-8 > .row:first-child > .col-lg-6 .post-category a {
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 4px 9px;
  border-radius: 999px;
  background: rgba(200, 50, 85, .09);
  font-size: 10.5px;
  line-height: 1;
  letter-spacing: .035em;
}

.pressly-content-section .col-lg-8 > .row:first-child > .col-lg-6 .post-category a:after {
  display: none;
}

.pressly-content-section .col-lg-8 > .row:first-child > .col-lg-6 .post-title {
  margin-bottom: 13px;
  font-size: 19px;
  line-height: 1.32;
  letter-spacing: -.012em;
}

.pressly-content-section .col-lg-8 > .row:first-child > .col-lg-6 .post-title a {
  transition: color .2s ease;
}

.pressly-content-section .col-lg-8 > .row:first-child > .col-lg-6 .post-meta {
  margin-bottom: 0;
}

.pressly-content-section .col-lg-8 > .row:first-child > .col-lg-6 .post-meta li {
  font-size: 11px;
  letter-spacing: .035em;
}

.pressly-content-section .col-lg-8 > .row:first-child > .col-lg-6 .post-meta li:after {
  color: #c83255;
  padding-left: 7px;
  padding-right: 7px;
}

.pressly-content-section > .container > .row > .col-lg-4 .aside-widget {
  margin-bottom: 34px;
}

.pressly-content-section > .container > .row > .col-lg-4 .aside-widget.text-center {
  padding: 12px;
  border: 1px solid #edf0f2;
  border-radius: 10px;
  background: #fafbfc;
}

.pressly-content-section > .container > .row > .col-lg-4 .aside-widget.text-center:before {
  content: "ADVERTISEMENT";
  display: block;
  margin: 0 0 9px;
  color: #a0a4aa;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .16em;
}

.pressly-content-section > .container > .row > .col-lg-4 .aside-widget.text-center img {
  border-radius: 4px;
}

.pressly-content-section .social-widget ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  overflow: visible;
  margin: 0;
}

.pressly-content-section .social-widget ul li {
  float: none;
  width: auto;
}

.pressly-content-section .social-widget ul li a {
  min-height: 126px;
  padding: 21px 8px 17px;
  border-radius: 9px;
  box-shadow: 0 7px 20px rgba(20, 22, 26, .07);
  transition: transform .22s ease, box-shadow .22s ease, opacity .22s ease;
}

.pressly-content-section .social-widget ul li a:hover {
  opacity: 1;
  transform: translateY(-3px);
  box-shadow: 0 11px 26px rgba(20, 22, 26, .11);
}

.pressly-content-section .social-widget ul li a i {
  margin-bottom: 9px;
  font-size: 27px;
}

.pressly-content-section .social-widget ul li a span {
  font-size: 12.5px;
  line-height: 1.45;
}

.pressly-content-section .category-widget ul li {
  padding: 0;
  border-bottom: 1px solid #edf0f2;
}

.pressly-content-section .category-widget ul li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 2px;
  font-weight: 500;
  transition: color .2s ease, padding .2s ease;
}

.pressly-content-section .category-widget ul li a:hover {
  padding-left: 5px;
}

.pressly-content-section .category-widget ul li a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 30px;
  height: 24px;
  padding: 0 7px;
  border-radius: 999px;
  background: #f5f6f8;
  color: #8e9298;
  font-size: 11px;
}

.pressly-content-section .newsletter-widget {
  overflow: hidden;
  padding: 22px;
  border: 1px solid #edf0f2;
  border-radius: 10px;
  background: #fafbfc;
}

.pressly-content-section .newsletter-widget:after {
  right: 14px;
  bottom: -30px;
  color: #f0f1f3;
  opacity: .9;
}

.pressly-content-section .newsletter-widget .input {
  height: 44px;
  border: 1px solid #dfe2e6;
  border-radius: 7px;
}

.pressly-content-section .newsletter-widget .primary-button {
  border-radius: 7px;
}

@media (max-width: 991px) {
  .pressly-content-section {
    padding-top: 32px;
  }

  .pressly-content-section > .container > .row > .col-lg-4 {
    margin-top: 12px;
  }

  .pressly-content-section > .container > .row > .col-lg-4 .aside-widget.text-center {
    max-width: 380px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 575px) {
  .pressly-content-section .section-title .title {
    font-size: 15px;
  }

  .pressly-content-section .col-lg-8 > .row:first-child > .col-lg-6 .post-body {
    margin: -24px 9px 0;
    padding: 17px 16px 15px;
  }

  .pressly-content-section .col-lg-8 > .row:first-child > .col-lg-6 .post-title {
    font-size: 17px;
  }

  .pressly-content-section .social-widget ul {
    gap: 6px;
  }

  .pressly-content-section .social-widget ul li a {
    min-height: 112px;
    padding: 18px 5px 14px;
  }

  .pressly-content-section .social-widget ul li a span {
    font-size: 11px;
  }
}


/*============================================================
# 15. HOME — LIFESTYLE
============================================================*/

/* Lifestyle */

.pressly-content-section .pressly-lifestyle-row {
  margin-top: 12px;
  margin-bottom: 4px;
}

.pressly-content-section .pressly-lifestyle-row > .col-lg-12 {
  margin-bottom: 2px;
}

.pressly-content-section .pressly-lifestyle-row .pressly-section-heading {
  display: flex;
  align-items: center;
  min-height: 43px;
  margin-bottom: 21px;
  padding-bottom: 13px;
  border-bottom: 1px solid #e9ebee;
}

.pressly-content-section .pressly-lifestyle-row .pressly-section-heading:after {
  display: none;
}

.pressly-content-section .pressly-lifestyle-row .pressly-section-heading .title {
  flex: 0 0 auto;
  padding: 0;
  margin-right: 13px;
  background: transparent;
  font-size: 17px;
  letter-spacing: .015em;
}

.pressly-content-section .pressly-lifestyle-row .pressly-section-heading .title:before {
  width: 4px;
  height: 17px;
  margin-right: 9px;
  border-radius: 999px;
}

.pressly-content-section .pressly-lifestyle-row .pressly-section-kicker {
  color: #9a9da2;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .02em;
}

.pressly-content-section .pressly-lifestyle-row .pressly-view-all {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
  color: #22252a;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .055em;
  transition: color .2s ease, gap .2s ease;
}

.pressly-content-section .pressly-lifestyle-row .pressly-view-all:hover,
.pressly-content-section .pressly-lifestyle-row .pressly-view-all:focus {
  color: #c83255;
  gap: 10px;
}

.pressly-content-section .pressly-lifestyle-row .pressly-lifestyle-card {
  height: calc(100% - 26px);
  margin-bottom: 26px;
  overflow: hidden;
  border: 1px solid #e9ebee;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 6px 19px rgba(20, 22, 26, .035);
  transition: transform .24s ease, border-color .24s ease, box-shadow .24s ease;
}

.pressly-content-section .pressly-lifestyle-row .pressly-lifestyle-card:hover {
  transform: translateY(-4px);
  border-color: #dfe2e6;
  box-shadow: 0 15px 34px rgba(20, 22, 26, .075);
}

.pressly-content-section .pressly-lifestyle-row .pressly-lifestyle-img {
  position: relative;
  aspect-ratio: 16 / 10;
  border-radius: 0;
  background: #f3f4f5;
}

.pressly-content-section .pressly-lifestyle-row .pressly-lifestyle-img:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(10, 12, 14, 0) 68%, rgba(10, 12, 14, .10) 100%);
}

.pressly-content-section .pressly-lifestyle-row .pressly-lifestyle-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s cubic-bezier(.2,.65,.3,1);
}

.pressly-content-section .pressly-lifestyle-row .pressly-lifestyle-card:hover .pressly-lifestyle-img > img {
  transform: scale(1.045);
}

.pressly-content-section .pressly-lifestyle-row .pressly-lifestyle-body {
  margin: 0;
  padding: 17px 18px 18px;
  background: #fff;
}

.pressly-content-section .pressly-lifestyle-row .post-category {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-bottom: 9px;
}

.pressly-content-section .pressly-lifestyle-row .post-category a {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(200, 50, 85, .085);
  font-size: 9.5px;
  line-height: 1;
  letter-spacing: .045em;
}

.pressly-content-section .pressly-lifestyle-row .post-category a:after {
  display: none;
}

.pressly-content-section .pressly-lifestyle-row .post-title.title-sm {
  min-height: 44px;
  margin: 0 0 12px;
  font-size: 16px;
  line-height: 1.38;
  letter-spacing: -.008em;
}

.pressly-content-section .pressly-lifestyle-row .post-title a {
  transition: color .2s ease;
}

.pressly-content-section .pressly-lifestyle-row .post-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin: 0;
  padding-top: 12px;
  border-top: 1px solid #f0f1f3;
}

.pressly-content-section .pressly-lifestyle-row .post-meta li {
  font-size: 10.5px;
  letter-spacing: .035em;
}

.pressly-content-section .pressly-lifestyle-row .post-meta li:after {
  color: #c83255;
  padding-left: 7px;
  padding-right: 7px;
}

@media (max-width: 991px) {
  .pressly-content-section .pressly-lifestyle-row .pressly-lifestyle-card {
    height: auto;
  }

  .pressly-content-section .pressly-lifestyle-row .post-title.title-sm {
    min-height: 0;
  }
}

@media (max-width: 575px) {
  .pressly-content-section .pressly-lifestyle-row .pressly-section-heading {
    flex-wrap: wrap;
    row-gap: 8px;
  }

  .pressly-content-section .pressly-lifestyle-row .pressly-section-kicker {
    order: 3;
    flex-basis: 100%;
    padding-left: 13px;
  }

  .pressly-content-section .pressly-lifestyle-row .pressly-view-all {
    font-size: 10px;
  }

  .pressly-content-section .pressly-lifestyle-row .pressly-lifestyle-body {
    padding: 15px 15px 16px;
  }
}


/*============================================================
# 16. HOME — TECHNOLOGY & HEALTH
============================================================*/

/* Technology & Health Slider */

.pressly-content-section .pressly-tech-health-row {
  margin-top: 20px;
  margin-bottom: 10px;
}

.pressly-content-section .pressly-tech-health-heading {
  display: flex;
  align-items: center;
  min-height: 43px;
  margin-bottom: 21px;
  padding-bottom: 13px;
  border-bottom: 1px solid #e9ebee;
}

.pressly-content-section .pressly-tech-health-heading:after {
  display: none;
}

.pressly-content-section .pressly-tech-health-heading .title {
  flex: 0 0 auto;
  margin-right: 13px;
  padding: 0;
  background: transparent;
  font-size: 17px;
  letter-spacing: .015em;
}

.pressly-content-section .pressly-tech-health-heading .title:before {
  width: 4px;
  height: 17px;
  margin-right: 9px;
  border-radius: 999px;
}

.pressly-content-section .pressly-tech-health-heading .pressly-section-kicker {
  color: #9a9da2;
  font-size: 11px;
  line-height: 1;
  letter-spacing: .02em;
}

.pressly-content-section .pressly-tech-health-controls {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
}

.pressly-content-section .pressly-tech-health-controls button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  padding: 0;
  border: 1px solid #e1e4e8;
  border-radius: 50%;
  background: #fff;
  color: #22252a;
  font-size: 16px;
  line-height: 1;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background-color .2s ease, transform .2s ease;
}

.pressly-content-section .pressly-tech-health-controls button:hover,
.pressly-content-section .pressly-tech-health-controls button:focus-visible {
  border-color: rgba(200, 50, 85, .42);
  background: #c83255;
  color: #fff;
  outline: none;
  transform: translateY(-1px);
}

.pressly-content-section .pressly-tech-health-slider {
  position: relative;
  min-width: 0;
}

.pressly-content-section .pressly-th-viewport {
  overflow: hidden;
  margin: 0 -1px;
  padding: 1px;
}

.pressly-content-section .pressly-th-track {
  display: flex;
  align-items: stretch;
  gap: 20px;
  will-change: transform;
  transition: transform .6s cubic-bezier(.22,.72,.2,1);
}

.pressly-content-section .pressly-th-slide {
  flex: 0 0 calc((100% - 20px) / 2);
  min-width: 0;
  overflow: hidden;
  margin: 0;
  border: 1px solid #eceef1;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(18, 22, 30, .045);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.pressly-content-section .pressly-th-slide:hover {
  transform: translateY(-3px);
  border-color: #e4e6ea;
  box-shadow: 0 14px 34px rgba(18, 22, 30, .075);
}

.pressly-content-section .pressly-th-image {
  position: relative;
  display: block;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #f2f3f5;
}

.pressly-content-section .pressly-th-image:after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(12, 14, 18, 0) 58%, rgba(12, 14, 18, .18) 100%);
}

.pressly-content-section .pressly-th-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2,.65,.3,1), filter .35s ease;
}

.pressly-content-section .pressly-th-slide:hover .pressly-th-image img {
  transform: scale(1.04);
  filter: saturate(1.035);
}

.pressly-content-section .pressly-th-category {
  position: absolute;
  z-index: 2;
  left: 14px;
  bottom: 13px;
  display: inline-flex;
  align-items: center;
  min-height: 25px;
  padding: 0 10px;
  border-radius: 999px;
  background: #c83255;
  box-shadow: 0 4px 12px rgba(200,50,85,.22);
  color: #fff;
  font-size: 9px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.pressly-content-section .pressly-th-body {
  padding: 17px 18px 18px;
}

.pressly-content-section .pressly-th-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 9px;
  color: #999da3;
  font-size: 9.5px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: .025em;
  text-transform: uppercase;
}

.pressly-content-section .pressly-th-meta > span:nth-child(2) {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #c83255;
}

.pressly-content-section .pressly-th-body h3 {
  margin: 0 0 9px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.38;
  letter-spacing: -.012em;
}

.pressly-content-section .pressly-th-body h3 a {
  color: #15171b;
  transition: color .2s ease;
}

.pressly-content-section .pressly-th-body h3 a:hover {
  color: #c83255;
}

.pressly-content-section .pressly-th-body > p {
  display: -webkit-box;
  overflow: hidden;
  min-height: 38px;
  margin: 0 0 14px;
  color: #7f8389;
  font-size: 11.5px;
  line-height: 1.58;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.pressly-content-section .pressly-th-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 12px;
  border-top: 1px solid #f0f1f3;
}

.pressly-content-section .pressly-th-author a {
  color: #5f646b;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.pressly-content-section .pressly-th-author i {
  color: #c4c7cc;
  font-size: 11px;
  transition: color .2s ease, transform .2s ease;
}

.pressly-content-section .pressly-th-slide:hover .pressly-th-author i {
  color: #c83255;
  transform: translateX(3px);
}

.pressly-content-section .pressly-th-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 16px;
}

.pressly-content-section .pressly-th-dots {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.pressly-content-section .pressly-th-dots button {
  width: 7px;
  height: 7px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: #d8dbe0;
  cursor: pointer;
  transition: width .25s ease, background-color .25s ease;
}

.pressly-content-section .pressly-th-dots button.is-active {
  width: 25px;
  background: #c83255;
}

.pressly-content-section .pressly-th-dots button:focus-visible {
  outline: 2px solid rgba(200,50,85,.3);
  outline-offset: 3px;
}

.pressly-content-section .pressly-th-view-all {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #22252a;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .055em;
  text-transform: uppercase;
  transition: color .2s ease, gap .2s ease;
}

.pressly-content-section .pressly-th-view-all:hover,
.pressly-content-section .pressly-th-view-all:focus {
  gap: 10px;
  color: #c83255;
}

.pressly-content-section .pressly-ft-news-layout > .col-12 .pressly-ft-news-img {
  aspect-ratio: 16 / 10;
}

@media (max-width: 767px) {
  .pressly-content-section .pressly-tech-health-heading {
    flex-wrap: wrap;
    row-gap: 9px;
  }

  .pressly-content-section .pressly-tech-health-heading .pressly-section-kicker {
    order: 3;
    flex-basis: calc(100% - 86px);
    padding-left: 13px;
  }

  .pressly-content-section .pressly-tech-health-controls {
    margin-left: auto;
  }

  .pressly-content-section .pressly-th-slide {
    flex-basis: 100%;
  }

  .pressly-content-section .pressly-th-body h3 {
    font-size: 15.5px;
  }
}

@media (max-width: 575px) {
  .pressly-content-section .pressly-tech-health-heading .title {
    font-size: 16px;
  }

  .pressly-content-section .pressly-tech-health-controls button {
    width: 31px;
    height: 31px;
  }

  .pressly-content-section .pressly-th-track {
    gap: 14px;
  }

  .pressly-content-section .pressly-th-body {
    padding: 15px 15px 16px;
  }

  .pressly-content-section .pressly-th-bottom {
    margin-top: 13px;
  }
}


/*============================================================
# 17. HOME — ADVERTISEMENT
============================================================*/

/* Advertisement */

.pressly-ad-section {
  padding-top: 18px;
  padding-bottom: 48px;
}

.pressly-ad-banner-wrap {
  max-width: 960px;
  margin: 0 auto;
}

.pressly-ad {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none !important;
  color: #111 !important;
  background: radial-gradient(circle at 12% 18%, rgba(200,50,85,.07), transparent 30%),
		linear-gradient(135deg, #fbfbfc 0%, #ffffff 58%, #fafafa 100%);
  border: 1px solid #e8e9ec;
  box-shadow: 0 14px 36px rgba(16,20,28,.06);
  overflow: hidden;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.pressly-ad:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: #c83255;
}

.pressly-ad:after {
  content: "";
  position: absolute;
  right: -45px;
  bottom: -55px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(200,50,85,.10);
  border-radius: 50%;
  box-shadow: 0 0 0 28px rgba(200,50,85,.025), 0 0 0 58px rgba(200,50,85,.02);
  pointer-events: none;
}

.pressly-ad:hover {
  transform: translateY(-2px);
  border-color: #dedfe3;
  box-shadow: 0 18px 42px rgba(16,20,28,.09);
}

.pressly-ad-label {
  position: absolute;
  top: 12px;
  left: 16px;
  font-size: 9px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 1.7px;
  text-transform: uppercase;
  color: #9a9da4;
}

.pressly-ad-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(200,50,85,.09);
  color: #c83255;
  font-size: 13px;
  flex: 0 0 auto;
}

.pressly-ad-banner {
  min-height: 116px;
  padding: 24px 30px;
  border-radius: 14px;
  justify-content: space-between;
}

.pressly-ad-banner-copy {
  display: flex;
  align-items: center;
  gap: 14px;
}

.pressly-ad-text {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.pressly-ad-text strong,
.pressly-ad-square strong {
  font-family: "Roboto", Arial, sans-serif;
  font-size: 24px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -.6px;
}

.pressly-ad-text small,
.pressly-ad-square small {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .4px;
  color: #989ba2;
}

.pressly-ad-cta {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .7px;
  text-transform: uppercase;
  color: #c83255;
}

.pressly-ad-widget {
  margin-bottom: 36px;
}

.pressly-ad-square {
  width: 100%;
  max-width: 300px;
  min-height: 250px;
  margin: 0 auto;
  border-radius: 14px;
  flex-direction: column;
  gap: 10px;
}

.pressly-ad-square .pressly-ad-icon {
  width: 42px;
  height: 42px;
  font-size: 15px;
  margin-bottom: 2px;
}

.pressly-ad-square strong {
  font-size: 27px;
}

.pressly-ad-square-compact {
  min-height: 230px;
}

@media only screen and (max-width: 991px) {
  .pressly-ad-section {
    padding: 8px 0 38px;
  }

  .pressly-ad-banner {
    min-height: 108px;
  }
}

@media only screen and (max-width: 575px) {
  .pressly-ad-banner {
    min-height: 150px;
    padding: 36px 22px 22px;
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  .pressly-ad-banner-copy {
    flex-direction: column;
    gap: 9px;
  }

  .pressly-ad-label {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
  }

  .pressly-ad-text strong {
    font-size: 22px;
  }
}


/*============================================================
# 18. HOME — LATEST ARTICLES & INSTAGRAM
============================================================*/

/* Latest Articles */

.pressly-feed-section {
  padding: 68px 0 82px;
  background: #fff;
}

.pressly-feed-layout {
  align-items: flex-start;
}

.pressly-feed-heading,
.pressly-instagram-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 26px;
}

.pressly-feed-kicker {
  display: block;
  margin-bottom: 7px;
  color: #c83255;
  font-size: 11px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 1.4px;
  text-transform: uppercase;
}

.pressly-feed-heading h2,
.pressly-instagram-heading h2 {
  margin: 0;
  color: #1b1c1e;
  font-size: 27px;
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -.4px;
  text-transform: none;
}

.pressly-feed-viewall {
  flex: 0 0 auto;
  padding-bottom: 4px;
  color: #1b1c1e;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .4px;
  text-transform: uppercase;
}

.pressly-feed-viewall i {
  margin-left: 6px;
  transition: transform .2s ease;
}

.pressly-feed-viewall:hover {
  color: #c83255;
}

.pressly-feed-viewall:hover i {
  transform: translateX(3px);
}

.pressly-feed-list {
  display: grid;
  gap: 20px;
}

.pressly-feed-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(230px, 34%) minmax(0, 1fr);
  min-height: 220px;
  overflow: hidden;
  background: #fff;
  border: 1px solid #eceef1;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(24, 28, 35, .045);
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.pressly-feed-card:hover {
  transform: translateY(-3px);
  border-color: #e4e6ea;
  box-shadow: 0 17px 40px rgba(24, 28, 35, .085);
}

.pressly-feed-image {
  position: relative;
  display: block;
  min-height: 220px;
  overflow: hidden;
  background: #f4f5f6;
}

.pressly-feed-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(15, 16, 18, .22));
  pointer-events: none;
}

.pressly-feed-image img {
  width: 100%;
  height: 100%;
  min-height: 220px;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2,.65,.2,1);
}

.pressly-feed-card:hover .pressly-feed-image img {
  transform: scale(1.045);
}

.pressly-feed-number {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  color: #fff;
  background: rgba(27, 28, 30, .82);
  border: 2px solid rgba(255,255,255,.85);
  font-size: 11px;
  font-weight: 500;
  backdrop-filter: blur(7px);
}

.pressly-feed-number:before {
  content: "";
  position: absolute;
  inset: -3px;
  border-radius: inherit;
  border-top: 3px solid #c83255;
  transform: rotate(26deg);
}

.pressly-feed-body {
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 25px 28px;
}

.pressly-feed-topline {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  min-height: 16px;
}

.pressly-feed-topline a {
  color: #c83255;
  font-size: 11px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: .35px;
  text-transform: uppercase;
}

.pressly-feed-topline span {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #c6c9ce;
}

.pressly-feed-body h3 {
  margin: 0 0 10px;
  font-size: 21px;
  line-height: 1.22;
  font-weight: 500;
  letter-spacing: -.25px;
}

.pressly-feed-body h3 a {
  color: #1b1c1e;
}

.pressly-feed-card:hover .pressly-feed-body h3 a {
  color: #c83255;
}

.pressly-feed-body > p {
  margin: 0 0 18px;
  color: #6f7379;
  font-size: 14px;
  line-height: 1.65;
}

.pressly-feed-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: auto;
  color: #969ba2;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .2px;
}

.pressly-feed-author {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #62666c;
}

.pressly-feed-author img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  object-fit: cover;
}

.pressly-meta-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c83255;
}

.pressly-feed-read {
  margin-left: auto;
  color: #1b1c1e;
  font-size: 10px;
  font-weight: 500;
}

.pressly-feed-read i {
  margin-left: 5px;
  transition: transform .2s ease;
}

.pressly-feed-read:hover {
  color: #c83255;
}

.pressly-feed-read:hover i {
  transform: translateX(3px);
}

.pressly-feed-extra {
  display: none;
}

.pressly-feed-extra.is-revealed {
  display: grid;
  animation: presslyFeedReveal .45s ease both;
}

@keyframes presslyFeedReveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.pressly-loadmore-wrap {
  display: flex;
  justify-content: center;
  padding-top: 34px;
}

.pressly-loadmore {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-width: 172px;
  min-height: 48px;
  padding: 0 25px;
  border: 1px solid #e3e5e8;
  border-radius: 999px;
  color: #1b1c1e;
  background: #fff;
  box-shadow: 0 8px 22px rgba(25, 28, 33, .05);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .6px;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.pressly-loadmore:hover,
.pressly-loadmore:focus {
  color: #fff;
  background: #c83255;
  border-color: #c83255;
  transform: translateY(-2px);
}

.pressly-loadmore.is-complete {
  color: #8d9197;
  background: #f7f7f8;
  border-color: #eceef0;
  pointer-events: none;
  box-shadow: none;
}

.pressly-loadmore.is-complete i {
  display: none;
}

.pressly-feed-sidebar {
  position: relative;
}

.pressly-instagram-widget {
  padding: 24px;
  margin-bottom: 28px;
  background: #fff;
  border: 1px solid #eceef1;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(24, 28, 35, .045);
}

.pressly-instagram-heading {
  align-items: center;
  margin-bottom: 18px;
}

.pressly-instagram-heading h2 {
  font-size: 24px;
}

.pressly-instagram-heading > a {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  color: #c83255;
  background: #fff3f6;
  font-size: 17px;
}

.pressly-instagram-heading > a:hover {
  color: #fff;
  background: #c83255;
}

/* Instagram Gallery */

.pressly-instagram-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.pressly-instagram-item {
  position: relative;
  aspect-ratio: 1 / 1;
  padding: 0;
  overflow: hidden;
  border: 0;
  border-radius: 10px;
  background: #eef0f2;
  cursor: zoom-in;
}

.pressly-instagram-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease, filter .35s ease;
}

.pressly-instagram-item > span {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fff;
  background: rgba(200, 50, 85, .72);
  font-size: 22px;
  opacity: 0;
  transition: opacity .25s ease;
}

.pressly-instagram-item:hover img {
  transform: scale(1.08);
  filter: saturate(.8);
}

.pressly-instagram-item:hover > span,
.pressly-instagram-item:focus-visible > span {
  opacity: 1;
}

.pressly-instagram-note {
  margin: 14px 0 0;
  color: #969ba2;
  font-size: 11px;
  line-height: 1.5;
}

.pressly-instagram-note i {
  margin-right: 6px;
  color: #c83255;
}

body.pressly-lightbox-open {
  overflow: hidden;
}

/* Instagram Lightbox */

.pressly-lightbox {
  position: fixed;
  inset: 0;
  z-index: 99999;
  display: grid;
  place-items: center;
  padding: 28px;
  visibility: hidden;
  opacity: 0;
  transition: opacity .25s ease, visibility .25s ease;
}

.pressly-lightbox.is-open {
  visibility: visible;
  opacity: 1;
}

.pressly-lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(12, 13, 15, .91);
  backdrop-filter: blur(8px);
}

.pressly-lightbox-dialog {
  position: relative;
  z-index: 2;
  width: min(980px, calc(100vw - 56px));
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) 56px;
  align-items: center;
  gap: 18px;
}

.pressly-lightbox-figure {
  margin: 0;
  min-width: 0;
}

.pressly-lightbox-media {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: min(68vh, 680px);
  overflow: hidden;
  border-radius: 18px;
  background: #101113;
  box-shadow: 0 30px 90px rgba(0,0,0,.42);
}

.pressly-lightbox-media img {
  display: block;
  max-width: 100%;
  max-height: 72vh;
  width: auto;
  height: auto;
  object-fit: contain;
  animation: presslyLightboxImage .25s ease both;
}

@keyframes presslyLightboxImage {
  from {
    opacity: .35;
    transform: scale(.985);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.pressly-lightbox-figure figcaption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding: 13px 4px 0;
  color: #d9dade;
  font-size: 12px;
  letter-spacing: .2px;
}

.pressly-lightbox-counter {
  color: #9da0a6;
}

.pressly-lightbox-counter strong {
  color: #c83255;
}

.pressly-lightbox-nav,
.pressly-lightbox-close {
  display: grid;
  place-items: center;
  border: 1px solid rgba(255,255,255,.16);
  color: #fff;
  background: rgba(255,255,255,.08);
  cursor: pointer;
  transition: background .2s ease, border-color .2s ease, transform .2s ease;
}

.pressly-lightbox-nav {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  font-size: 26px;
}

.pressly-lightbox-nav:hover {
  background: #c83255;
  border-color: #c83255;
  transform: scale(1.05);
}

.pressly-lightbox-close {
  position: absolute;
  top: -58px;
  right: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  font-size: 16px;
}

.pressly-lightbox-close:hover {
  background: #c83255;
  border-color: #c83255;
  transform: rotate(90deg);
}

@media (min-width: 1200px) {
  .pressly-feed-sidebar {
    position: sticky;
    top: 96px;
    align-self: flex-start;
    height: fit-content;
    z-index: 1;
  }

  .pressly-instagram-widget {
    position: static;
    top: auto;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .pressly-feed-sidebar,
  .pressly-instagram-widget {
    position: static;
    top: auto;
  }
}

@media (max-width: 1199px) {
  .pressly-feed-card {
    grid-template-columns: minmax(210px, 36%) minmax(0, 1fr);
  }

  .pressly-feed-body {
    padding: 22px;
  }

  .pressly-feed-body h3 {
    font-size: 19px;
  }

  .pressly-feed-read {
    display: none;
  }
}

@media (max-width: 991px) {
  .pressly-feed-section {
    padding: 54px 0 68px;
  }

  .pressly-feed-sidebar {
    margin-top: 46px;
  }

  .pressly-instagram-widget {
    position: static;
  }

  .pressly-instagram-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .pressly-feed-section {
    padding: 42px 0 56px;
  }

  .pressly-feed-heading {
    align-items: flex-start;
  }

  .pressly-feed-heading h2 {
    font-size: 24px;
  }

  .pressly-feed-viewall {
    display: none;
  }

  .pressly-feed-card,
  .pressly-feed-extra.is-revealed {
    grid-template-columns: 1fr;
  }

  .pressly-feed-image,
  .pressly-feed-image img {
    min-height: 220px;
    height: 220px;
  }

  .pressly-feed-body {
    padding: 20px;
  }

  .pressly-feed-body h3 {
    font-size: 19px;
  }

  .pressly-feed-body > p {
    font-size: 13px;
  }

  .pressly-feed-meta {
    flex-wrap: wrap;
  }

  .pressly-feed-read {
    display: none;
  }

  .pressly-instagram-widget {
    padding: 18px;
  }

  .pressly-instagram-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .pressly-lightbox {
    padding: 16px;
  }

  .pressly-lightbox-dialog {
    width: calc(100vw - 32px);
    grid-template-columns: 1fr;
    gap: 0;
  }

  .pressly-lightbox-media {
    min-height: 55vh;
    border-radius: 14px;
  }

  .pressly-lightbox-nav {
    position: absolute;
    z-index: 3;
    top: 50%;
    width: 44px;
    height: 44px;
    transform: translateY(-50%);
    background: rgba(12,13,15,.65);
  }

  .pressly-lightbox-nav:hover {
    transform: translateY(-50%) scale(1.04);
  }

  .pressly-lightbox-prev {
    left: 10px;
  }

  .pressly-lightbox-next {
    right: 10px;
  }

  .pressly-lightbox-close {
    top: -52px;
    right: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pressly-feed-card,
  .pressly-feed-image img,
  .pressly-lightbox,
  .pressly-lightbox-media img {
    transition: none !important;
    animation: none !important;
  }
}


/*============================================================
# 19. SIDEBAR WIDGETS
============================================================*/

.pressly-content-section .pressly-side-card {
  position: relative;
  overflow: hidden;
  padding: 24px;
  margin-bottom: 30px;
  background: #fff;
  border: 1px solid #eceef1;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(24, 28, 35, .045);
}

.pressly-side-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 20px;
}

.pressly-side-kicker {
  display: block;
  margin-bottom: 6px;
  color: #c83255;
  font-size: 10px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 1.25px;
  text-transform: uppercase;
}

.pressly-side-head h2,
.pressly-newsletter-panel h2 {
  margin: 0;
  color: #1b1c1e;
  font-size: 22px;
  line-height: 1.15;
  font-weight: 500;
  letter-spacing: -.3px;
  text-transform: none;
}

.pressly-side-dot {
  width: 9px;
  height: 9px;
  margin-bottom: 5px;
  border-radius: 50%;
  background: #c83255;
  box-shadow: 0 0 0 6px #fff0f4;
}

.pressly-side-viewall {
  flex: 0 0 auto;
  padding-bottom: 2px;
  color: #8c9198;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .35px;
  text-transform: uppercase;
}

.pressly-side-viewall:hover {
  color: #c83255;
}

.pressly-side-viewall i {
  margin-left: 4px;
}

.pressly-social-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.pressly-social-item {
  position: relative;
  display: grid;
  grid-template-columns: 38px minmax(0,1fr) 14px;
  align-items: center;
  gap: 10px;
  min-height: 72px;
  padding: 12px;
  overflow: hidden;
  color: #1b1c1e;
  background: #f8f9fa;
  border: 1px solid #eef0f2;
  border-radius: 14px;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease, background .22s ease;
}

.pressly-social-item:before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: #c83255;
  opacity: .85;
}

.pressly-social-item:hover {
  color: #1b1c1e;
  background: #fff;
  border-color: #e4e6e9;
  box-shadow: 0 10px 24px rgba(24,28,35,.07);
  transform: translateY(-2px);
}

.pressly-social-icon {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  color: #fff;
  background: #1b1c1e;
  font-size: 15px;
}

.pressly-social-copy {
  min-width: 0;
}

.pressly-social-copy strong,
.pressly-social-copy small {
  display: block;
}

.pressly-social-copy strong {
  margin-bottom: 2px;
  color: #1b1c1e;
  font-size: 14px;
  line-height: 1.1;
  font-weight: 500;
}

.pressly-social-copy small {
  overflow: hidden;
  color: #90959c;
  font-size: 9px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: .2px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pressly-social-arrow {
  color: #c2c5ca;
  font-size: 14px;
  transition: transform .2s ease, color .2s ease;
}

.pressly-social-item:hover .pressly-social-arrow {
  color: #c83255;
  transform: translateX(2px);
}

.pressly-social-facebook .pressly-social-icon {
  background: #315ea8;
}

.pressly-social-twitter .pressly-social-icon {
  background: #1b1c1e;
}

.pressly-social-instagram .pressly-social-icon {
  background: linear-gradient(135deg,#833ab4,#fd1d1d,#fcb045);
}

.pressly-social-youtube .pressly-social-icon {
  background: #ff0033;
}

/* Newsletter */

.pressly-newsletter-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 29px 26px 25px;
  margin-bottom: 30px;
  background: linear-gradient(145deg, #fff8fa 0%, #fff 68%);
  border: 1px solid #f4dfe5;
  border-top: 3px solid #c83255;
  border-radius: 18px;
  box-shadow: 0 12px 32px rgba(200,50,85,.065);
}

.pressly-newsletter-panel:after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -72px;
  bottom: -78px;
  width: 190px;
  height: 190px;
  border: 1px solid rgba(200,50,85,.09);
  border-radius: 50%;
  box-shadow: 0 0 0 30px rgba(200,50,85,.028), 0 0 0 62px rgba(200,50,85,.018);
}

.pressly-newsletter-orb {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 20px;
  border-radius: 50%;
  color: #c83255;
  background: #ffe7ed;
  font-size: 15px;
}

.pressly-newsletter-panel h2 {
  max-width: 250px;
  font-size: 25px;
}

.pressly-newsletter-panel > p {
  max-width: 310px;
  margin: 12px 0 20px;
  color: #747980;
  font-size: 13px;
  line-height: 1.65;
}

.pressly-newsletter-form {
  position: relative;
  z-index: 2;
}

.pressly-newsletter-field {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 47px;
  margin-bottom: 10px;
  padding: 0 14px;
  background: #fff;
  border: 1px solid #e9e9ec;
  border-radius: 12px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.pressly-newsletter-field:focus-within {
  border-color: rgba(200,50,85,.55);
  box-shadow: 0 0 0 3px rgba(200,50,85,.08);
}

.pressly-newsletter-field > i {
  margin-right: 10px;
  color: #b3b6bb;
}

.pressly-newsletter-field input {
  width: 100%;
  padding: 0;
  border: 0;
  outline: 0;
  color: #1b1c1e;
  background: transparent;
  font-size: 13px;
}

.pressly-newsletter-field input::placeholder {
  color: #a8acb2;
}

.pressly-newsletter-form button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  width: 100%;
  min-height: 47px;
  padding: 0 18px;
  border: 0;
  border-radius: 12px;
  color: #fff;
  background: #1b1c1e;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .65px;
  text-transform: uppercase;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease, box-shadow .2s ease;
}

.pressly-newsletter-form button:hover,
.pressly-newsletter-form button:focus {
  background: #c83255;
  transform: translateY(-1px);
  box-shadow: 0 9px 22px rgba(200,50,85,.18);
}

.pressly-newsletter-form button i {
  transition: transform .2s ease;
}

.pressly-newsletter-form button:hover i {
  transform: translateX(3px);
}

.pressly-newsletter-note {
  display: block;
  margin-top: 12px;
  color: #a0a4aa;
  font-size: 9px;
  line-height: 1.4;
}

.pressly-newsletter-note i {
  margin-right: 5px;
  color: #c83255;
}

.pressly-popular-head {
  align-items: center;
}

.pressly-popular-list {
  display: grid;
}

.pressly-popular-item {
  display: grid;
  grid-template-columns: 92px minmax(0, 1fr);
  gap: 14px;
  padding: 15px 0;
  border-top: 1px solid #eef0f2;
}

.pressly-popular-item:first-child {
  padding-top: 0;
  border-top: 0;
}

.pressly-popular-item:last-child {
  padding-bottom: 0;
}

.pressly-popular-img {
  position: relative;
  display: block;
  height: 78px;
  overflow: hidden;
  border-radius: 11px;
  background: #eef0f2;
}

.pressly-popular-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .45s ease;
}

.pressly-popular-item:hover .pressly-popular-img img {
  transform: scale(1.06);
}

.pressly-popular-img > span {
  position: absolute;
  left: 7px;
  bottom: 7px;
  display: grid;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  color: #fff;
  background: #c83255;
  border: 2px solid rgba(255,255,255,.9);
  font-size: 8px;
  font-weight: 500;
  box-shadow: 0 3px 10px rgba(0,0,0,.12);
}

.pressly-popular-copy {
  align-self: center;
  min-width: 0;
}

.pressly-popular-meta {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 5px;
  font-size: 9px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: .25px;
  text-transform: uppercase;
}

.pressly-popular-meta a {
  color: #c83255;
}

.pressly-popular-meta time {
  color: #a2a6ac;
}

.pressly-popular-meta time:before {
  content: "";
  display: inline-block;
  width: 3px;
  height: 3px;
  margin: 0 7px 2px 0;
  border-radius: 50%;
  background: #c5c8cc;
}

.pressly-popular-copy h3 {
  margin: 0;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
  letter-spacing: -.1px;
}

.pressly-popular-copy h3 a {
  color: #1b1c1e;
}

.pressly-popular-item:hover .pressly-popular-copy h3 a {
  color: #c83255;
}

@media (max-width: 1199px) {
  .pressly-content-section .pressly-side-card {
    padding: 20px;
  }

  .pressly-social-grid {
    grid-template-columns: 1fr;
  }

  .pressly-social-item {
    min-height: 64px;
  }

  .pressly-popular-item {
    grid-template-columns: 80px minmax(0,1fr);
  }

  .pressly-popular-img {
    height: 70px;
  }
}

@media (max-width: 991px) {
  .pressly-social-grid {
    grid-template-columns: repeat(2, minmax(0,1fr));
  }

  .pressly-newsletter-panel {
    padding: 26px;
  }
}

@media (max-width: 575px) {
  .pressly-social-grid {
    grid-template-columns: 1fr;
  }

  .pressly-side-head {
    align-items: center;
  }

  .pressly-content-section .pressly-side-card,
  .pressly-newsletter-panel {
    border-radius: 15px;
  }
}


/*============================================================
# 20. FOOTER & BACK TO TOP
============================================================*/

/* Footer */

.pressly-footer {
  position: relative;
  margin-top: 76px !important;
  padding: 0 !important;
  overflow: hidden;
  color: #9da0a7 !important;
  background: radial-gradient(circle at 88% 8%, rgba(200,50,85,.12), transparent 28%),
    #151619 !important;
  border-top: 1px solid rgba(255,255,255,.06);
}

.pressly-footer:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent 0%, #c83255 30%, #c83255 70%, transparent 100%);
  opacity: .9;
}

.pressly-footer .container {
  position: relative;
  z-index: 1;
}

.pressly-footer-top {
  display: grid;
  grid-template-columns: minmax(210px, .75fr) minmax(520px, 1.7fr);
  align-items: center;
  gap: 72px;
  padding: 54px 0 45px;
  border-bottom: 1px solid rgba(255,255,255,.085);
}

.pressly-footer-brand {
  display: inline-flex;
  width: max-content;
  flex-direction: column;
  color: #fff !important;
  text-decoration: none !important;
}

.pressly-footer-brand-main {
  display: block;
  color: #fff;
  font-size: 46px;
  font-weight: 500;
  line-height: .9;
  letter-spacing: -2.8px;
}

.pressly-footer-brand-main span,
.pressly-footer-brand-main b {
  color: #c83255;
}

.pressly-footer-brand-main b {
  font-style: normal;
}

.pressly-footer-brand small {
  margin-top: 10px;
  color: #757982;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: 4px;
}

.pressly-footer-newsletter {
  display: grid;
  grid-template-columns: 110px minmax(220px, 1fr) minmax(300px, .95fr);
  align-items: center;
  gap: 25px;
}

.pressly-footer-kicker {
  color: #c83255;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.7px;
}

.pressly-footer-newsletter-copy h3 {
  margin: 0 0 5px;
  color: #fff;
  font-size: 19px;
  line-height: 1.3;
}

.pressly-footer-newsletter-copy p {
  margin: 0;
  color: #80838a;
  font-size: 12px;
  line-height: 1.65;
}

.pressly-footer-form {
  display: flex;
  min-width: 0;
  height: 50px;
  padding: 5px;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 12px;
  transition: border-color .2s ease, background .2s ease;
}

.pressly-footer-form:focus-within {
  background: rgba(255,255,255,.075);
  border-color: rgba(200,50,85,.65);
}

.pressly-footer-form input {
  min-width: 0;
  flex: 1;
  padding: 0 13px;
  color: #fff;
  background: transparent;
  border: 0;
  outline: 0;
  font-size: 13px;
}

.pressly-footer-form input::placeholder {
  color: #6f7278;
}

.pressly-footer-form button {
  padding: 0 17px;
  color: #fff;
  background: #c83255;
  border: 0;
  border-radius: 8px;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .45px;
  transition: transform .2s ease, background .2s ease;
}

.pressly-footer-form button:hover {
  background: #f25374;
  transform: translateY(-1px);
}

.pressly-footer-form button i {
  margin-left: 7px;
}

.pressly-footer-grid {
  display: grid;
  grid-template-columns: 1.45fr .7fr .7fr 1.15fr;
  gap: 58px;
  padding: 49px 0 45px;
}

.pressly-footer-grid h4 {
  margin: 0 0 21px;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1.25px;
}

.pressly-footer-about > h4 {
  max-width: 280px;
  margin-bottom: 12px;
  font-size: 22px;
  line-height: 1.3;
  text-transform: none;
  letter-spacing: -.25px;
}

.pressly-footer-about > p {
  max-width: 380px;
  margin: 0 0 23px;
  color: #858890;
  font-size: 13px;
  line-height: 1.8;
}

.pressly-footer-social {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pressly-footer-social li {
  display: inline-block;
  margin-right: 7px;
}

.pressly-footer-social a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  color: #d4d5d8 !important;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 50%;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.pressly-footer-social a:hover {
  color: #fff !important;
  background: #c83255;
  border-color: #c83255;
  transform: translateY(-3px);
}

.pressly-footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.pressly-footer-column a {
  position: relative;
  margin-bottom: 11px;
  color: #8f9299 !important;
  font-size: 13px;
  text-decoration: none !important;
  transition: color .2s ease, transform .2s ease;
}

.pressly-footer-column a:hover {
  color: #fff !important;
  transform: translateX(4px);
}

.pressly-footer-column a:before {
  content: "";
  position: absolute;
  left: -12px;
  top: 50%;
  width: 4px;
  height: 4px;
  opacity: 0;
  background: #c83255;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: opacity .2s ease;
}

.pressly-footer-column a:hover:before {
  opacity: 1;
}

.pressly-footer-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.pressly-footer-tags a {
  padding: 8px 11px;
  color: #a2a5ab !important;
  background: rgba(255,255,255,.045);
  border: 1px solid rgba(255,255,255,.075);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 500;
  text-decoration: none !important;
  transition: color .2s ease, border-color .2s ease, background .2s ease;
}

.pressly-footer-tags a:hover {
  color: #fff !important;
  background: rgba(200,50,85,.12);
  border-color: rgba(200,50,85,.45);
}

.pressly-footer-note {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,.07);
}

.pressly-footer-note > i {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  color: #c83255;
  background: rgba(200,50,85,.09);
  border-radius: 50%;
}

.pressly-footer-note div {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.pressly-footer-note span {
  color: #74777e;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .8px;
}

.pressly-footer-note a {
  color: #d3d4d7 !important;
  font-size: 12px;
  text-decoration: none !important;
}

.pressly-footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 22px 0 28px;
  border-top: 1px solid rgba(255,255,255,.085);
}

.pressly-footer-bottom p {
  margin: 0;
  color: #686b72;
  font-size: 10px;
  line-height: 1.6;
}

.pressly-footer-bottom p a {
  color: #83868d !important;
}

.pressly-footer-bottom p a:hover {
  color: #c83255 !important;
}

.pressly-footer-legal {
  display: flex;
  gap: 20px;
  white-space: nowrap;
}

.pressly-footer-legal a {
  color: #777a81 !important;
  font-size: 10px;
  text-decoration: none !important;
}

.pressly-footer-legal a:hover {
  color: #fff !important;
}

/* Back To Top */

.pressly-back-to-top {
  --scroll-progress: 0deg;
  position: fixed;
  right: 26px;
  bottom: 26px;
  z-index: 1035;
  width: 50px;
  height: 50px;
  padding: 2px;
  opacity: 0;
  visibility: hidden;
  border: 0;
  border-radius: 50%;
  background: conic-gradient(#c83255 var(--scroll-progress), rgba(20,21,24,.14) 0deg);
  box-shadow: 0 12px 30px rgba(16,17,20,.18);
  transform: translateY(12px);
  transition: opacity .25s ease, visibility .25s ease, transform .25s ease;
}

.pressly-back-to-top span {
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  color: #fff;
  background: #17181b;
  border-radius: 50%;
  font-size: 18px;
  transition: background .2s ease, transform .2s ease;
}

.pressly-back-to-top:hover span {
  background: #c83255;
  transform: scale(.94);
}

.pressly-back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.pressly-back-to-top:focus-visible {
  outline: 3px solid rgba(200,50,85,.3);
  outline-offset: 3px;
}

@media (max-width: 1199px) {
  .pressly-footer-top {
    grid-template-columns: .65fr 1.6fr;
    gap: 42px;
  }

  .pressly-footer-newsletter {
    grid-template-columns: 1fr 1.2fr;
  }

  .pressly-footer-kicker {
    display: none;
  }

  .pressly-footer-grid {
    gap: 35px;
  }
}

@media (max-width: 991px) {
  .pressly-footer {
    margin-top: 60px !important;
  }

  .pressly-footer-top {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 45px 0 38px;
  }

  .pressly-footer-newsletter {
    grid-template-columns: 1fr 1.1fr;
  }

  .pressly-footer-grid {
    grid-template-columns: 1.3fr .8fr .8fr;
  }

  .pressly-footer-topics {
    grid-column: 1 / -1;
  }

  .pressly-footer-tags {
    max-width: 620px;
  }
}

@media (max-width: 767px) {
  .pressly-footer-top {
    padding-top: 38px;
  }

  .pressly-footer-brand-main {
    font-size: 40px;
  }

  .pressly-footer-newsletter {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .pressly-footer-form {
    max-width: 520px;
  }

  .pressly-footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 28px;
    padding: 38px 0;
  }

  .pressly-footer-about {
    grid-column: 1 / -1;
  }

  .pressly-footer-topics {
    grid-column: 1 / -1;
  }

  .pressly-footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .pressly-footer-legal {
    gap: 15px;
  }

  .pressly-back-to-top {
    right: 17px;
    bottom: 17px;
    width: 46px;
    height: 46px;
  }
}

@media (max-width: 479px) {
  .pressly-footer-grid {
    grid-template-columns: 1fr;
  }

  .pressly-footer-about, .pressly-footer-topics {
    grid-column: auto;
  }

  .pressly-footer-form {
    height: auto;
    flex-direction: column;
    padding: 6px;
  }

  .pressly-footer-form input {
    height: 44px;
  }

  .pressly-footer-form button {
    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pressly-back-to-top, .pressly-back-to-top span,
  .pressly-footer-social a, .pressly-footer-column a {
    transition: none !important;
  }
}


/*============================================================
# 21. THEME & TYPOGRAPHY
============================================================*/

@media only screen and (min-width: 992px) {
  #nav-bottom,
  #nav-bottom > .container,
  .nav-menu,
  .nav-menu > li > a {
    min-height: 60px;
  }

  .nav-menu > li > a {
    padding-left: 16px;
    padding-right: 16px;
    font-weight: 400;
    letter-spacing: .4px;
  }

  .nav-menu > li > a:before {
    left: 16px;
    right: 16px;
  }

  #nav-bottom.is-sticky,
  #nav-bottom.is-sticky > .container,
  #nav-bottom.is-sticky .nav-menu,
  #nav-bottom.is-sticky .nav-menu > li > a {
    min-height: 56px;
  }
}

:root {
  --pressly-accent: #c83255;
  --pressly-accent-hover: #b52b49;
  --pressly-font: "Roboto", Arial, sans-serif;
}

html,
body,
input,
textarea,
select,
button {
  font-family: var(--pressly-font);
}

body {
  font-weight: 400;
  letter-spacing: 0;
}

h1, h2, h3, h4, h5, h6,
.post-title,
.pressly-slide-title,
.pressly-wordmark,
.pressly-wordmark-main,
.pressly-footer-brand-main {
  font-family: var(--pressly-font);
}

.nav-menu > li > a {
  font-family: var(--pressly-font);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.nav-aside-menu > li > a {
  font-family: var(--pressly-font);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.dropdown .dropdown-list li a,
.nav-aside-menu li.has-dropdown > .dropdown a {
  font-family: var(--pressly-font);
  font-weight: 500;
}

p,
.input,
.pressly-slide-excerpt,
.pressly-search-field input,
.pressly-newsletter-form input,
.pressly-footer-form input {
  font-family: var(--pressly-font);
  font-weight: 400;
}

.pressly-search-submit:hover,
.pressly-search-submit:focus,
.pressly-slide-category:hover,
.pressly-slide-category:focus {
  background: var(--pressly-accent-hover);
}

body,
p,
li,
input,
textarea,
select {
  font-weight: 400;
}

h1, h2, h3, h4, h5, h6,
strong, b,
button,
label,
.post-title,
.post-category,
.section-title,
.nav-menu > li > a,
.nav-aside-menu > li > a,
.dropdown .dropdown-list li a,
.nav-aside-menu li.has-dropdown > .dropdown a,
[class^="pressly-"],
[class*=" pressly-"] {
  font-weight: 500;
}

.nav-menu > li > a,
.nav-aside-menu > li > a {
  font-weight: 400;
}

:root {
  --pressly-font: "Roboto", Arial, sans-serif;
}

html,
body,
input,
textarea,
select,
button,
.nav-menu,
.nav-aside-menu,
.dropdown,
.post,
.widget,
.pressly-footer {
  font-family: var(--pressly-font) !important;
}

body {
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

p,
li,
input,
textarea,
select,
.post-meta,
.pressly-slide-meta,
.pressly-footer-copy,
.pressly-newsletter-copy,
.pressly-popular-meta,
.pressly-story-meta {
  font-weight: 400 !important;
}

h1, h2, h3, h4, h5, h6,
.post-title,
.post-title a,
.section-title,
.widget-title,
.pressly-slide-title,
.pressly-slide-title a,
.pressly-popular-title,
.pressly-popular-title a,
.pressly-story-title,
.pressly-story-title a,
.pressly-deck-title,
.pressly-deck-title a,
.pressly-footer-heading {
  font-family: var(--pressly-font) !important;
  font-weight: 500 !important;
  letter-spacing: 0 !important;
}

.post-category,
.post-category a,
.pressly-slide-category,
.pressly-deck-category,
.pressly-popular-category,
.pressly-story-category,
.pressly-footer-kicker,
.pressly-newsletter-kicker,
.pressly-section-kicker,
[class*="category"],
[class*="kicker"] {
  font-family: var(--pressly-font) !important;
  font-weight: 500 !important;
  letter-spacing: .02em;
}

.nav-menu > li > a,
.nav-aside-menu > li > a,
.dropdown .dropdown-list li a,
.nav-aside-menu li.has-dropdown > .dropdown a,
.pressly-mobile-menu a {
  font-family: var(--pressly-font) !important;
  font-weight: 400 !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}

button,
.btn,
.pressly-search-submit,
.pressly-newsletter-submit,
.pressly-footer-submit,
.pressly-load-more,
.pressly-view-all,
label {
  font-family: var(--pressly-font) !important;
  font-weight: 500 !important;
}

strong,
b {
  font-weight: 500 !important;
}

.post-title,
.pressly-popular-title,
.pressly-story-title,
.pressly-deck-title {
  line-height: 1.32;
}

.pressly-wordmark,
.pressly-wordmark-main,
.pressly-footer-brand-main {
  font-family: var(--pressly-font) !important;
  font-weight: 500 !important;
  letter-spacing: -.025em;
}


/*============================================================
# 22. ARTICLE PAGE
============================================================*/

.pressly-article-page {
  --article-ink: #17191c;
  --article-muted: #767b82;
  --article-line: #e9ebee;
  --article-soft: #f7f8f9;
  --article-accent-soft: #fbf0f3;
}

.pressly-reading-progress {
  position: fixed;
  z-index: 1400;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  pointer-events: none;
  background: transparent;
}

.pressly-reading-progress span {
  display: block;
  width: 0;
  height: 100%;
  background: var(--pressly-accent);
  transition: width .08s linear;
}

/* Article Header */

.pressly-article-hero {
  padding: 52px 0 0;
  background: #fff;
}

.pressly-article-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 34px;
  color: #9aa0a7;
  font-size: 11px;
  line-height: 1;
}

.pressly-article-breadcrumb a {
  color: #777d84;
}

.pressly-article-breadcrumb a:hover {
  color: var(--pressly-accent);
}

.pressly-article-breadcrumb i {
  color: #c9ccd0;
  font-size: 10px;
}

.pressly-article-hero-copy {
  max-width: 930px;
  margin: 0 auto 38px;
  text-align: center;
}

.pressly-article-eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 18px;
}

.pressly-article-eyebrow a {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 12px;
  border-radius: 999px;
  color: #fff;
  background: var(--pressly-accent);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .35px;
  text-transform: uppercase;
}

.pressly-article-eyebrow span {
  color: #8d9298;
  font-size: 11px;
}

.pressly-article-eyebrow span i {
  margin-right: 5px;
  color: var(--pressly-accent);
}

.pressly-article-hero h1 {
  max-width: 900px;
  margin: 0 auto;
  color: var(--article-ink);
  font-size: clamp(40px, 4.25vw, 64px);
  line-height: 1.08;
  font-weight: 500 !important;
  letter-spacing: -.035em !important;
}

.pressly-article-byline {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  margin-top: 28px;
}

.pressly-article-author {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

.pressly-article-author img {
  width: 42px;
  height: 42px;
  object-fit: cover;
  border-radius: 50%;
}

.pressly-article-author span {
  display: grid;
  gap: 1px;
}

.pressly-article-author small {
  color: #a0a4aa;
  font-size: 9px;
  line-height: 1.2;
  letter-spacing: .35px;
  text-transform: uppercase;
}

.pressly-article-author strong {
  color: #25272a;
  font-size: 12px;
  font-weight: 500 !important;
}

.pressly-article-meta {
  display: flex;
  align-items: center;
  gap: 18px;
  padding-left: 26px;
  border-left: 1px solid #e6e8eb;
}

.pressly-article-meta span {
  color: #8e9399;
  font-size: 10px;
  white-space: nowrap;
}

.pressly-article-meta i {
  margin-right: 5px;
  color: #b1b5ba;
}

.pressly-article-cover {
  position: relative;
  max-width: 1320px;
  margin: 0 auto;
  overflow: hidden;
  border-radius: 22px;
  background: #e8eaec;
  box-shadow: 0 24px 60px rgba(24,28,35,.09);
}

.pressly-article-cover > img {
  display: block;
  width: 100%;
  height: 610px;
  object-fit: cover;
  object-position: center 40%;
}

.pressly-article-cover:after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 24%;
  background: linear-gradient(to top, rgba(8,10,12,.45), transparent);
  pointer-events: none;
}

.pressly-article-cover figcaption {
  position: absolute;
  z-index: 2;
  left: 24px;
  bottom: 20px;
  margin: 0;
  color: rgba(255,255,255,.86);
  font-size: 10px;
}

.pressly-article-cover figcaption span {
  margin-right: 8px;
  color: #fff;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .5px;
}

/* Article Content */

.pressly-article-section {
  padding: 78px 0 90px;
  background: #fff;
}

.pressly-article-grid {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  gap: 30px;
}

.pressly-article-share-rail {
  position: sticky;
  top: 95px;
  align-self: start;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
  padding-top: 8px;
}

.pressly-article-share-rail > span {
  margin-bottom: 3px;
  color: #a1a5ab;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: .8px;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  transform: rotate(180deg);
}

.pressly-article-share-rail a,
.pressly-article-share-rail button {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  padding: 0;
  border: 1px solid #e6e8eb;
  border-radius: 50%;
  color: #676c73;
  background: #fff;
  font-size: 12px;
  cursor: pointer;
  transition: color .2s ease, border-color .2s ease, background .2s ease, transform .2s ease;
}

.pressly-article-share-rail a:hover,
.pressly-article-share-rail button:hover,
.pressly-article-share-rail button.is-copied {
  color: #fff;
  border-color: var(--pressly-accent);
  background: var(--pressly-accent);
  transform: translateY(-2px);
}

.pressly-article-content {
  max-width: 750px;
  color: #4e5359;
}

.pressly-article-content > p {
  margin: 0 0 24px;
  color: #50555b;
  font-size: 16px;
  line-height: 1.92;
}

.pressly-article-content > .pressly-article-lead {
  margin-bottom: 30px;
  color: #292c30;
  font-size: 20px;
  line-height: 1.7;
}

.pressly-article-content > .pressly-article-lead:first-letter {
  float: left;
  margin: 8px 10px 0 0;
  color: var(--pressly-accent);
  font-size: 58px;
  line-height: .72;
  font-weight: 500;
}

.pressly-article-content h2 {
  margin: 46px 0 18px;
  color: var(--article-ink);
  font-size: 29px;
  line-height: 1.25;
  font-weight: 500 !important;
}

.pressly-article-media {
  margin: 36px 0;
}

.pressly-article-media img {
  display: block;
  width: 100%;
  border-radius: 16px;
}

.pressly-article-media figcaption {
  margin-top: 10px;
  color: #9a9fa5;
  font-size: 10px;
  line-height: 1.5;
}

.pressly-article-media-split {
  width: 48%;
  margin: 9px 0 26px 30px;
  float: right;
}

.pressly-article-media-wide {
  clear: both;
}

.pressly-article-note {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 15px;
  margin: 34px 0;
  padding: 20px 22px;
  border: 1px solid #f0dce2;
  border-radius: 14px;
  background: #fff8fa;
}

.pressly-article-note-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--pressly-accent);
  background: #ffe7ed;
  font-size: 15px;
}

.pressly-article-note small {
  display: block;
  margin-bottom: 5px;
  color: var(--pressly-accent);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .7px;
  text-transform: uppercase;
}

.pressly-article-note p {
  margin: 0;
  color: #4d5157;
  font-size: 14px;
  line-height: 1.65;
}

.pressly-article-quote {
  position: relative;
  margin: 42px 0;
  padding: 34px 34px 30px 42px;
  border: 0;
  border-left: 3px solid var(--pressly-accent);
  border-radius: 0 16px 16px 0;
  background: #f8f9fa;
}

.pressly-article-quote:before {
  content: "“";
  position: absolute;
  top: 6px;
  right: 28px;
  color: #eceef0;
  font-family: Georgia, serif;
  font-size: 92px;
  line-height: 1;
}

.pressly-article-quote p {
  position: relative;
  z-index: 1;
  margin: 0 0 15px;
  color: #23262a;
  font-size: 22px;
  line-height: 1.55;
}

.pressly-article-quote footer {
  color: #73787e;
  font-size: 11px;
  font-weight: 500;
}

.pressly-article-quote footer span {
  color: #a1a5aa;
  font-weight: 400;
}

.pressly-article-end {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 48px;
  padding-top: 24px;
  border-top: 1px solid var(--article-line);
  clear: both;
}

.pressly-article-tags {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}

.pressly-article-tags > span,
.pressly-article-end-share > span {
  margin-right: 4px;
  color: #9a9fa5;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .55px;
  text-transform: uppercase;
}

.pressly-article-tags a {
  padding: 7px 11px;
  color: #676c72;
  background: #f6f7f8;
  border: 1px solid #eceef0;
  border-radius: 999px;
  font-size: 10px;
}

.pressly-article-tags a:hover {
  color: var(--pressly-accent);
  border-color: #f0cbd4;
  background: #fff8fa;
}

.pressly-article-end-share {
  display: flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
}

.pressly-article-end-share a {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  color: #70757b;
  background: #f6f7f8;
  font-size: 11px;
}

.pressly-article-end-share a:hover {
  color: #fff;
  background: var(--pressly-accent);
}

/* Article Sidebar */

.pressly-article-sidebar {
  padding-left: 38px;
}

.pressly-article-sidebar-inner {
  position: sticky;
  top: 88px;
}

.pressly-article-page .pressly-content-section .pressly-ad-widget {
  margin-bottom: 30px;
}

.pressly-post-pagination {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 66px 0 30px 84px;
}

.pressly-post-pagination-item {
  display: grid;
  grid-template-columns: 86px minmax(0,1fr);
  align-items: center;
  gap: 15px;
  min-height: 112px;
  padding: 12px;
  border: 1px solid #e9ebee;
  border-radius: 16px;
  color: #202327;
  background: #fff;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.pressly-post-pagination-next {
  grid-template-columns: minmax(0,1fr) 86px;
  text-align: right;
}

.pressly-post-pagination-item:hover {
  color: #202327;
  border-color: #e1e3e7;
  box-shadow: 0 12px 28px rgba(24,28,35,.06);
  transform: translateY(-2px);
}

.pressly-post-pagination-item img {
  width: 86px;
  height: 86px;
  object-fit: cover;
  border-radius: 11px;
}

.pressly-post-pagination-item span {
  display: grid;
  gap: 6px;
  min-width: 0;
}

.pressly-post-pagination-item small {
  color: #a0a4aa;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .35px;
  text-transform: uppercase;
}

.pressly-post-pagination-item small i {
  color: var(--pressly-accent);
}

.pressly-post-pagination-item strong {
  color: #24272b;
  font-size: 13px;
  line-height: 1.4;
  font-weight: 500 !important;
}

.pressly-author-card {
  display: grid;
  grid-template-columns: 110px minmax(0,1fr);
  gap: 24px;
  margin: 30px 0 72px 84px;
  padding: 28px;
  border: 1px solid #e8eaed;
  border-radius: 18px;
  background: linear-gradient(145deg,#fff 0%,#fafbfb 100%);
}

.pressly-author-avatar img {
  width: 110px;
  height: 110px;
  object-fit: cover;
  border-radius: 50%;
}

.pressly-author-copy h2 {
  margin: 0 0 8px;
  font-size: 22px;
}

.pressly-author-copy h2 a {
  color: #1d2024;
}

.pressly-author-copy > p {
  margin: 0;
  color: #74797f;
  font-size: 13px;
  line-height: 1.7;
}

.pressly-author-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 16px;
}

.pressly-author-more {
  color: var(--pressly-accent);
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .45px;
}

.pressly-author-social {
  display: flex;
  gap: 6px;
}

.pressly-author-social a {
  display: grid;
  place-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  color: #74797f;
  background: #f0f2f3;
  font-size: 10px;
}

.pressly-author-social a:hover {
  color: #fff;
  background: var(--pressly-accent);
}

.pressly-related,
.pressly-comments,
.pressly-reply {
  margin-left: 84px;
}

/* Related Stories */

.pressly-related {
  margin-bottom: 72px;
}

.pressly-article-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e9ebee;
}

.pressly-article-section-head h2 {
  margin: 0;
  color: #1d2024;
  font-size: 25px;
}

.pressly-article-section-head > a {
  color: #8e9399;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .4px;
  text-transform: uppercase;
}

.pressly-article-section-head > a:hover {
  color: var(--pressly-accent);
}

.pressly-related-card {
  height: 100%;
}

.pressly-related-img {
  display: block;
  height: 160px;
  margin-bottom: 15px;
  overflow: hidden;
  border-radius: 13px;
  background: #eceef0;
}

.pressly-related-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .4s ease;
}

.pressly-related-card:hover .pressly-related-img img {
  transform: scale(1.045);
}

.pressly-related-category {
  color: var(--pressly-accent);
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .35px;
  text-transform: uppercase;
}

.pressly-related-card h3 {
  margin: 7px 0 9px;
  font-size: 15px;
  line-height: 1.4;
}

.pressly-related-card h3 a {
  color: #222529;
}

.pressly-related-card h3 a:hover {
  color: var(--pressly-accent);
}

.pressly-related-card time {
  color: #a0a4aa;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: .25px;
}

/* Comments */

.pressly-comments {
  margin-bottom: 68px;
}

.pressly-comment {
  display: grid;
  grid-template-columns: 54px minmax(0,1fr);
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid #eceef0;
}

.pressly-comment > img {
  width: 54px;
  height: 54px;
  object-fit: cover;
  border-radius: 50%;
}

.pressly-comment-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 8px;
}

.pressly-comment-head h3 {
  margin: 0;
  color: #272a2e;
  font-size: 13px;
}

.pressly-comment-head h3 span {
  display: inline-flex;
  margin-left: 6px;
  padding: 3px 6px;
  border-radius: 999px;
  color: var(--pressly-accent);
  background: #fff0f4;
  font-size: 7px;
  text-transform: uppercase;
  letter-spacing: .3px;
  vertical-align: 2px;
}

.pressly-comment-head time {
  color: #a1a5aa;
  font-size: 9px;
}

.pressly-comment-body > p {
  margin: 0 0 9px;
  color: #686d73;
  font-size: 13px;
  line-height: 1.7;
}

.pressly-comment-body > button {
  padding: 0;
  border: 0;
  color: var(--pressly-accent);
  background: transparent;
  font-size: 9px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.pressly-comment-reply {
  margin: 18px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid #eef0f2;
  border-bottom: 0;
}

.pressly-reply {
  margin-bottom: 20px;
}

.pressly-reply-form {
  padding: 26px;
  border: 1px solid #e8eaed;
  border-radius: 18px;
  background: #fafbfb;
}

.pressly-reply-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.pressly-reply-message {
  grid-column: 1 / -1;
}

.pressly-reply-field label {
  display: block;
  margin-bottom: 8px;
  color: #73787f;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .4px;
  text-transform: uppercase;
}

.pressly-reply-field input,
.pressly-reply-field textarea {
  width: 100%;
  border: 1px solid #e1e4e7;
  border-radius: 11px;
  outline: none;
  color: #32363b;
  background: #fff;
  font-size: 12px;
  transition: border-color .2s ease, box-shadow .2s ease;
}

.pressly-reply-field input {
  height: 46px;
  padding: 0 14px;
}

.pressly-reply-field textarea {
  min-height: 145px;
  padding: 14px;
  resize: vertical;
}

.pressly-reply-field input:focus,
.pressly-reply-field textarea:focus {
  border-color: rgba(200,50,85,.55);
  box-shadow: 0 0 0 3px rgba(200,50,85,.07);
}

.pressly-reply-check {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 16px 0 18px;
  color: #91969c;
  font-size: 10px;
  font-weight: 400 !important;
}

.pressly-reply-check input {
  margin-top: 2px;
  accent-color: var(--pressly-accent);
}

.pressly-reply-submit {
  min-height: 44px;
  padding: 0 19px;
  border: 0;
  border-radius: 10px;
  color: #fff;
  background: #1d2024;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .45px;
  text-transform: uppercase;
}

.pressly-reply-submit:hover {
  background: var(--pressly-accent);
}

.pressly-reply-submit i {
  margin-left: 7px;
}

@media (max-width: 1199px) {
  .pressly-article-cover > img {
    height: 520px;
  }

  .pressly-article-sidebar {
    padding-left: 24px;
  }

  .pressly-post-pagination,
  .pressly-author-card,
  .pressly-related,
  .pressly-comments,
  .pressly-reply {
    margin-left: 60px;
  }
}

@media (max-width: 991px) {
  .pressly-article-hero {
    padding-top: 42px;
  }

  .pressly-article-hero-copy {
    max-width: 800px;
  }

  .pressly-article-hero h1 {
    font-size: 46px;
  }

  .pressly-article-cover {
    border-radius: 18px;
  }

  .pressly-article-cover > img {
    height: 470px;
  }

  .pressly-article-section {
    padding-top: 60px;
  }

  .pressly-article-sidebar {
    padding-left: 15px;
    margin-top: 60px;
  }

  .pressly-article-sidebar-inner {
    position: static;
  }

  .pressly-post-pagination,
  .pressly-author-card,
  .pressly-related,
  .pressly-comments,
  .pressly-reply {
    margin-left: 84px;
  }
}

@media (max-width: 767px) {
  .pressly-article-hero {
    padding-top: 30px;
  }

  .pressly-article-breadcrumb {
    margin-bottom: 24px;
  }

  .pressly-article-hero-copy {
    text-align: left;
  }

  .pressly-article-eyebrow {
    justify-content: flex-start;
  }

  .pressly-article-hero h1 {
    font-size: 36px;
    line-height: 1.12;
  }

  .pressly-article-byline {
    align-items: flex-start;
    justify-content: flex-start;
    flex-direction: column;
    gap: 14px;
  }

  .pressly-article-meta {
    flex-wrap: wrap;
    gap: 10px 15px;
    padding-left: 0;
    border-left: 0;
  }

  .pressly-article-cover {
    margin-left: -2px;
    margin-right: -2px;
    border-radius: 15px;
  }

  .pressly-article-cover > img {
    height: 360px;
  }

  .pressly-article-cover figcaption {
    left: 15px;
    bottom: 13px;
  }

  .pressly-article-section {
    padding: 46px 0 66px;
  }

  .pressly-article-grid {
    display: block;
  }

  .pressly-article-share-rail {
    position: static;
    flex-direction: row;
    justify-content: flex-start;
    margin-bottom: 26px;
    padding-top: 0;
  }

  .pressly-article-share-rail > span {
    margin: 0 5px 0 0;
    writing-mode: initial;
    transform: none;
  }

  .pressly-article-content > p {
    font-size: 15px;
    line-height: 1.85;
  }

  .pressly-article-content > .pressly-article-lead {
    font-size: 18px;
  }

  .pressly-article-content h2 {
    margin-top: 38px;
    font-size: 25px;
  }

  .pressly-article-media-split {
    float: none;
    width: 100%;
    margin: 30px 0;
  }

  .pressly-article-quote {
    padding: 28px 24px 25px 28px;
  }

  .pressly-article-quote p {
    font-size: 19px;
  }

  .pressly-article-end {
    align-items: flex-start;
    flex-direction: column;
  }

  .pressly-post-pagination,
  .pressly-author-card,
  .pressly-related,
  .pressly-comments,
  .pressly-reply {
    margin-left: 0;
  }

  .pressly-post-pagination {
    grid-template-columns: 1fr;
    margin-top: 52px;
  }

  .pressly-author-card {
    grid-template-columns: 82px minmax(0,1fr);
    padding: 22px;
    margin-bottom: 58px;
  }

  .pressly-author-avatar img {
    width: 82px;
    height: 82px;
  }

  .pressly-author-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .pressly-related-img {
    height: 210px;
    margin-top: 20px;
  }

  .pressly-related .col-md-4:first-child .pressly-related-img {
    margin-top: 0;
  }

  .pressly-reply-grid {
    grid-template-columns: 1fr;
  }

  .pressly-reply-message {
    grid-column: auto;
  }
}

@media (max-width: 480px) {
  .pressly-article-hero h1 {
    font-size: 31px;
  }

  .pressly-article-eyebrow {
    flex-wrap: wrap;
  }

  .pressly-article-cover > img {
    height: 300px;
  }

  .pressly-article-cover figcaption {
    display: none;
  }

  .pressly-article-content > .pressly-article-lead:first-letter {
    font-size: 50px;
  }

  .pressly-author-card {
    grid-template-columns: 1fr;
  }

  .pressly-author-avatar img {
    width: 76px;
    height: 76px;
  }

  .pressly-post-pagination-item,
  .pressly-post-pagination-next {
    grid-template-columns: 72px minmax(0,1fr);
    text-align: left;
  }

  .pressly-post-pagination-next span {
    order: 2;
  }

  .pressly-post-pagination-next img {
    order: 1;
  }

  .pressly-post-pagination-item img {
    width: 72px;
    height: 72px;
  }

  .pressly-comment {
    grid-template-columns: 42px minmax(0,1fr);
    gap: 12px;
  }

  .pressly-comment > img {
    width: 42px;
    height: 42px;
  }

  .pressly-comment-reply {
    margin-left: -54px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pressly-reading-progress span,
  .pressly-article-share-rail a,
  .pressly-article-share-rail button,
  .pressly-related-img img,
  .pressly-post-pagination-item {
    transition: none !important;
  }
}

.pressly-article-page #post-header.pressly-article-hero {
  padding: 30px 0 0;
}

.pressly-article-page .pressly-article-breadcrumb {
  margin-bottom: 26px;
}

.pressly-article-page .pressly-article-grid {
  display: block;
}

.pressly-article-page .pressly-article-content {
  max-width: 100%;
}

.pressly-article-page .pressly-post-pagination,
.pressly-article-page .pressly-related,
.pressly-article-page .pressly-comments,
.pressly-article-page .pressly-reply {
  margin-left: 0;
}


/* Article Header — Layout 02 */

.pressly-article-v2 .pressly-article-hero {
  padding: 54px 0 0;
  background: #fff;
}

.pressly-article-v2 .pressly-article-hero-copy {
  max-width: 940px;
  margin: 0 auto 36px;
  text-align: left;
}

.pressly-article-v2 .pressly-article-eyebrow {
  justify-content: flex-start;
  gap: 8px;
  margin: 0 0 22px;
}

.pressly-article-v2 .pressly-article-eyebrow a {
  min-height: 27px;
  padding: 0 12px;
  color: var(--pressly-accent);
  background: rgba(200,50,85,.08);
  border: 1px solid rgba(200,50,85,.06);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.pressly-article-v2 .pressly-article-eyebrow a:hover {
  color: #fff;
  background: var(--pressly-accent);
  border-color: var(--pressly-accent);
}

.pressly-article-v2 .pressly-article-hero h1 {
  max-width: 900px;
  margin: 0;
  color: #14171c;
  font-size: clamp(38px, 3.55vw, 56px);
  line-height: 1.1;
  font-weight: 500 !important;
  letter-spacing: -.025em !important;
}

.pressly-article-v2 .pressly-article-byline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 30px;
  padding-top: 18px;
  border-top: 1px solid #eceef1;
}

.pressly-article-v2 .pressly-article-byline-left {
  min-width: 0;
}

.pressly-article-v2 .pressly-article-author {
  gap: 11px;
}

.pressly-article-v2 .pressly-article-author img {
  width: 44px;
  height: 44px;
}

.pressly-article-v2 .pressly-article-author span {
  gap: 4px;
}

.pressly-article-v2 .pressly-article-author strong {
  color: #171a1f;
  font-size: 13px;
  font-weight: 500 !important;
}

.pressly-article-v2 .pressly-article-author small {
  color: #8a9098;
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.pressly-article-toolbar {
  display: flex;
  align-items: center;
  gap: 8px;
}

.pressly-article-toolbar-like,
.pressly-article-toolbar-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  min-width: 38px;
  height: 38px;
  padding: 0 11px;
  border: 1px solid #eceef1;
  border-radius: 999px;
  color: #2c3137;
  background: #f8f9fa;
  font: inherit;
  font-size: 11px;
  line-height: 1;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.pressly-article-toolbar-action {
  width: 38px;
  padding: 0;
  text-decoration: none;
}

.pressly-article-toolbar-action span {
  font-size: 10px;
}

.pressly-article-toolbar-like b {
  color: inherit;
  font-weight: 400;
}

.pressly-article-toolbar-like:hover,
.pressly-article-toolbar-action:hover,
.pressly-article-toolbar-action:focus-visible,
.pressly-article-toolbar-like:focus-visible {
  color: var(--pressly-accent);
  border-color: rgba(200,50,85,.18);
  background: #fff7f9;
  outline: none;
  transform: translateY(-1px);
}

.pressly-article-toolbar-like.is-liked {
  color: #fff;
  border-color: var(--pressly-accent);
  background: var(--pressly-accent);
}

.pressly-article-v2 .pressly-article-cover {
  max-width: 1320px;
  margin: 0 auto;
  border-radius: 18px;
  box-shadow: 0 16px 42px rgba(24,28,35,.08);
}

.pressly-article-v2 .pressly-article-cover > img {
  height: 560px;
  object-position: center 37%;
}

.pressly-article-v2 .pressly-article-cover:after,
.pressly-article-v2 .pressly-article-cover figcaption {
  display: none;
}

.pressly-article-v2 .pressly-article-section {
  padding-top: 64px;
}

@media (max-width: 991px) {
  .pressly-article-v2 .pressly-article-hero {
    padding-top: 40px;
  }

  .pressly-article-v2 .pressly-article-hero-copy {
    max-width: 820px;
    margin-bottom: 30px;
  }

  .pressly-article-v2 .pressly-article-hero h1 {
    font-size: clamp(36px, 5.1vw, 50px);
  }

  .pressly-article-v2 .pressly-article-cover > img {
    height: 460px;
  }
}

@media (max-width: 767px) {
  .pressly-article-v2 .pressly-article-hero {
    padding-top: 30px;
  }

  .pressly-article-v2 .pressly-article-hero-copy {
    margin-bottom: 24px;
  }

  .pressly-article-v2 .pressly-article-eyebrow {
    margin-bottom: 16px;
  }

  .pressly-article-v2 .pressly-article-hero h1 {
    font-size: clamp(31px, 9vw, 42px);
    line-height: 1.08;
  }

  .pressly-article-v2 .pressly-article-byline {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
    padding-top: 16px;
  }

  .pressly-article-toolbar {
    width: 100%;
    flex-wrap: wrap;
  }

  .pressly-article-v2 .pressly-article-cover {
    border-radius: 14px;
  }

  .pressly-article-v2 .pressly-article-cover > img {
    height: 340px;
  }

  .pressly-article-v2 .pressly-article-section {
    padding-top: 46px;
  }
}

@media (max-width: 480px) {
  .pressly-article-v2 .pressly-article-hero {
    padding-top: 24px;
  }

  .pressly-article-v2 .pressly-article-hero h1 {
    font-size: 32px;
  }

  .pressly-article-v2 .pressly-article-author img {
    width: 40px;
    height: 40px;
  }

  .pressly-article-toolbar-like,
  .pressly-article-toolbar-action {
    height: 36px;
  }

  .pressly-article-v2 .pressly-article-cover > img {
    height: 260px;
  }
}


/* Article Actions */

.pressly-article-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  margin-left: auto;
}

.pressly-article-like {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid #eceef0;
  border-radius: 999px;
  color: #6f747a;
  background: #f7f8f9;
  font: inherit;
  font-size: 10px;
  cursor: pointer;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}

.pressly-article-like i {
  color: var(--pressly-accent);
  font-size: 12px;
}

.pressly-article-like b {
  color: #31353a;
  font-weight: 500;
}

.pressly-article-like:hover,
.pressly-article-like:focus-visible {
  color: var(--pressly-accent);
  border-color: rgba(200,50,85,.28);
  background: #fff7f9;
  outline: none;
  transform: translateY(-1px);
}

.pressly-article-like.is-liked {
  color: #fff;
  border-color: var(--pressly-accent);
  background: var(--pressly-accent);
}

.pressly-article-like.is-liked i,
.pressly-article-like.is-liked b {
  color: #fff;
}

.pressly-article-bottom-ad {
  padding-top: 12px;
  padding-bottom: 58px;
  background: #fff;
}

.pressly-article-bottom-ad .pressly-ad-banner-wrap {
  max-width: 900px;
}

@media (max-width: 991px) {
  .pressly-article-page #post-header.pressly-article-hero {
    padding-top: 26px;
  }

  .pressly-article-page .pressly-post-pagination,
  .pressly-article-page .pressly-related,
  .pressly-article-page .pressly-comments,
  .pressly-article-page .pressly-reply {
    margin-left: 0;
  }
}

@media (max-width: 767px) {
  .pressly-article-page #post-header.pressly-article-hero {
    padding-top: 22px;
  }

  .pressly-article-actions {
    width: 100%;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-left: 0;
  }

  .pressly-article-bottom-ad {
    padding-bottom: 44px;
  }
}

@media (max-width: 480px) {
  .pressly-article-actions {
    flex-direction: column;
  }

  .pressly-article-end-share {
    white-space: normal;
  }
}


/*============================================================
# 23. CATEGORY PAGE
============================================================*/

.pressly-category-page {
  background: #fff;
}

/* Category Header */

.pressly-category-page .pressly-category-hero {
  padding: 54px 0 48px;
  background: linear-gradient(180deg, #fbfbfc 0%, #fff 100%);
  border-bottom: 1px solid #eef0f2;
}

.pressly-category-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  font-size: 13px;
  color: #989ca2;
}

.pressly-category-breadcrumb a {
  color: #6f747b;
}

.pressly-category-breadcrumb a:hover {
  color: #c83255;
}

.pressly-category-breadcrumb i {
  color: #c5c8cd;
}

.pressly-category-hero-row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}

.pressly-category-hero-copy {
  max-width: 690px;
}

.pressly-category-kicker,
.pressly-category-section-head span,
.pressly-category-list-head span {
  display: block;
  margin-bottom: 8px;
  color: #c83255;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pressly-category-hero h1 {
  margin: 0 0 12px;
  font-size: 58px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: -.035em;
  color: #17191d;
}

.pressly-category-hero p {
  max-width: 650px;
  margin: 0;
  color: #737880;
  font-size: 17px;
  line-height: 1.7;
}

.pressly-category-topics {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
  max-width: 360px;
}

.pressly-category-topics a {
  padding: 9px 15px;
  border: 1px solid #e7e9ec;
  border-radius: 999px;
  color: #565b62;
  background: #fff;
  font-size: 13px;
  transition: .2s ease;
}

.pressly-category-topics a:hover {
  color: #c83255;
  border-color: #e8b3bf;
  background: #fff8fa;
}

/* Category Posts */

.pressly-category-content {
  padding-top: 54px;
  padding-bottom: 58px;
}

.pressly-category-featured {
  margin-bottom: 62px;
}

.pressly-category-section-head,
.pressly-category-list-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e8eaed;
}

.pressly-category-section-head h2,
.pressly-category-list-head h2 {
  margin: 0;
  font-size: 27px;
  line-height: 1.2;
  font-weight: 500;
  color: #181a1e;
}

.pressly-category-section-head > a {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: #686d74;
}

.pressly-category-section-head > a:hover {
  color: #c83255;
}

.pressly-category-section-head > a i {
  margin-left: 5px;
}

.pressly-category-feature-grid {
  display: grid;
  grid-template-columns: minmax(0,1.55fr) minmax(330px,.75fr);
  gap: 18px;
}

.pressly-category-lead,
.pressly-category-feature-small {
  position: relative;
  overflow: hidden;
  border-radius: 16px;
  background: #111;
}

.pressly-category-lead {
  min-height: 520px;
}

.pressly-category-feature-img {
  position: absolute;
  inset: 0;
  display: block;
}

.pressly-category-feature-img:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,rgba(8,10,13,.04) 20%,rgba(8,10,13,.83) 100%);
}

.pressly-category-feature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2,.65,.3,1);
}

.pressly-category-lead:hover .pressly-category-feature-img img,
.pressly-category-feature-small:hover .pressly-category-feature-img img {
  transform: scale(1.035);
}

.pressly-category-feature-overlay {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 38px 40px;
  color: #fff;
}

.pressly-category-badges {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
}

.pressly-category-badges a {
  padding: 6px 11px;
  border-radius: 999px;
  background: #c83255;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

.pressly-category-badges span {
  color: rgba(255,255,255,.75);
  font-size: 12px;
}

.pressly-category-feature-overlay h2 {
  max-width: 720px;
  margin: 0 0 12px;
  font-size: 38px;
  line-height: 1.12;
  font-weight: 500;
  letter-spacing: -.02em;
}

.pressly-category-feature-overlay h2 a {
  color: #fff;
}

.pressly-category-feature-overlay p {
  max-width: 680px;
  margin: 0 0 17px;
  color: rgba(255,255,255,.78);
  font-size: 15px;
  line-height: 1.55;
}

.pressly-category-feature-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,.68);
  font-size: 12px;
}

.pressly-category-feature-meta a {
  color: #fff;
}

.pressly-category-feature-meta span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #c83255;
}

.pressly-category-feature-stack {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 18px;
  min-height: 520px;
}

.pressly-category-feature-small {
  min-height: 0;
}

.pressly-category-feature-small .pressly-category-feature-img:after {
  background: linear-gradient(180deg,rgba(8,10,13,.05) 24%,rgba(8,10,13,.78) 100%);
}

.pressly-category-feature-small-body {
  position: absolute;
  z-index: 2;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 25px 26px;
}

.pressly-category-feature-small-body > span {
  color: #f2a9b9;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .07em;
}

.pressly-category-feature-small-body h3 {
  margin: 8px 0 8px;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 500;
}

.pressly-category-feature-small-body h3 a {
  color: #fff;
}

.pressly-category-feature-small-body small {
  color: rgba(255,255,255,.67);
  font-size: 11px;
}

.pressly-category-layout {
  align-items: flex-start;
}

.pressly-category-list-head {
  margin-bottom: 25px;
}

.pressly-category-count {
  flex: 0 0 auto;
  padding: 7px 12px;
  border-radius: 999px;
  background: #f5f6f7;
  color: #8c9197;
  font-size: 12px;
}

.pressly-category-grid {
  display: grid;
  grid-template-columns: repeat(2,minmax(0,1fr));
  gap: 26px 24px;
}

.pressly-category-card {
  overflow: hidden;
  border: 1px solid #e9eaec;
  border-radius: 14px;
  background: #fff;
  transition: transform .22s ease, box-shadow .22s ease, border-color .22s ease;
}

.pressly-category-card:hover {
  transform: translateY(-3px);
  border-color: #e2e3e6;
  box-shadow: 0 16px 34px rgba(20,24,30,.07);
}

.pressly-category-card-img {
  position: relative;
  display: block;
  aspect-ratio: 16/10;
  overflow: hidden;
  background: #f4f5f6;
}

.pressly-category-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.pressly-category-card:hover .pressly-category-card-img img {
  transform: scale(1.025);
}

.pressly-category-card-img > span {
  position: absolute;
  left: 16px;
  bottom: 14px;
  padding: 6px 10px;
  border-radius: 999px;
  color: #fff;
  background: #c83255;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.pressly-category-card-body {
  padding: 22px 22px 20px;
}

.pressly-category-card-meta {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 11px;
  color: #969aa0;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.pressly-category-card-meta i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #c83255;
}

.pressly-category-card h3 {
  margin: 0 0 11px;
  font-size: 21px;
  line-height: 1.33;
  font-weight: 500;
  letter-spacing: -.01em;
}

.pressly-category-card h3 a {
  color: #1b1d21;
}

.pressly-category-card h3 a:hover {
  color: #c83255;
}

.pressly-category-card p {
  min-height: 72px;
  margin: 0 0 18px;
  color: #747980;
  font-size: 14px;
  line-height: 1.65;
}

.pressly-category-card-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
  border-top: 1px solid #eef0f2;
}

.pressly-category-card-author a {
  color: #555a61;
  font-size: 12px;
  font-weight: 500;
}

.pressly-category-card-author i {
  color: #a5a9ae;
  transition: .2s ease;
}

.pressly-category-card:hover .pressly-category-card-author i {
  color: #c83255;
  transform: translateX(3px);
}

.pressly-category-extra.is-revealed {
  animation: presslyCategoryReveal .45s ease both;
}

@keyframes presslyCategoryReveal {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.pressly-category-load-wrap {
  display: flex;
  justify-content: center;
  padding-top: 34px;
}

.pressly-category-load {
  min-width: 190px;
  height: 48px;
  padding: 0 20px;
  border: 1px solid #dedfe2;
  border-radius: 999px;
  background: #fff;
  color: #292c31;
  font: 500 12px/1 Roboto,sans-serif;
  letter-spacing: .04em;
  text-transform: uppercase;
  transition: .2s ease;
}

.pressly-category-load:hover {
  color: #fff;
  background: #c83255;
  border-color: #c83255;
}

.pressly-category-load i {
  margin-left: 7px;
}

.pressly-category-load.is-complete {
  color: #8b9096;
  background: #f5f6f7;
  border-color: #eceef0;
  cursor: default;
}

/* Category Sidebar */

.pressly-category-sidebar {
  position: sticky;
  top: 82px;
}

.pressly-category-page .pressly-side-card,
.pressly-category-page .pressly-newsletter-panel {
  margin-bottom: 28px;
}

.pressly-category-page .pressly-ad-widget {
  margin-bottom: 30px;
}

.pressly-category-ad-section {
  padding: 12px 0 58px;
}

@media (max-width:1199px) {
  .pressly-category-feature-grid {
    grid-template-columns: minmax(0,1.35fr) minmax(300px,.85fr);
  }

  .pressly-category-feature-overlay h2 {
    font-size: 34px;
  }
}

@media (max-width:991px) {
  .pressly-category-page .pressly-category-hero {
    padding: 40px 0 36px;
  }

  .pressly-category-hero h1 {
    font-size: 48px;
  }

  .pressly-category-hero-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 24px;
  }

  .pressly-category-topics {
    justify-content: flex-start;
    max-width: none;
  }

  .pressly-category-feature-grid {
    grid-template-columns: 1fr;
  }

  .pressly-category-lead {
    min-height: 500px;
  }

  .pressly-category-feature-stack {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: none;
    min-height: 280px;
  }

  .pressly-category-sidebar {
    position: static;
    margin-top: 46px;
  }

  .pressly-category-page .pressly-ad-widget {
    max-width: 390px;
  }
}

@media (max-width:767px) {
  .pressly-category-content {
    padding-top: 38px;
  }

  .pressly-category-hero h1 {
    font-size: 42px;
  }

  .pressly-category-hero p {
    font-size: 15px;
  }

  .pressly-category-featured {
    margin-bottom: 44px;
  }

  .pressly-category-feature-grid {
    gap: 12px;
  }

  .pressly-category-lead {
    min-height: 430px;
    border-radius: 13px;
  }

  .pressly-category-feature-overlay {
    padding: 26px 24px;
  }

  .pressly-category-feature-overlay h2 {
    font-size: 29px;
  }

  .pressly-category-feature-overlay p {
    display: none;
  }

  .pressly-category-feature-stack {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 12px;
  }

  .pressly-category-feature-small {
    min-height: 270px;
    border-radius: 13px;
  }

  .pressly-category-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .pressly-category-card p {
    min-height: 0;
  }

  .pressly-category-section-head h2,
  .pressly-category-list-head h2 {
    font-size: 24px;
  }

  .pressly-category-section-head > a {
    display: none;
  }
}

@media (max-width:479px) {
  .pressly-category-page .pressly-category-hero {
    padding: 32px 0 30px;
  }

  .pressly-category-breadcrumb {
    margin-bottom: 22px;
  }

  .pressly-category-hero h1 {
    font-size: 38px;
  }

  .pressly-category-topics a {
    padding: 8px 12px;
  }

  .pressly-category-lead {
    min-height: 390px;
  }

  .pressly-category-feature-overlay {
    padding: 22px 20px;
  }

  .pressly-category-feature-overlay h2 {
    font-size: 26px;
  }

  .pressly-category-feature-meta {
    flex-wrap: wrap;
  }

  .pressly-category-list-head {
    align-items: flex-start;
  }

  .pressly-category-count {
    display: none;
  }

  .pressly-category-card-body {
    padding: 19px 18px;
  }

  .pressly-category-card h3 {
    font-size: 20px;
  }
}

.pressly-category-page .pressly-category-hero {
  padding: 42px 0 36px;
  background: #fff;
  border-bottom: 1px solid #eef0f2;
}

.pressly-category-page .pressly-category-breadcrumb {
  margin-bottom: 24px;
}

.pressly-category-page .pressly-category-hero-row {
  display: block;
}

.pressly-category-page .pressly-category-hero-copy {
  max-width: none;
}

.pressly-category-page .pressly-category-hero h1 {
  margin: 0;
  font-size: 36px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -0.02em;
}

.pressly-category-page .pressly-category-content {
  padding-top: 42px;
}

.pressly-category-page .pressly-category-layout {
  margin-top: 0;
}

@media (max-width: 767px) {
  .pressly-category-page .pressly-category-hero {
    padding: 30px 0 28px;
  }

  .pressly-category-page .pressly-category-breadcrumb {
    margin-bottom: 18px;
  }

  .pressly-category-page .pressly-category-hero h1 {
    font-size: 31px;
  }

  .pressly-category-page .pressly-category-content {
    padding-top: 30px;
  }
}


/*============================================================
# 24. AUTHOR PAGE
============================================================*/

.pressly-author-page {
  background: #fff;
}

/* Author Header */

.pressly-author-hero {
  padding: 38px 0 36px;
  background: #fff;
  border-bottom: 1px solid #eef0f2;
}

.pressly-author-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
  color: #989ca2;
  font-size: 13px;
}

.pressly-author-breadcrumb a {
  color: #6f747b;
}

.pressly-author-breadcrumb a:hover {
  color: #c83255;
}

.pressly-author-breadcrumb i {
  color: #c8cbd0;
}

.pressly-author-profile {
  display: grid;
  grid-template-columns: 126px minmax(0,1fr) auto;
  gap: 28px;
  align-items: center;
  padding: 28px 30px;
  border: 1px solid #e8eaed;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(20,24,30,.045);
}

.pressly-author-avatar {
  width: 126px;
  height: 126px;
  object-fit: cover;
  border-radius: 50%;
}

.pressly-author-kicker {
  display: block;
  margin-bottom: 5px;
  color: #c83255;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.pressly-author-copy h1 {
  margin: 0;
  color: #17191d;
  font-size: 38px;
  line-height: 1.12;
  font-weight: 400;
  letter-spacing: -.025em;
}

.pressly-author-role {
  margin: 6px 0 8px;
  color: #4d5259;
  font-size: 14px;
  font-weight: 400;
}

.pressly-author-bio {
  max-width: 650px;
  margin: 0;
  color: #777c83;
  font-size: 14px;
  line-height: 1.65;
}

.pressly-author-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 13px;
  color: #969aa0;
  font-size: 11px;
}

.pressly-author-meta strong {
  color: #3c4148;
  font-weight: 500;
}

.pressly-author-meta i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #c83255;
}

.pressly-author-social {
  display: flex;
  gap: 8px;
  align-self: start;
  padding-top: 4px;
}

.pressly-author-social a {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border: 1px solid #e6e8eb;
  border-radius: 50%;
  background: #fff;
  color: #5d6269;
  transition: .2s ease;
}

.pressly-author-social a:hover {
  color: #fff;
  background: #c83255;
  border-color: #c83255;
  transform: translateY(-2px);
}

/* Author Stories */

.pressly-author-content {
  padding-top: 48px;
  padding-bottom: 58px;
}

.pressly-author-layout {
  align-items: flex-start;
}

.pressly-author-section-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 20px;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px solid #e8eaed;
}

.pressly-author-section-head span {
  display: block;
  margin-bottom: 6px;
  color: #c83255;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.pressly-author-section-head h2 {
  margin: 0;
  color: #191b1f;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 400;
}

.pressly-author-section-head small {
  padding: 7px 11px;
  border-radius: 999px;
  background: #f5f6f7;
  color: #8d9298;
  font-size: 11px;
}

.pressly-author-list {
  display: grid;
  gap: 18px;
}

.pressly-author-story {
  display: grid;
  grid-template-columns: 235px minmax(0,1fr);
  min-height: 180px;
  overflow: hidden;
  border: 1px solid #e9eaec;
  border-radius: 14px;
  background: #fff;
  transition: transform .22s ease,box-shadow .22s ease,border-color .22s ease;
}

.pressly-author-story:hover {
  transform: translateY(-2px);
  border-color: #e1e3e6;
  box-shadow: 0 14px 32px rgba(20,24,30,.06);
}

.pressly-author-story-img {
  display: block;
  min-height: 100%;
  overflow: hidden;
  background: #f3f4f5;
}

.pressly-author-story-img img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  object-fit: cover;
  transition: transform .5s ease;
}

.pressly-author-story:hover .pressly-author-story-img img {
  transform: scale(1.025);
}

.pressly-author-story-body {
  padding: 22px 24px 20px;
}

.pressly-author-story-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #999da3;
  font-size: 10px;
  letter-spacing: .035em;
  text-transform: uppercase;
}

.pressly-author-story-meta a {
  color: #c83255;
  font-weight: 500;
}

.pressly-author-story-meta i {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: #c83255;
}

.pressly-author-story h3 {
  margin: 0 0 9px;
  font-size: 22px;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: -.01em;
}

.pressly-author-story h3 a {
  color: #1a1c20;
}

.pressly-author-story h3 a:hover {
  color: #c83255;
}

.pressly-author-story p {
  margin: 0 0 12px;
  color: #767b82;
  font-size: 13px;
  line-height: 1.62;
}

.pressly-author-read {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #585d64;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .04em;
}

.pressly-author-read:hover {
  color: #c83255;
}

.pressly-author-read i {
  transition: .2s ease;
}

.pressly-author-read:hover i {
  transform: translateX(3px);
}

.pressly-author-extra.is-revealed {
  animation: presslyAuthorReveal .45s ease both;
}

@keyframes presslyAuthorReveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.pressly-author-load-wrap {
  display: flex;
  justify-content: center;
  padding-top: 30px;
}

.pressly-author-load {
  min-width: 190px;
  height: 47px;
  padding: 0 20px;
  border: 1px solid #dedfe2;
  border-radius: 999px;
  background: #fff;
  color: #2c3035;
  font: 500 11px/1 Roboto,sans-serif;
  letter-spacing: .045em;
  text-transform: uppercase;
  transition: .2s ease;
}

.pressly-author-load:hover {
  color: #fff;
  background: #c83255;
  border-color: #c83255;
}

.pressly-author-load i {
  margin-left: 6px;
}

.pressly-author-load.is-complete {
  color: #8b9096;
  background: #f5f6f7;
  border-color: #eceef0;
  cursor: default;
}

/* Author Sidebar */

.pressly-author-sidebar {
  position: sticky;
  top: 82px;
}

.pressly-author-page .pressly-side-card,.pressly-author-page .pressly-newsletter-panel {
  margin-bottom: 28px;
}

.pressly-author-page .pressly-ad-widget {
  margin-bottom: 30px;
}

.pressly-author-ad-section {
  padding: 12px 0 58px;
  background: #fff;
}

@media (max-width:991px) {
  .pressly-author-profile {
    grid-template-columns: 110px minmax(0,1fr);
  }

  .pressly-author-avatar {
    width: 110px;
    height: 110px;
  }

  .pressly-author-social {
    grid-column: 2;
    align-self: auto;
  }

  .pressly-author-sidebar {
    position: static;
    margin-top: 44px;
  }

  .pressly-author-page .pressly-ad-widget {
    max-width: 390px;
  }
}

@media (max-width:767px) {
  .pressly-author-hero {
    padding: 30px 0 28px;
  }

  .pressly-author-profile {
    grid-template-columns: 78px minmax(0,1fr);
    gap: 18px;
    padding: 22px;
    border-radius: 13px;
  }

  .pressly-author-avatar {
    width: 78px;
    height: 78px;
  }

  .pressly-author-copy h1 {
    font-size: 31px;
  }

  .pressly-author-bio {
    grid-column: 1/-1;
  }

  .pressly-author-social {
    grid-column: 1/-1;
  }

  .pressly-author-content {
    padding-top: 36px;
  }

  .pressly-author-story {
    grid-template-columns: 1fr;
  }

  .pressly-author-story-img {
    aspect-ratio: 16/9;
  }

  .pressly-author-story-img img {
    min-height: 0;
  }

  .pressly-author-section-head h2 {
    font-size: 24px;
  }
}

@media (max-width:479px) {
  .pressly-author-profile {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .pressly-author-avatar {
    margin: auto;
    width: 92px;
    height: 92px;
  }

  .pressly-author-social {
    justify-content: center;
  }

  .pressly-author-meta {
    justify-content: center;
  }

  .pressly-author-section-head small {
    display: none;
  }

  .pressly-author-story-body {
    padding: 19px 18px;
  }

  .pressly-author-story h3 {
    font-size: 20px;
  }
}


/*============================================================
# 25. ABOUT PAGE
============================================================*/

.pressly-about-page {
  background: #fff;
}

/* About Header */

.pressly-about-hero {
  padding: 40px 0 70px;
  background: #fff;
  border-bottom: 1px solid #eef0f2;
}

.pressly-about-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 34px;
  color: #979ca2;
  font-size: 13px;
}

.pressly-about-breadcrumb a {
  color: #6d7279;
}

.pressly-about-breadcrumb a:hover {
  color: #c83255;
}

.pressly-about-breadcrumb i {
  color: #c7cbd0;
}

.pressly-about-hero-grid {
  display: grid;
  grid-template-columns: minmax(0,.88fr) minmax(480px,1.12fr);
  gap: 64px;
  align-items: center;
}

.pressly-about-kicker {
  display: block;
  margin-bottom: 9px;
  color: #c83255;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .11em;
  text-transform: uppercase;
}

.pressly-about-hero-copy h1 {
  max-width: 650px;
  margin: 0 0 18px;
  color: #17191d;
  font-size: 50px;
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -.035em;
}

.pressly-about-hero-copy > p {
  max-width: 610px;
  margin: 0;
  color: #70757c;
  font-size: 17px;
  line-height: 1.72;
}

.pressly-about-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.pressly-about-primary,.pressly-about-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 45px;
  padding: 0 18px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  transition: .2s ease;
}

.pressly-about-primary {
  color: #fff;
  background: #c83255;
  border: 1px solid #c83255;
}

.pressly-about-primary:hover {
  color: #fff;
  background: #ae2948;
  border-color: #ae2948;
  transform: translateY(-1px);
}

.pressly-about-primary i {
  font-size: 10px;
}

.pressly-about-secondary {
  color: #444950;
  background: #fff;
  border: 1px solid #e2e4e7;
}

.pressly-about-secondary:hover {
  color: #c83255;
  border-color: #e2a6b4;
  background: #fff8fa;
}

.pressly-about-stats {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  max-width: 560px;
  margin-top: 38px;
  padding-top: 22px;
  border-top: 1px solid #eceef0;
}

.pressly-about-stats div {
  padding-right: 22px;
}

.pressly-about-stats div+div {
  padding-left: 22px;
  border-left: 1px solid #eceef0;
}

.pressly-about-stats strong {
  display: block;
  margin-bottom: 3px;
  color: #1c1e22;
  font-size: 25px;
  line-height: 1.1;
  font-weight: 500;
}

.pressly-about-stats span {
  color: #92969c;
  font-size: 11px;
}

.pressly-about-visual {
  position: relative;
  min-height: 520px;
}

.pressly-about-visual figure {
  margin: 0;
  overflow: hidden;
  background: #f2f3f4;
}

.pressly-about-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pressly-about-visual-main {
  position: absolute;
  inset: 0 80px 55px 0;
  border-radius: 18px;
}

.pressly-about-visual-small {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 44%;
  height: 44%;
  border: 7px solid #fff;
  border-radius: 16px;
  box-shadow: 0 18px 42px rgba(20,24,30,.12);
}

.pressly-about-visual-note {
  position: absolute;
  left: 28px;
  bottom: 25px;
  z-index: 2;
  width: 185px;
  padding: 16px 18px;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 14px 34px rgba(20,24,30,.1);
}

.pressly-about-visual-note span {
  display: block;
  margin-bottom: 4px;
  color: #c83255;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.pressly-about-visual-note p {
  margin: 0;
  color: #464b52;
  font-size: 12px;
  line-height: 1.45;
}

/* Our Story */

.pressly-about-story {
  padding: 82px 0;
  background: #fff;
}

.pressly-about-story-grid {
  display: grid;
  grid-template-columns: minmax(0,.82fr) minmax(0,1.18fr);
  gap: 90px;
}

.pressly-about-story-title h2 {
  max-width: 520px;
  margin: 0;
  color: #1a1c20;
  font-size: 34px;
  line-height: 1.25;
  font-weight: 400;
  letter-spacing: -.025em;
}

.pressly-about-story-copy p {
  margin: 0 0 18px;
  color: #696e75;
  font-size: 15px;
  line-height: 1.82;
}

.pressly-about-story-copy blockquote {
  position: relative;
  margin: 28px 0 0;
  padding: 20px 0 2px 24px;
  border-left: 3px solid #c83255;
  color: #292d32;
  font-size: 20px;
  line-height: 1.5;
  font-weight: 400;
}

/* Editorial Principles */

.pressly-about-values {
  padding: 74px 0 82px;
  background: #f8f9fa;
  border-top: 1px solid #eef0f2;
  border-bottom: 1px solid #eef0f2;
}

.pressly-about-section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-bottom: 30px;
}

.pressly-about-section-head h2 {
  margin: 0;
  color: #191b1f;
  font-size: 31px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -.02em;
}

.pressly-about-section-head > p {
  max-width: 380px;
  margin: 0;
  color: #858a90;
  font-size: 13px;
  line-height: 1.6;
}

.pressly-about-section-head > a {
  flex: 0 0 auto;
  color: #60656c;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.pressly-about-section-head > a:hover {
  color: #c83255;
}

.pressly-about-section-head > a i {
  margin-left: 6px;
}

.pressly-about-values-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 18px;
}

.pressly-about-value-card {
  position: relative;
  min-height: 240px;
  padding: 28px;
  border: 1px solid #e7e9ec;
  border-radius: 15px;
  background: #fff;
  transition: .22s ease;
}

.pressly-about-value-card:hover {
  transform: translateY(-3px);
  border-color: #e0e2e5;
  box-shadow: 0 16px 34px rgba(20,24,30,.055);
}

.pressly-about-value-no {
  position: absolute;
  right: 24px;
  top: 24px;
  color: #d0d3d7;
  font-size: 11px;
}

.pressly-about-value-card > i {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  margin-bottom: 30px;
  border-radius: 50%;
  color: #c83255;
  background: #fff0f3;
  font-size: 17px;
}

.pressly-about-value-card h3 {
  margin: 0 0 10px;
  color: #22252a;
  font-size: 20px;
  line-height: 1.3;
  font-weight: 400;
}

.pressly-about-value-card p {
  margin: 0;
  color: #777c83;
  font-size: 13px;
  line-height: 1.7;
}

/* Writers */

.pressly-about-team {
  padding: 82px 0 74px;
  background: #fff;
}

.pressly-about-team-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 22px;
}

.pressly-about-person {
  overflow: hidden;
  border: 1px solid #e8eaed;
  border-radius: 15px;
  background: #fff;
  transition: .22s ease;
}

.pressly-about-person:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 36px rgba(20,24,30,.06);
}

.pressly-about-person-img {
  display: block;
  aspect-ratio: 4/3;
  overflow: hidden;
  background: #f2f3f4;
}

.pressly-about-person-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}

.pressly-about-person:hover .pressly-about-person-img img {
  transform: scale(1.025);
}

.pressly-about-person > div {
  padding: 22px 22px 24px;
}

.pressly-about-person span {
  display: block;
  margin-bottom: 6px;
  color: #c83255;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.pressly-about-person h3 {
  margin: 0 0 8px;
  font-size: 21px;
  line-height: 1.25;
  font-weight: 400;
}

.pressly-about-person h3 a {
  color: #1d2024;
}

.pressly-about-person h3 a:hover {
  color: #c83255;
}

.pressly-about-person p {
  margin: 0;
  color: #777c83;
  font-size: 13px;
  line-height: 1.65;
}

/* CTA */

.pressly-about-cta-section {
  padding: 8px 0 72px;
  background: #fff;
}

.pressly-about-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 34px 38px;
  border-radius: 16px;
  background: #17191d;
}

.pressly-about-cta .pressly-about-kicker {
  color: #e58ba0;
}

.pressly-about-cta h2 {
  max-width: 720px;
  margin: 0;
  color: #fff;
  font-size: 27px;
  line-height: 1.35;
  font-weight: 400;
  letter-spacing: -.015em;
}

.pressly-about-cta > a {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 18px;
  border-radius: 999px;
  background: #c83255;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
}

.pressly-about-cta > a:hover {
  color: #fff;
  background: #ae2948;
}

@media (max-width:1199px) {
  .pressly-about-hero-grid {
    grid-template-columns: minmax(0,.95fr) minmax(420px,1.05fr);
    gap: 44px;
  }

  .pressly-about-hero-copy h1 {
    font-size: 45px;
  }

  .pressly-about-visual {
    min-height: 470px;
  }
}

@media (max-width:991px) {
  .pressly-about-hero {
    padding-bottom: 58px;
  }

  .pressly-about-hero-grid {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .pressly-about-hero-copy {
    max-width: 760px;
  }

  .pressly-about-visual {
    min-height: 500px;
  }

  .pressly-about-story-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .pressly-about-values-grid,.pressly-about-team-grid {
    grid-template-columns: repeat(2,1fr);
  }

  .pressly-about-team-grid .pressly-about-person:last-child {
    grid-column: 1/-1;
    max-width: calc(50% - 11px);
  }

  .pressly-about-cta {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width:767px) {
  .pressly-about-hero {
    padding: 30px 0 46px;
  }

  .pressly-about-breadcrumb {
    margin-bottom: 25px;
  }

  .pressly-about-hero-copy h1 {
    font-size: 38px;
  }

  .pressly-about-hero-copy > p {
    font-size: 15px;
  }

  .pressly-about-stats {
    max-width: none;
  }

  .pressly-about-visual {
    min-height: 420px;
  }

  .pressly-about-visual-main {
    right: 48px;
    bottom: 42px;
    border-radius: 14px;
  }

  .pressly-about-visual-small {
    width: 43%;
    height: 42%;
    border-width: 5px;
    border-radius: 13px;
  }

  .pressly-about-visual-note {
    left: 16px;
    bottom: 15px;
  }

  .pressly-about-story,.pressly-about-team {
    padding: 58px 0;
  }

  .pressly-about-values {
    padding: 56px 0 62px;
  }

  .pressly-about-story-title h2 {
    font-size: 29px;
  }

  .pressly-about-section-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .pressly-about-section-head h2 {
    font-size: 27px;
  }

  .pressly-about-values-grid,.pressly-about-team-grid {
    grid-template-columns: 1fr;
  }

  .pressly-about-team-grid .pressly-about-person:last-child {
    grid-column: auto;
    max-width: none;
  }

  .pressly-about-person {
    display: grid;
    grid-template-columns: 150px minmax(0,1fr);
  }

  .pressly-about-person-img {
    aspect-ratio: auto;
    min-height: 100%;
  }

  .pressly-about-cta {
    padding: 28px 25px;
    border-radius: 14px;
  }

  .pressly-about-cta h2 {
    font-size: 23px;
  }
}

@media (max-width:479px) {
  .pressly-about-hero-copy h1 {
    font-size: 33px;
  }

  .pressly-about-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .pressly-about-primary,.pressly-about-secondary {
    width: 100%;
  }

  .pressly-about-stats {
    grid-template-columns: 1fr;
    gap: 13px;
  }

  .pressly-about-stats div,.pressly-about-stats div+div {
    padding: 0;
    border: 0;
    display: flex;
    align-items: baseline;
    gap: 10px;
  }

  .pressly-about-stats strong {
    min-width: 64px;
    font-size: 22px;
  }

  .pressly-about-visual {
    min-height: 350px;
  }

  .pressly-about-visual-main {
    right: 28px;
    bottom: 34px;
  }

  .pressly-about-visual-small {
    width: 46%;
  }

  .pressly-about-visual-note {
    display: none;
  }

  .pressly-about-person {
    grid-template-columns: 1fr;
  }

  .pressly-about-person-img {
    aspect-ratio: 16/10;
  }

  .pressly-about-story-copy blockquote {
    font-size: 18px;
  }
}


/*============================================================
# 26. CONTACT PAGE
============================================================*/

.pressly-contact-page {
  background: #fff;
}

.pressly-contact-page .pressly-contact-kicker {
  display: block;
  margin-bottom: 10px;
  color: #c83255;
  font-size: 11px;
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
}

/* Contact Header */

.pressly-contact-hero {
  padding: 44px 0 58px;
  background: linear-gradient(180deg,#fbfbfc 0%,#fff 100%);
  border-bottom: 1px solid #eef0f2;
}

.pressly-contact-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 46px;
  color: #9a9ea4;
  font-size: 12px;
}

.pressly-contact-breadcrumb a {
  color: #62676e;
}

.pressly-contact-breadcrumb a:hover {
  color: #c83255;
}

.pressly-contact-breadcrumb i {
  color: #c8cbd0;
  font-size: 10px;
}

.pressly-contact-hero-grid {
  display: grid;
  grid-template-columns: minmax(0,1.35fr) minmax(280px,.65fr);
  gap: 70px;
  align-items: end;
}

.pressly-contact-hero-copy {
  max-width: 760px;
}

.pressly-contact-hero-copy h1 {
  margin: 0 0 18px;
  color: #181a1e;
  font-size: 54px;
  line-height: 1.06;
  font-weight: 400;
  letter-spacing: -.035em;
}

.pressly-contact-hero-copy p {
  max-width: 690px;
  margin: 0;
  color: #6f747b;
  font-size: 16px;
  line-height: 1.75;
}

.pressly-contact-hero-note {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px 22px;
  border: 1px solid #e6e8eb;
  border-radius: 14px;
  background: #fff;
}

.pressly-contact-note-icon {
  display: grid;
  flex: 0 0 38px;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 50%;
  color: #c83255;
  background: #fff0f3;
}

.pressly-contact-hero-note strong {
  display: block;
  margin-bottom: 3px;
  color: #25282d;
  font-size: 13px;
  font-weight: 500;
}

.pressly-contact-hero-note p {
  margin: 0;
  color: #8a8f96;
  font-size: 12px;
  line-height: 1.55;
}

.pressly-contact-channels {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 14px;
  margin-top: 46px;
}

.pressly-contact-channel {
  display: grid;
  grid-template-columns: 46px minmax(0,1fr) 18px;
  gap: 14px;
  align-items: center;
  min-width: 0;
  padding: 20px;
  border: 1px solid #e6e8eb;
  border-radius: 14px;
  background: #fff;
  transition: .22s ease;
}

.pressly-contact-channel:hover {
  transform: translateY(-2px);
  border-color: #e2c3ca;
  box-shadow: 0 14px 32px rgba(20,24,30,.055);
}

.pressly-contact-channel-icon {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border-radius: 12px;
  color: #c83255;
  background: #fff0f3;
  font-size: 16px;
}

.pressly-contact-channel-copy {
  display: block;
  min-width: 0;
}

.pressly-contact-channel-copy small,.pressly-contact-channel-copy strong,.pressly-contact-channel-copy em {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.pressly-contact-channel-copy small {
  margin-bottom: 3px;
  color: #a0a4aa;
  font-size: 9px;
  font-style: normal;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.pressly-contact-channel-copy strong {
  color: #272a2f;
  font-size: 13px;
  font-weight: 500;
}

.pressly-contact-channel-copy em {
  margin-top: 3px;
  color: #8b9097;
  font-size: 11px;
  font-style: normal;
}

.pressly-contact-channel-arrow {
  color: #b8bcc2;
  font-size: 10px;
  transition: .2s ease;
}

.pressly-contact-channel:hover .pressly-contact-channel-arrow {
  color: #c83255;
  transform: translateX(2px);
}

/* Contact Form */

.pressly-contact-main {
  padding: 76px 0 82px;
  background: #fff;
}

.pressly-contact-layout {
  display: grid;
  grid-template-columns: minmax(0,1.28fr) minmax(330px,.72fr);
  gap: 32px;
  align-items: start;
}

.pressly-contact-form-card {
  padding: 36px;
  border: 1px solid #e6e8eb;
  border-radius: 18px;
  background: #fff;
}

.pressly-contact-card-head {
  max-width: 650px;
  margin-bottom: 30px;
}

.pressly-contact-card-head h2 {
  margin: 0 0 10px;
  color: #1b1d21;
  font-size: 31px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -.025em;
}

.pressly-contact-card-head p {
  margin: 0;
  color: #858a91;
  font-size: 13px;
  line-height: 1.7;
}

.pressly-contact-form {
  display: grid;
  gap: 18px;
}

.pressly-contact-fields {
  display: grid;
  gap: 18px;
}

.pressly-contact-fields.two-cols {
  grid-template-columns: repeat(2,minmax(0,1fr));
}

.pressly-contact-form label {
  display: block;
  margin: 0;
  color: #444950;
  font-size: 12px;
  font-weight: 400;
}

.pressly-contact-form label > span {
  display: block;
  margin-bottom: 8px;
}

.pressly-contact-form input,.pressly-contact-form select,.pressly-contact-form textarea {
  width: 100%;
  border: 1px solid #e1e4e8;
  border-radius: 10px;
  background: #fbfbfc;
  color: #292d32;
  font: inherit;
  font-size: 13px;
  outline: 0;
  transition: .2s ease;
}

.pressly-contact-form input,.pressly-contact-form select {
  height: 48px;
  padding: 0 14px;
}

.pressly-contact-form textarea {
  min-height: 156px;
  padding: 13px 14px;
  line-height: 1.65;
  resize: vertical;
}

.pressly-contact-form input::placeholder,.pressly-contact-form textarea::placeholder {
  color: #adb1b7;
}

.pressly-contact-form input:focus,.pressly-contact-form select:focus,.pressly-contact-form textarea:focus {
  border-color: #d88a9c;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(200,50,85,.07);
}

.pressly-contact-form-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-top: 4px;
}

.pressly-contact-form-bottom p {
  margin: 0;
  color: #9a9ea4;
  font-size: 10px;
  line-height: 1.5;
}

.pressly-contact-form-bottom p i {
  margin-right: 5px;
  color: #c83255;
}

.pressly-contact-form-bottom button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-width: 142px;
  min-height: 46px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: #c83255;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  transition: .2s ease;
}

.pressly-contact-form-bottom button:hover {
  background: #ae2948;
  transform: translateY(-1px);
}

.pressly-contact-form-bottom button i {
  font-size: 9px;
}

.pressly-contact-side {
  display: grid;
  gap: 18px;
}

.pressly-contact-side-card {
  padding: 27px;
  border: 1px solid #e6e8eb;
  border-radius: 16px;
  background: #fff;
}

.pressly-contact-side-card h3 {
  margin: 0 0 11px;
  color: #202328;
  font-size: 24px;
  line-height: 1.3;
  font-weight: 400;
  letter-spacing: -.02em;
}

.pressly-contact-side-card > p {
  margin: 0;
  color: #858a91;
  font-size: 13px;
  line-height: 1.7;
}

.pressly-contact-side-dark {
  padding: 31px;
  border-color: #17191d;
  background: #17191d;
}

.pressly-contact-side-dark .pressly-contact-kicker {
  color: #e58ba0;
}

.pressly-contact-side-dark h3 {
  color: #fff;
}

.pressly-contact-side-dark > p {
  color: #adb1b7;
}

.pressly-contact-side-dark > a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: #fff;
  font-size: 11px;
  font-weight: 500;
}

.pressly-contact-side-dark > a:hover {
  color: #e58ba0;
}

.pressly-contact-side-dark > a i {
  font-size: 9px;
}

.pressly-contact-info-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.pressly-contact-info-list li {
  display: grid;
  grid-template-columns: 34px minmax(0,1fr);
  gap: 12px;
  align-items: start;
  padding: 17px 0;
  border-bottom: 1px solid #eceef0;
}

.pressly-contact-info-list li:first-child {
  padding-top: 5px;
}

.pressly-contact-info-list li:last-child {
  padding-bottom: 2px;
  border-bottom: 0;
}

.pressly-contact-info-list > li > i {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 50%;
  color: #c83255;
  background: #fff0f3;
  font-size: 13px;
}

.pressly-contact-info-list small,.pressly-contact-info-list strong,.pressly-contact-info-list span {
  display: block;
}

.pressly-contact-info-list small {
  margin-bottom: 3px;
  color: #a0a4aa;
  font-size: 9px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.pressly-contact-info-list strong {
  color: #2c3035;
  font-size: 12px;
  font-weight: 500;
}

.pressly-contact-info-list strong a {
  color: inherit;
}

.pressly-contact-info-list strong a:hover {
  color: #c83255;
}

.pressly-contact-info-list span {
  margin-top: 2px;
  color: #8a8f96;
  font-size: 11px;
}

.pressly-contact-social-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 26px;
  border: 1px solid #e6e8eb;
  border-radius: 16px;
  background: #fff;
}

.pressly-contact-social-card p {
  margin: 0;
  color: #90949b;
  font-size: 11px;
}

.pressly-contact-social-card ul {
  display: flex;
  gap: 7px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.pressly-contact-social-card a {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border: 1px solid #e6e8eb;
  border-radius: 50%;
  color: #60656c;
  background: #fff;
  font-size: 12px;
}

.pressly-contact-social-card a:hover {
  color: #fff;
  border-color: #c83255;
  background: #c83255;
}

/* FAQ */

.pressly-contact-faq-section {
  padding: 72px 0 80px;
  background: #f8f9fa;
  border-top: 1px solid #eef0f2;
}

.pressly-contact-faq-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 28px;
}

.pressly-contact-faq-head h2 {
  margin: 0;
  color: #1b1d21;
  font-size: 31px;
  line-height: 1.2;
  font-weight: 400;
  letter-spacing: -.025em;
}

.pressly-contact-faq-head > p {
  max-width: 390px;
  margin: 0;
  color: #8b9097;
  font-size: 12px;
  line-height: 1.65;
}

.pressly-contact-faq-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
}

.pressly-contact-faq-grid article {
  position: relative;
  min-height: 230px;
  padding: 28px;
  border: 1px solid #e5e7ea;
  border-radius: 15px;
  background: #fff;
}

.pressly-contact-faq-grid article > span {
  position: absolute;
  right: 24px;
  top: 23px;
  color: #d1d4d8;
  font-size: 10px;
}

.pressly-contact-faq-grid h3 {
  max-width: 240px;
  margin: 29px 0 11px;
  color: #25282d;
  font-size: 19px;
  line-height: 1.35;
  font-weight: 400;
}

.pressly-contact-faq-grid p {
  margin: 0;
  color: #7d8289;
  font-size: 12px;
  line-height: 1.72;
}

@media (max-width:1199px) {
  .pressly-contact-hero-grid {
    gap: 42px;
  }

  .pressly-contact-hero-copy h1 {
    font-size: 47px;
  }

  .pressly-contact-layout {
    grid-template-columns: minmax(0,1.15fr) minmax(300px,.85fr);
  }

  .pressly-contact-channel {
    grid-template-columns: 42px minmax(0,1fr) 14px;
    padding: 18px;
  }

  .pressly-contact-channel-icon {
    width: 42px;
    height: 42px;
  }
}

@media (max-width:991px) {
  .pressly-contact-hero {
    padding: 34px 0 48px;
  }

  .pressly-contact-breadcrumb {
    margin-bottom: 34px;
  }

  .pressly-contact-hero-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .pressly-contact-hero-copy h1 {
    font-size: 42px;
  }

  .pressly-contact-hero-note {
    max-width: 440px;
  }

  .pressly-contact-channels {
    grid-template-columns: 1fr;
    gap: 10px;
    margin-top: 34px;
  }

  .pressly-contact-channel-copy small,.pressly-contact-channel-copy strong,.pressly-contact-channel-copy em {
    white-space: normal;
  }

  .pressly-contact-main {
    padding: 58px 0 64px;
  }

  .pressly-contact-layout {
    grid-template-columns: 1fr;
  }

  .pressly-contact-side {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .pressly-contact-social-card {
    grid-column: 1/-1;
  }

  .pressly-contact-faq-section {
    padding: 56px 0 62px;
  }

  .pressly-contact-faq-grid {
    grid-template-columns: 1fr;
  }

  .pressly-contact-faq-grid article {
    min-height: 0;
  }

  .pressly-contact-faq-grid h3 {
    margin-top: 12px;
  }
}

@media (max-width:767px) {
  .pressly-contact-hero-copy h1 {
    font-size: 36px;
  }

  .pressly-contact-hero-copy p {
    font-size: 14px;
  }

  .pressly-contact-form-card {
    padding: 26px 22px;
    border-radius: 14px;
  }

  .pressly-contact-card-head h2,.pressly-contact-faq-head h2 {
    font-size: 27px;
  }

  .pressly-contact-fields.two-cols {
    grid-template-columns: 1fr;
  }

  .pressly-contact-form-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .pressly-contact-form-bottom button {
    width: 100%;
  }

  .pressly-contact-side {
    grid-template-columns: 1fr;
  }

  .pressly-contact-social-card {
    grid-column: auto;
  }

  .pressly-contact-faq-head {
    align-items: flex-start;
    flex-direction: column;
    gap: 9px;
  }
}

@media (max-width:480px) {
  .pressly-contact-hero {
    padding-top: 27px;
  }

  .pressly-contact-breadcrumb {
    margin-bottom: 28px;
  }

  .pressly-contact-hero-copy h1 {
    font-size: 32px;
  }

  .pressly-contact-channel {
    grid-template-columns: 40px minmax(0,1fr);
  }

  .pressly-contact-channel-arrow {
    display: none;
  }

  .pressly-contact-side-dark,.pressly-contact-side-card {
    padding: 24px 21px;
  }

  .pressly-contact-social-card {
    align-items: flex-start;
    flex-direction: column;
  }
}

.pressly-contact-page {
  background: #fff;
}

.pressly-contact-page .pressly-contact-kicker {
  margin-bottom: 9px;
  color: #c83255;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.pressly-contact-hero {
  padding: 34px 0 42px;
  background: #fff;
  border-bottom: 1px solid #eceef0;
}

.pressly-contact-breadcrumb {
  margin-bottom: 26px;
  font-size: 11px;
}

.pressly-contact-hero-grid-simple {
  display: block;
  max-width: 760px;
}

.pressly-contact-hero-copy h1 {
  margin: 0 0 12px;
  color: #191c20;
  font-size: 46px;
  line-height: 1.08;
  font-weight: 400;
  letter-spacing: -.035em;
}

.pressly-contact-hero-copy p {
  max-width: 680px;
  margin: 0;
  color: #7c8289;
  font-size: 14px;
  line-height: 1.75;
}

.pressly-contact-hero-note,
.pressly-contact-channels {
  display: none !important;
}

.pressly-contact-main {
  padding: 64px 0 72px;
  background: #f6f7f8;
}

.pressly-contact-layout {
  grid-template-columns: minmax(0,1.45fr) minmax(300px,.55fr);
  gap: 26px;
}

.pressly-contact-form-card {
  padding: 36px;
  border: 1px solid #e5e7ea;
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 14px 38px rgba(20,24,30,.045);
}

.pressly-contact-card-head {
  max-width: 590px;
  margin-bottom: 28px;
}

.pressly-contact-card-head h2 {
  margin: 0 0 8px;
  font-size: 29px;
  font-weight: 400;
  letter-spacing: -.025em;
}

.pressly-contact-card-head p {
  color: #858b92;
  font-size: 12px;
}

.pressly-contact-form {
  gap: 16px;
}

.pressly-contact-fields {
  gap: 16px;
}

.pressly-contact-form label {
  color: #4a5057;
  font-size: 11px;
  font-weight: 400;
}

.pressly-contact-form label > span {
  margin-bottom: 7px;
}

.pressly-contact-form input,
.pressly-contact-form select,
.pressly-contact-form textarea {
  border-color: #e2e5e8;
  border-radius: 8px;
  background: #fff;
  color: #24282d;
  font-size: 12px;
}

.pressly-contact-form input,
.pressly-contact-form select {
  height: 46px;
  padding: 0 13px;
}

.pressly-contact-form textarea {
  min-height: 145px;
  padding: 12px 13px;
}

.pressly-contact-form input:focus,
.pressly-contact-form select:focus,
.pressly-contact-form textarea:focus {
  border-color: #c83255;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(200,50,85,.055);
}

.pressly-contact-form-bottom {
  padding-top: 8px;
  border-top: 1px solid #f0f1f2;
}

.pressly-contact-form-bottom button {
  min-width: 132px;
  min-height: 44px;
  padding: 0 17px;
  border-radius: 8px;
  font-weight: 400;
}

.pressly-contact-side {
  display: grid;
  gap: 16px;
}

.pressly-contact-side-card,
.pressly-contact-side-details,
.pressly-contact-side-note {
  padding: 25px;
  border: 1px solid #e5e7ea;
  border-radius: 14px;
  background: #fff;
  box-shadow: none;
}

.pressly-contact-side-card h3 {
  margin: 0 0 12px;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 400;
}

.pressly-contact-side-note p {
  margin: 0;
  color: #858b92;
  font-size: 12px;
  line-height: 1.7;
}

.pressly-contact-info-list li {
  grid-template-columns: 32px minmax(0,1fr);
  gap: 11px;
  padding: 15px 0;
}

.pressly-contact-info-list > li > i {
  width: 32px;
  height: 32px;
  background: #f8eef1;
}

.pressly-contact-info-list strong {
  font-size: 11px;
  font-weight: 400;
}

.pressly-contact-info-list span {
  color: #91969d;
  font-size: 10px;
}

.pressly-contact-mini-social {
  display: flex;
  gap: 7px;
  margin-top: 19px;
}

.pressly-contact-mini-social a {
  display: grid;
  width: 33px;
  height: 33px;
  place-items: center;
  border: 1px solid #e5e7ea;
  border-radius: 50%;
  color: #6d737a;
  background: #fff;
  font-size: 11px;
  transition: .2s ease;
}

.pressly-contact-mini-social a:hover {
  color: #fff;
  border-color: #c83255;
  background: #c83255;
}

.pressly-contact-faq-section {
  padding: 62px 0 70px;
  background: #fff;
  border-top: 1px solid #eceef0;
}

.pressly-contact-faq-head {
  margin-bottom: 24px;
}

.pressly-contact-faq-head h2 {
  font-size: 28px;
  font-weight: 400;
}

.pressly-contact-faq-grid {
  gap: 14px;
}

.pressly-contact-faq-grid article {
  min-height: 0;
  padding: 24px;
  border-radius: 12px;
  background: #fafafa;
}

.pressly-contact-faq-grid h3 {
  margin: 24px 0 9px;
  font-size: 17px;
  font-weight: 400;
}

.pressly-contact-faq-grid p {
  color: #838991;
  font-size: 11px;
  line-height: 1.7;
}

@media (max-width: 991px) {
  .pressly-contact-layout {
    grid-template-columns: 1fr;
  }

  .pressly-contact-side {
    grid-template-columns: repeat(2,minmax(0,1fr));
  }

  .pressly-contact-hero-copy h1 {
    font-size: 40px;
  }
}

@media (max-width: 767px) {
  .pressly-contact-hero {
    padding: 28px 0 34px;
  }

  .pressly-contact-hero-copy h1 {
    font-size: 34px;
  }

  .pressly-contact-main {
    padding: 48px 0 54px;
  }

  .pressly-contact-form-card {
    padding: 25px 21px;
  }

  .pressly-contact-fields.two-cols {
    grid-template-columns: 1fr;
  }

  .pressly-contact-side {
    grid-template-columns: 1fr;
  }

  .pressly-contact-faq-section {
    padding: 48px 0 54px;
  }
}

@media (max-width: 479px) {
  .pressly-contact-hero-copy h1 {
    font-size: 31px;
  }

  .pressly-contact-form-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .pressly-contact-form-bottom button {
    width: 100%;
  }
}


/*============================================================
# 27. REGULAR PAGE
============================================================*/

.pressly-regular-page {
  background: #f6f6f7;
}

/* Page Header */

.pressly-regular-page .regular-page-head {
  background: #ffffff;
  border-top: 1px solid #eeeeef;
  border-bottom: 1px solid #e9e9eb;
  padding: 34px 0 42px;
}

.pressly-regular-page .regular-breadcrumb {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 26px;
  color: #9a9aa1;
  font-size: 12px;
  line-height: 1;
}

.pressly-regular-page .regular-breadcrumb a {
  color: #717178;
}

.pressly-regular-page .regular-breadcrumb a:hover {
  color: #c83255;
}

.pressly-regular-page .regular-breadcrumb i {
  font-size: 10px;
  color: #c4c4c8;
}

.pressly-regular-page .regular-page-head-inner {
  max-width: 760px;
}

.pressly-regular-page .regular-page-kicker,
.pressly-regular-page .regular-content-eyebrow,
.pressly-regular-page .regular-sidebar-kicker {
  display: inline-block;
  color: #c83255;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
}

.pressly-regular-page .regular-page-head h1 {
  margin: 8px 0 12px;
  color: #17171a;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.1;
  font-weight: 400;
  letter-spacing: -.035em;
}

.pressly-regular-page .regular-page-head p {
  max-width: 650px;
  margin: 0;
  color: #74747b;
  font-size: 16px;
  line-height: 1.75;
  font-weight: 300;
}

/* Page Content */

.pressly-regular-page .regular-page-main {
  padding: 64px 0 72px;
}

.pressly-regular-page .regular-page-layout {
  --bs-gutter-x: 34px;
}

/* Content Card */

.pressly-regular-page .regular-content-card {
  background: #ffffff;
  border: 1px solid #e7e7e9;
  border-radius: 16px;
  padding: 46px 48px;
  box-shadow: 0 12px 38px rgba(25, 25, 30, .035);
}

.pressly-regular-page .regular-content-intro {
  margin-bottom: 34px;
}

.pressly-regular-page .regular-content-intro h2 {
  max-width: 700px;
  margin: 9px 0 15px;
  color: #19191c;
  font-size: 34px;
  line-height: 1.25;
  letter-spacing: -.025em;
  font-weight: 400;
}

.pressly-regular-page .regular-lead {
  margin: 0;
  color: #696970;
  font-size: 17px;
  line-height: 1.8;
  font-weight: 300;
}

.pressly-regular-page .regular-feature-image {
  margin: 0 0 42px;
}

.pressly-regular-page .regular-feature-image img {
  display: block;
  width: 100%;
  height: 390px;
  object-fit: cover;
  border-radius: 12px;
}

.pressly-regular-page .regular-feature-image figcaption {
  margin-top: 10px;
  color: #9a9aa1;
  font-size: 11px;
  line-height: 1.55;
}

.pressly-regular-page .regular-copy-section {
  scroll-margin-top: 96px;
  margin-top: 42px;
  padding-top: 42px;
  border-top: 1px solid #ededee;
}

.pressly-regular-page .regular-copy-section h3 {
  margin: 0 0 16px;
  color: #202024;
  font-size: 24px;
  line-height: 1.35;
  font-weight: 400;
  letter-spacing: -.015em;
}

.pressly-regular-page .regular-copy-section > p {
  color: #66666d;
  font-size: 15px;
  line-height: 1.9;
  font-weight: 300;
}

.pressly-regular-page .regular-principles-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 25px;
}

.pressly-regular-page .regular-principle {
  min-height: 190px;
  padding: 22px 20px;
  background: #f8f8f9;
  border: 1px solid #ededee;
  border-radius: 12px;
}

.pressly-regular-page .regular-principle > span {
  color: #c83255;
  font-size: 11px;
  font-weight: 500;
}

.pressly-regular-page .regular-principle h4 {
  margin: 20px 0 9px;
  color: #252529;
  font-size: 16px;
  font-weight: 400;
}

.pressly-regular-page .regular-principle p {
  margin: 0;
  color: #797980;
  font-size: 13px;
  line-height: 1.75;
  font-weight: 300;
}

.pressly-regular-page .regular-quote {
  margin: 42px 0 0;
  padding: 30px 32px;
  border: 0;
  border-left: 3px solid #c83255;
  border-radius: 0 12px 12px 0;
  background: #fbf7f8;
}

.pressly-regular-page .regular-quote p {
  margin: 0 0 14px;
  color: #2d2d31;
  font-size: 22px;
  line-height: 1.55;
  font-weight: 300;
}

.pressly-regular-page .regular-quote cite {
  color: #8c8c92;
  font-size: 12px;
  font-style: normal;
}

.pressly-regular-page .regular-check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 13px 20px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.pressly-regular-page .regular-check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #626269;
  font-size: 13px;
  line-height: 1.65;
}

.pressly-regular-page .regular-check-list i {
  flex: 0 0 23px;
  width: 23px;
  height: 23px;
  margin-top: 1px;
  border-radius: 50%;
  background: rgba(200, 50, 85, .09);
  color: #c83255;
  text-align: center;
  line-height: 23px;
  font-size: 10px;
}

.pressly-regular-page .regular-closing-box {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-top: 46px;
  padding: 34px;
  border: 0;
  border-radius: 12px;
  background: #202024;
}

.pressly-regular-page .regular-closing-box h3 {
  max-width: 520px;
  margin-top: 8px;
  color: #ffffff;
  font-size: 21px;
}

.pressly-regular-page .regular-closing-box p {
  max-width: 520px;
  margin-bottom: 0;
  color: #b9b9bf;
  font-size: 13px;
  line-height: 1.75;
}

.pressly-regular-page .regular-inline-link {
  flex: 0 0 auto;
  color: #ffffff;
  font-size: 12px;
  white-space: nowrap;
}

.pressly-regular-page .regular-inline-link i {
  margin-left: 6px;
  color: #c83255;
}

.pressly-regular-page .regular-sidebar-stack {
  position: sticky;
  top: 84px;
  display: grid;
  gap: 20px;
}

.pressly-regular-page .regular-sidebar-card {
  background: #ffffff;
  border: 1px solid #e7e7e9;
  border-radius: 14px;
  padding: 26px;
  box-shadow: 0 10px 30px rgba(25, 25, 30, .025);
}

.pressly-regular-page .regular-toc-card nav {
  display: grid;
  margin-top: 15px;
}

.pressly-regular-page .regular-toc-card nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px 0;
  border-bottom: 1px solid #efeff0;
  color: #57575d;
  font-size: 13px;
}

.pressly-regular-page .regular-toc-card nav a:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.pressly-regular-page .regular-toc-card nav a span {
  color: #b0b0b6;
  font-size: 10px;
}

.pressly-regular-page .regular-toc-card nav a:hover {
  color: #c83255;
  padding-left: 4px;
}

.pressly-regular-page .regular-newsletter-card {
  background: #ffffff;
}

.pressly-regular-page .regular-newsletter-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: #f9eef1;
  color: #c83255;
  font-size: 15px;
}

.pressly-regular-page .regular-newsletter-card h3 {
  margin: 9px 0 8px;
  color: #232327;
  font-size: 20px;
  line-height: 1.35;
  font-weight: 400;
}

.pressly-regular-page .regular-newsletter-card p {
  margin-bottom: 18px;
  color: #85858b;
  font-size: 12px;
  line-height: 1.7;
  font-weight: 300;
}

.pressly-regular-page .regular-newsletter-card form {
  display: grid;
  gap: 9px;
}

.pressly-regular-page .regular-newsletter-card input {
  width: 100%;
  height: 44px;
  border: 1px solid #dedee1;
  border-radius: 8px;
  background: #ffffff;
  padding: 0 13px;
  color: #333338;
  outline: 0;
  font-size: 12px;
}

.pressly-regular-page .regular-newsletter-card input:focus {
  border-color: #c83255;
  box-shadow: 0 0 0 3px rgba(200, 50, 85, .08);
}

.pressly-regular-page .regular-newsletter-card button {
  height: 43px;
  border: 0;
  border-radius: 8px;
  background: #c83255;
  color: #ffffff;
  font-size: 12px;
  font-weight: 400;
  transition: background .2s ease, transform .2s ease;
}

.pressly-regular-page .regular-newsletter-card button:hover {
  background: #b52b49;
  transform: translateY(-1px);
}

.pressly-regular-page .regular-ad-card {
  min-height: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px dashed #d9d9dc;
  border-radius: 14px;
  background: #f1f1f2;
  color: #a1a1a7;
  text-align: center;
}

.pressly-regular-page .regular-ad-card span {
  font-size: 9px;
  letter-spacing: .16em;
  text-transform: uppercase;
}

.pressly-regular-page .regular-ad-card strong {
  color: #6e6e75;
  font-size: 19px;
  font-weight: 400;
}

.pressly-regular-page .regular-ad-card small {
  font-size: 10px;
}

.pressly-regular-page .regular-bottom-ad {
  padding: 0 0 70px;
  background: #f6f6f7;
}

@media (max-width: 991.98px) {
  .pressly-regular-page .regular-page-main {
    padding: 48px 0 58px;
  }

  .pressly-regular-page .regular-content-card {
    padding: 38px;
  }

  .pressly-regular-page .regular-sidebar-stack {
    position: static;
    margin-top: 28px;
    grid-template-columns: 1fr 1fr;
  }

  .pressly-regular-page .regular-ad-card {
    grid-column: 1 / -1;
    min-height: 170px;
  }
}

@media (max-width: 767.98px) {
  .pressly-regular-page .regular-page-head {
    padding: 26px 0 32px;
  }

  .pressly-regular-page .regular-breadcrumb {
    margin-bottom: 20px;
  }

  .pressly-regular-page .regular-page-head p {
    font-size: 14px;
  }

  .pressly-regular-page .regular-content-card {
    padding: 28px 22px;
    border-radius: 12px;
  }

  .pressly-regular-page .regular-content-intro h2 {
    font-size: 27px;
  }

  .pressly-regular-page .regular-lead {
    font-size: 15px;
  }

  .pressly-regular-page .regular-feature-image img {
    height: 280px;
  }

  .pressly-regular-page .regular-principles-grid {
    grid-template-columns: 1fr;
  }

  .pressly-regular-page .regular-principle {
    min-height: 0;
  }

  .pressly-regular-page .regular-check-list {
    grid-template-columns: 1fr;
  }

  .pressly-regular-page .regular-closing-box {
    display: block;
    padding: 26px 22px;
  }

  .pressly-regular-page .regular-inline-link {
    display: inline-block;
    margin-top: 18px;
  }

  .pressly-regular-page .regular-sidebar-stack {
    grid-template-columns: 1fr;
  }

  .pressly-regular-page .regular-ad-card {
    grid-column: auto;
  }
}


/*============================================================
# 28. GLOBAL UI — LOADER & LANGUAGE
============================================================*/

#nav-aside {
  box-shadow: none !important;
}

#nav-aside.active {
  box-shadow: -24px 0 70px rgba(0, 0, 0, .20) !important;
}

/* Language Switcher */

.pressly-language-switcher {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-btns > button,
.pressly-language-switcher > .language-btn {
  width: 40px;
  height: 40px;
  padding: 0;
  border: 1px solid #eceef1;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  background: #fff;
  color: var(--pressly-ink);
  box-shadow: 0 3px 12px rgba(23, 28, 35, .035);
  line-height: 1;
  transition: color .2s ease, background-color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.pressly-language-switcher > .language-btn {
  width: 48px;
  border-radius: 22px;
  font-family: "Roboto", Arial, sans-serif;
}

.pressly-language-switcher > .language-btn i {
  font-size: 13px;
}

.pressly-language-switcher .language-code {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: .25px;
}

.nav-btns > button:hover,
.nav-btns > button:focus,
.pressly-language-switcher > .language-btn:hover,
.pressly-language-switcher > .language-btn:focus,
.pressly-language-switcher.is-open > .language-btn {
  color: #fff;
  background: var(--pressly-accent);
  border-color: var(--pressly-accent);
  box-shadow: 0 8px 20px rgba(200, 50, 85, .20);
  transform: translateY(-1px);
  outline: none;
}

.pressly-language-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  width: 164px;
  padding: 7px;
  border: 1px solid #e8eaed;
  border-radius: 12px;
  background: #fff;
  box-shadow: 0 18px 45px rgba(20, 24, 30, .13);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  pointer-events: none;
  z-index: 1320;
  transition: opacity .18s ease, visibility .18s ease, transform .18s ease;
}

.pressly-language-menu:before {
  content: "";
  position: absolute;
  top: -5px;
  right: 18px;
  width: 9px;
  height: 9px;
  border-left: 1px solid #e8eaed;
  border-top: 1px solid #e8eaed;
  background: #fff;
  transform: rotate(45deg);
}

.pressly-language-switcher.is-open .pressly-language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.pressly-language-option {
  width: 100%;
  min-height: 42px;
  padding: 0 10px;
  border: 0;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  color: #4f5359;
  font-family: "Roboto", Arial, sans-serif;
  font-size: 13px;
  font-weight: 400;
  text-align: left;
  transition: color .16s ease, background-color .16s ease;
}

.pressly-language-option + .pressly-language-option {
  margin-top: 2px;
}

.pressly-language-option small {
  color: #a0a4aa;
  font-size: 9px;
  font-weight: 500;
  letter-spacing: .7px;
}

.pressly-language-option:hover,
.pressly-language-option:focus,
.pressly-language-option.is-active {
  color: var(--pressly-accent);
  background: rgba(200, 50, 85, .06);
  outline: none;
}

.pressly-language-option.is-active small {
  color: var(--pressly-accent);
}

/* Page Loader */

.pressly-page-loader {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 3000;
  overflow: hidden;
  opacity: 1;
  pointer-events: none;
  transition: opacity .24s ease;
}

.pressly-page-loader span {
  display: block;
  width: 8%;
  height: 100%;
  background: var(--pressly-accent);
  box-shadow: 0 0 12px rgba(200, 50, 85, .34);
  transform-origin: left center;
  transition: width .34s cubic-bezier(.22, .61, .36, 1);
}

.pressly-page-loader.is-complete {
  opacity: 0;
}

.pressly-page-loader.is-idle {
  display: none;
}

.pressly-reading-progress {
  display: none !important;
}

@media only screen and (max-width: 575px) {
  .pressly-language-switcher > .language-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
  }

  .pressly-language-switcher .language-code {
    display: none;
  }

  .pressly-language-menu {
    right: -46px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .pressly-page-loader span,
  .pressly-page-loader,
  .pressly-language-menu,
  .pressly-language-switcher > .language-btn {
    transition: none !important;
  }
}

.pressly-language-switcher > .language-btn {
  width: 44px;
  min-width: 44px;
  height: 40px;
  padding: 0 9px;
  border-radius: 20px;
  gap: 0;
  white-space: nowrap;
}

.pressly-language-switcher .language-code {
  display: inline-block;
  font-size: 11px;
  line-height: 1;
  font-weight: 400;
  letter-spacing: .04em;
}

.pressly-language-menu {
  right: 0;
  width: 156px;
  max-width: calc(100vw - 24px);
}

.pressly-language-menu:before {
  right: 17px;
}

@media only screen and (max-width: 575px) {
  #nav-top > .container {
    min-height: 72px;
    padding-left: 12px;
    padding-right: 12px;
  }

  .nav-btns {
    gap: 3px;
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .nav-btns > button {
    width: 34px;
    min-width: 34px;
    height: 34px;
    line-height: 34px;
  }

  .pressly-language-switcher > .language-btn {
    width: 38px;
    min-width: 38px;
    height: 34px;
    padding: 0 6px;
    border-radius: 17px;
  }

  .pressly-language-switcher .language-code {
    display: inline-block;
    font-size: 10px;
  }

  .pressly-language-menu {
    top: calc(100% + 9px);
    right: 0;
    width: 150px;
  }

  .pressly-wordmark-main {
    font-size: 26px;
    letter-spacing: -1.4px;
  }

  .pressly-wordmark-main:after {
    width: 5px;
    height: 5px;
    margin-left: 3px;
  }

  .pressly-wordmark small {
    font-size: 5.5px;
    letter-spacing: 1.7px;
  }
}

@media only screen and (max-width: 380px) {
  #nav-top > .container {
    min-height: 68px;
    padding-left: 8px;
    padding-right: 8px;
  }

  .nav-btns {
    gap: 2px;
  }

  .nav-btns > button {
    width: 31px;
    min-width: 31px;
    height: 31px;
    line-height: 31px;
    font-size: 12px;
  }

  .pressly-language-switcher > .language-btn {
    width: 35px;
    min-width: 35px;
    height: 31px;
    border-radius: 16px;
    padding: 0 5px;
  }

  .pressly-wordmark-main {
    font-size: 24px;
  }

  .pressly-wordmark small {
    font-size: 5px;
    letter-spacing: 1.45px;
  }
}

/* Standard Dropdown Alignment */
@media (min-width: 992px) {
  .nav-menu > li:last-child > .dropdown { left: auto; right: 0; transform-origin: top right; }
}
