/*!
Theme Name: dm7 theme
Author: Dm7 Studio
Author URI: https://dm7studio.com.br/
Description: Description
Version: 1.2.1
Tested up to: 5.4
Requires PHP: 5.6
License: GNU General Public License v2 or later
License URI: LICENSE
Text Domain: dm7-theme

*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Box sizing
--------------------------------------------- */

/* Inherit box-sizing to more easily change it's value on a component level.
@link http://css-tricks.com/inheriting-box-sizing-probably-slightly-better-best-practice/ */
*,
*::before,
*::after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

/*--------------------------------------------------------------
# Fonts
--------------------------------------------------------------*/

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: 100%;
  font-display: swap;
  src: url('./assets/fonts/OpenSans-Regular.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: 100%;
  src: url('./assets/fonts/OpenSans-SemiBold.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Roboto Condensed';
  font-style: normal;
  font-weight: 600;
  src: url('./assets/fonts/RobotoCondensed-SemiBold.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}


/*--------------------------------------------------------------
# CSS Theme Vars
--------------------------------------------------------------*/

:root {
  /* Type */
  --theme-font-family              : "Open Sans", sans-serif;
  --theme-font-family-title        : "Roboto Condensed", sans-serif;
  --theme-font-weight              : 400;
  --theme-font-weight-bold         : 600;
  --theme-font-weight-title        : 600;

  /* Base Colors */
  --theme-color-bg                 : #fff;
  --theme-color-bg-soft            : #f6f6f6;
  --theme-color-border             : #e1e1e1;
  --theme-color-border-light       : #f5f5f5;
  --theme-color-text               : #111111;
  --theme-color-text-secondary     : #767676;

  /* Layers */
  --theme-zindex-ads-billboard      : 400;
  --theme-zindex-header-search      : 500;
  --theme-zindex-header             : 900;
  --theme-zindex-header-menu-mob    : 1000;
  --theme-zindex-header-menu-toggle : 1100;
  --theme-zindex-submenu-desk       : 1200;
  --theme-zindex-newsletter-modal   : 1400;

  /* Others */
  --theme-header-height             : 70px;
}

/*--------------------------------------------------------------
# Elements
--------------------------------------------------------------*/

html {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  background-color: var(--theme-color-bg);
  color: var(--theme-color-text);
  font-family: var(--theme-font-family);
  font-size: 16px;
  font-weight: var(--theme-font-weight);
  line-height: 1.5;
  min-height: 100%;
}

body {
  margin: 0;
}

a {
  color: currentColor;
  text-decoration: none;
}

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

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

ul {
  list-style: disc;
}

ol {
  list-style: decimal;
}

embed,
iframe,
object {
  max-width: 100%;
}


figure {
  margin: 1em 0;
}

table {
  margin: 0 0 1.5em;
  width: 100%;
}

h1,h2,h3,h4,h5,h6 {
  font-family: var(--theme-font-family-title);
  font-weight: var(--theme-font-weight-title);
}

/*--------------------------------------------------------------
# Accessibility
--------------------------------------------------------------*/

/* Text meant only for screen readers. */
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: var(--theme-font-weight-bold);
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
  outline: 0;
}

/*--------------------------------------------------------------
# Objects - Container
--------------------------------------------------------------*/

.o-container {
  margin: 0 auto;
  max-width: 1130px;
  padding: 0 20px;
  width: 100%;
  zoom: 1;
}

.o-container--sm {
  max-width: 640px;
}

.o-container--md {
  max-width: 768px;
}

/*--------------------------------------------------------------
# Components - Button
--------------------------------------------------------------*/

.c-button {
  align-items: center;
  background-color: var(--theme-color-primary);
  border-radius: 0;
  border: 0;
  color: var(--theme-color-primary-text);
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: var(--theme-font-weight-bold);
  height: 40px;
  padding: 0 20px;
}

.c-button:hover {
  opacity: 0.9;
}

.c-button:active {
  opacity: 0.85;
}

.c-button--primary-contrast {
  background-color: var(--theme-color-primary-contrast);
  color: var(--theme-color-primary);
}

.c-button--sm {
  font-size: 12px;
  height: 28px;
  padding: 0 12px;
}

/*--------------------------------------------------------------
# Components - Form Control
--------------------------------------------------------------*/

.c-form-control {
  border-radius: 0;
  border: solid 1px var(--theme-color-border);
  display: block;
  min-height: 40px;
  padding: 10px 15px;
  width: 100%;
}

.c-form-control:focus {
  outline: none;
  border-color: var(--theme-color-primary);
}

.c-form-control--email {
  background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" height="24px" viewBox="0 -960 960 960" width="24px" fill="%23111111"><path d="M172.31-180Q142-180 121-201q-21-21-21-51.31v-455.38Q100-738 121-759q21-21 51.31-21h615.38Q818-780 839-759q21 21 21 51.31v455.38Q860-222 839-201q-21 21-51.31 21H172.31ZM480-457.69 160-662.31v410q0 5.39 3.46 8.85t8.85 3.46h615.38q5.39 0 8.85-3.46t3.46-8.85v-410L480-457.69Zm0-62.31 313.85-200h-627.7L480-520ZM160-662.31V-720v467.69q0 5.39 3.46 8.85t8.85 3.46H160v-422.31Z"/></svg>');
  background-position: 10px center;
  background-repeat: no-repeat;
  background-size: 20px;
  padding-left: 38px;
}

/*--------------------------------------------------------------
# Components - Form Label
--------------------------------------------------------------*/

.c-form-label {
  display: block;
  margin-bottom: 8px;
  font-size: 16px;
}

/*--------------------------------------------------------------
# Components - Form Group
--------------------------------------------------------------*/

.c-form-group {
  margin-bottom: 20px;
}

/*--------------------------------------------------------------
# Components - Section Title
--------------------------------------------------------------*/

.c-section-title {
  border-bottom: solid 3px var(--theme-color-border-light);
  font-family: var(--theme-font-family-title);
  font-size: 24px;
  font-weight: var(--theme-font-weight-title);
  line-height: 1;
  padding-bottom: 15px;
  text-transform: uppercase;
  margin: 0 0 40px;
}

/*--------------------------------------------------------------
# Components - Subsection Title
--------------------------------------------------------------*/

.c-subsection-title {
  font-family: var(--theme-font-family-title);
  font-size: 21px;
  font-weight: var(--theme-font-weight-title);
  line-height: 1;
  margin: 0 0 20px;
  padding-bottom: 15px;
  text-transform: uppercase;
}


/*--------------------------------------------------------------
# Components - Footer
--------------------------------------------------------------*/

.c-footer a:hover {
  margin-top: 60px;
  opacity: 0.85;
}

.c-footer__branding {
  font-family: var(--theme-font-family-title);
  font-weight: var(--theme-font-weight-title);
  font-size: 21px;
  margin: 0 auto 20px;
  max-width: 200px;
  text-align: center;
}

.c-footer__description {
  font-size: 14px;
  margin: 0;
  width: 100%;
}

.c-footer__main {
  background-color: var(--theme-color-primary);
  color: var(--theme-color-primary-text);
  padding: 50px 0 70px;
}

.c-footer__foot {
  background-color: var(--theme-color-text);
  color: var(--theme-color-bg);
}

.c-footer__left {
  margin-bottom: 50px;
  text-align: center;
}

.c-footer__menus {
  display: grid;
  font-size: 14px;
  font-weight: var(--theme-font-weight-bold);
  gap: 20px;
  grid-template-columns: 1fr 1fr;
  justify-content: space-between;
  margin-bottom: 50px;
  text-align: left;
}

.c-footer__menus ul {
  display: flex;
  flex-direction: column;
  gap: 20px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.c-footer__copyright {
  font-size: 12px;
  margin: 0;
  padding: 10px 0;
  text-align: center;
}

.c-footer__subtitle {
  font-family: var(--theme-font-family-title);
  font-weight: var(--theme-font-weight-title);
  margin: 0 0 35px;
}

.c-footer__follow-us {
  max-width: 230px;
  margin: 0 auto;
  text-align: center;
}

.c-footer__follow-us ul {
  display: flex;
  gap: 30px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.c-footer__follow-us ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-footer__follow-us ul li a svg {
  width: 28px;
  height: 28px;
}

@media (min-width: 768px) {
  .c-footer__main {
    padding: 70px 0;
  }

  .c-footer__branding {
    margin: 0 0 50px;
    max-width: 260px;
    text-align: left;
  }

  .c-footer__wrapper {
    display: flex;
    gap: 40px;
    justify-content: space-between;
  }

  .c-footer__left {
    text-align: left;
    max-width: 400px;
  }

  .c-footer__menus {
    gap: 70px;
  }
}

/*--------------------------------------------------------------
# Components - Newsletter Section
--------------------------------------------------------------*/

.c-newsletter-section {
  background-color: var(--theme-color-bg-soft);
  justify-content: center;
  padding: 50px 0;
}

@media (min-width: 768px) {
  .c-newsletter-section {
    padding: 80px 0 90px;
  }
}

/*--------------------------------------------------------------
# Components - Newsletter Section
--------------------------------------------------------------*/

.c-newsletter-modal {
  align-items: center;
  background-color: rgba(0, 0, 0, 0.65);
  bottom: 0;
  display: flex;
  height: 100vh;
  justify-content: center;
  left: 0;
  left: 0;
  opacity: 0;
  padding: 0 30px;
  position: fixed;
  right: 0;
  top: 0;
  transition: opacity 0.1s ease-in-out;
  visibility: hidden;
  width: 100%;
  z-index: var(--theme-zindex-newsletter-modal);
}

.c-newsletter-modal.is-active {
  opacity: 1;
  visibility: visible;
}

.c-newsletter-modal__close {
  background: none;
  border: 0;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 25px;
}

.c-newsletter-modal__close svg {
  height: 32px;
  width: 32px;
}

.c-newsletter-modal__wrapper {
  background-color: var(--theme-color-bg-soft);
  border-radius: 12px;
  box-shadow: 0 7px 12px 1px rgba(0, 0, 0, .20);
  justify-content: center;
  padding: 80px 30px 80px 30px;
  position: relative;
  width: 100%;
}

@media (min-width: 768px) {
  .c-newsletter-modal__wrapper {
    max-width: 700px;
    padding: 100px 50px 80px 50px;
  }
}

/*--------------------------------------------------------------
# Components - Newsletter
--------------------------------------------------------------*/

.c-newsletter {
  align-items: stretch;
  background-color: var(--theme-color-bg-soft);
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
  max-width: 500px;
}

.c-newsletter__body {
  flex-grow: 1;
  width: 100%;
}

.c-newsletter__form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

.c-newsletter__form .c-form-control {
  border-color: var(--theme-color-text);
}
.c-newsletter__form .c-form-control::placeholder {
  color: var(--theme-color-text);
}

.c-newsletter__form .c-button {
  flex-shrink: 0;
  justify-content: center;
}

.c-newsletter__head {
  margin-bottom: 30px;
  text-align: center;
  width: 100%;
}

.c-newsletter__privacy {
  font-size: 11px;
  margin: 15px 0 0;
  text-align: center;
}

.c-newsletter__privacy a {
  font-weight: 700;
  text-decoration: underline;
}

.c-newsletter__text {
  font-size: 14px;
  line-height: 20px;
  margin: 0;
}

.c-newsletter__title {
  font-size: 32px;
  line-height: 38px;
  margin: 0 0 10px;
}

@media (min-width: 768px) {
  .c-newsletter {
    align-items: center;
    flex-direction: row;
    gap: 60px;
    margin: 0 auto;
    max-width: 700px;
  }

  .c-newsletter__form {
    flex-direction: row;
    gap: 0;
  }

  .c-newsletter__title {
    font-size: 38px;
    line-height: 42px;
    margin: 0 0 20px;
  }

  .c-newsletter__privacy {
    text-align: left;
  }

  .c-newsletter__head {
    margin-bottom: 0;
    text-align: right;
    width: 350px;
  }
}

/*--------------------------------------------------------------
# Components - Header
--------------------------------------------------------------*/

.c-header {
  margin-bottom: 30px;
}

.c-header__bar {
  background-color: var(--theme-color-primary);
  color: var(--theme-color-primary-text);
  position: relative;
  z-index: var(--theme-zindex-header);
}

.c-header__wrapper {
  align-items: center;
  display: flex;
  justify-content: space-between;
  min-height: var(--theme-header-height);
}

.c-header__bar a {
  color: inherit;
  text-decoration: none;
}

.c-header__site-title {
  font-family: var(--theme-font-family-title);
  font-size: 27px;
  font-weight: var(--theme-font-weight-title);
  line-height: 1;
  margin: 0;
  text-wrap: nowrap;
  white-space: nowrap;
}

.c-header__branding {
  align-items: center;
  display: flex;
  max-height: 60px;
  max-width: 150px;
}

.c-header__branding img {
  display: block;
}

.c-header__branding .custom-logo-link + .c-header__site-title {
  height: 0;
  visibility: hidden;
  width: 0;
}

.c-header__toggle-search {
  background-color: transparent;
  border: 0;
  color: inherit;
  cursor: pointer;
  margin-left: 15px;
  padding: 0;

  svg {
    width: 25px;
    height: 25px;
  }
}

@media (max-width: 767px) {
  .c-header__branding {
    margin-right: auto;
  }
}

@media (min-width: 768px) {
  .c-header__branding {
    max-width: 170px;
    margin-right: 60px;
  }

  a.c-header__subscribe {
    padding: 6px 20px 5px;
    margin-right: 30px;
  }

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

/*--------------------------------------------------------------
# Components - Header Search
--------------------------------------------------------------*/

.c-header-search {
  background-color: rgba(0, 0, 0, 0.8);
  height: 100vh;
  opacity: 0;
  position: fixed;
  transition: opacity 0.2s ease-in-out;
  visibility: hidden;
  width: 100%;
  z-index: var(--theme-zindex-header-search);
}

.c-header-search.is-active {
  opacity: 1;
  transition: opacity 0.1s ease-in-out;
  visibility: visible;
}

.c-header-search__bar {
  background-color: var(--theme-color-bg);
  padding: 20px 0;
  position: relative;
  top: -100%;
  transition: top 0.2s ease-in-out;
  width: 100%;
}

.c-header-search.is-active .c-header-search__bar {
  top: 0;
}

.c-header-search__wrapper {
  display: flex;
  gap: 10px;
  margin: 0 auto;
  max-width: 400px;
  width: 100%;
}

.c-header-search__wrapper input {
  flex-grow: 1;
}


/*--------------------------------------------------------------
# Components - Single Post
--------------------------------------------------------------*/

.c-single-post {
  margin-bottom: 80px;
}

@media (min-width: 768px) {
  .c-single-post {
    display: flex;
    gap: 80px;
    justify-content: center;
  }

  .c-single-post__main {
    flex-grow: 1;
    max-width: 750px;
  }

  .c-single-post__sidebar {
    width: 300px;
  }
}

/*--------------------------------------------------------------
# Components - Article
--------------------------------------------------------------*/

.c-article {
  position: relative;
}

.c-article__bar {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 15px 0 20px;
}

.c-article__category {
  display: flex;
  flex-wrap: wrap;
  font-family: var(--theme-font-family-title);
  font-size: 14px;
  font-weight: var(--theme-font-weight-title);
  gap: 10px 12px;
  line-height: 1;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.c-article__content {
  font-size: 17px;
  line-height: 30px;
}

.c-article__content * {
  max-width: 100%;
}

.c-article__content .wp-caption-text {
  border-bottom: solid 1px var(--theme-color-border);
  font-size: 14px;
  line-height: 18px;
  margin: 0;
  padding: 0 0 10px;
}

.c-article__content p {
  margin-bottom: 25px;
}

.c-article__content p a {
  color: var(--theme-color-link);
  font-weight: var(--theme-font-weight-bold);
  text-decoration: underline;
}

.c-article__content h2 {
  font-family: var(--theme-font-family-title);
  font-weight: var(--theme-font-weight-title);
  font-size: 26px;
  line-height: 37px;
  margin: 30px 0 20px;
}

.c-article__content ol {
  counter-reset: item;
  list-style-type: none;
  padding-left: 0;
  margin: 0;
}

.c-article__content ol li {
  counter-increment: item;
  margin: 0 0 1em;
  padding-left: 40px;
  position: relative;
}

.c-article__content ol li::before {
  content: counter(item) ".";
  font-size: 1em;
  font-weight: var(--theme-font-weight-bold);
  left: 10px;
  position: absolute;
}

.c-article__content figure,
.c-article__content img {
  max-width: 100% !important;
}

.c-article__content figcaption {
  border-bottom: solid 1px var(--theme-color-border);
  color: var(--theme-color-text-secondary);
  font-size: 13px;
  line-height: 19px;
  padding: 10px 5px;
  margin: 0;
}

.c-article__footer {
  margin-top: 40px;
}

.c-article__meta {
  font-size: 14px;
  line-height: 24px;
  align-items: center;
  display: flex;
}

.c-article__meta-author > a {
  font-weight: var(--theme-font-weight-bold);
  text-decoration: underline;
}

.c-article__meta-author {
  display: flex;
  align-items: center;
  gap: 5px;
}

.c-article__meta-author:after {
  background-color: currentColor;
  content: " ";
  display: block;
  height: 1px;
  margin: 0 5px;
  width: 10px;
}

.c-article__tags {
  margin-bottom: 60px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.c-article__tags a {
  background-color: #f6f6f6;
  font-size: 12px;
  text-transform: lowercase;
  padding: 6px 10px;
  white-space: nowrap;
  border-radius: 2px;
  font-weight: var(--theme-font-weight-bold);
  display: block;
}

.c-article__tags a:hover {
  opacity: 0.85;
}

.c-article__title {
  font-size: 33px;
  line-height: 40px;
  margin: 0;
  font-family: var(--theme-font-family-title);
  font-weight: var(--theme-font-weight-title);
}

.c-article__thumbnail img {
  height: 200px;
  object-fit: cover;
  display: block;
  width: 100%;
}

@media (min-width: 768px) {
  .c-article {
    margin-bottom: 60px;
  }

  .c-article__content h2 {
    font-size: 32px;
    line-height: 39px;
    margin: 40px 0 30px;
  }

  .c-article__content h3 {
    font-size: 21px;
    line-height: 31px;
    margin: 30px 0 20px;
  }

  .c-article__title {
    font-size: 48px;
    line-height: 56px;
  }

  .c-article__thumbnail {
    margin-bottom: 40px;
  }

  .c-article__thumbnail img {
    height: 350px;
    object-fit: cover;
  }
}

@media (min-width: 1024px) {
  .c-article__bar {
    flex-direction: row;
    justify-content: space-between;
    margin: 20px 0 30px;
  }
}

/*--------------------------------------------------------------
# Components - Share Bar
--------------------------------------------------------------*/

.c-share-bar {
  display: flex;
  gap: 5px;
}

.c-share-bar__btn {
  align-items: center;
  background-color: var(--theme-color-text-secondary);
  border-radius: 100%;
  border: none;
  color: #fff;
  cursor: pointer;
  display: flex;
  height: 32px;
  justify-content: center;
  outline: none;
  width: 32px;
}

.c-share-bar__btn svg {
  display: block;
  height: 15px;
  width: 15px;
}

.c-share-bar__btn[data-platform="whatsapp"] {
  background-color: #25D366;
}

.c-share-bar__btn[data-platform="x"] {
  background-color: #000;
}

.c-share-bar__btn[data-platform="linkedin"] {
  background-color: #0077b5;
}

.c-share-bar__btn[data-platform="facebook"] {
  background-color: #3a5999;
}

.c-share-bar__btn[data-platform="email"] svg,
.c-share-bar__btn[data-platform="copy-link"] svg {
  height: 18px;
  width: 18px;
}

/*--------------------------------------------------------------
# Components - Page Header
--------------------------------------------------------------*/

.c-page-header {
  text-align: center;
  margin-bottom: 60px;
}

.c-page-header__buttons {
  margin-top: 50px;
}

.c-page-header__kicker {
  color: var(--theme-color-link);
  text-align: center;
  font-weight: var(--theme-font-weight-title);
  font-family: var(--theme-font-family-title);
  font-size: 21px;
}

.c-page-header__title {
  margin: 0;
  font-size: 36px;
  line-height: 1;
  text-align: center;
}

@media (min-width: 768px) {
  .c-page-header__title {
    font-size: 42px;
  }
}

/*--------------------------------------------------------------
# Components - Related Posts
--------------------------------------------------------------*/

@media (min-width: 768px) {
  .c-related-posts__list {
    display: grid;
    gap: 0 30px;
    grid-template-columns: 1fr 1fr 1fr;
  }
}

/*--------------------------------------------------------------
# Components - Main Nav
--------------------------------------------------------------*/

.c-main-nav {
  display: block;
  width: 100%;
}

.c-main-nav .menu,
.c-main-nav .sub-menu {
  list-style: none;
  margin: 0;
}

.c-main-nav .menu > .menu-item-has-children > a::after {
  display: block;
  content: '';
  float: right;
  margin: 5px 0 0 11px;
  border-color: transparent;
  border-top-color: currentColor;
  border-style: solid;
  border-width: 5px 4px 0;
  width: 0;
  height: 0;
  position: relative;
  line-height: 0;
}

.c-main-nav .menu > .menu-item-has-children.focus > a::after,
.c-main-nav .menu > .menu-item-has-children:hover > a::after {
  transform: rotate(180deg);
}

@media (max-width: 767px) {
  .c-main-nav {
    display: flex;
    align-items: center;
    order: 1;
    width: auto;
    margin-left: 8px;
  }

  .c-main-nav .menu {
    background-color: rgba(255, 255, 255, 0.9);
    bottom: 0;
    color: var(--theme-color-text);
    display: flex;
    flex-direction: column;
    padding: 80px 0;
    position: fixed;
    right: 0;
    top: 0;
    transform: translateX(100%);
    transition: all .3s ease;
    width: 70%;
    z-index: var(--theme-zindex-header-menu-mob);
  }

  .c-main-nav.toggled > div {
    background-color: rgba(0, 0, 0, 0.8);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
  }

  .c-main-nav.toggled .menu {
    transform: translateX(0);
  }

  .c-main-nav > .menu-toggle {
    color: currentColor;
  }

  .c-main-nav.toggled > .menu-toggle {
    position: fixed;
    top: 20px;
    right: 20px;
    color: var(--theme-color-text);
    z-index: var(--theme-zindex-header-menu-toggle);
  }

  .c-main-nav > .menu-toggle .icon-open,
  .c-main-nav.toggled>.menu-toggle .icon-close {
    display: block;
  }

  .c-main-nav>.menu-toggle .icon-close,
  .c-main-nav.toggled > .menu-toggle .icon-open {
    display: none;
  }

  .c-main-nav .sub-menu {
    display: none;
    flex-direction: column;
    font-size: 14px;
    font-weight: 400;
    gap: 15px;
    margin: 0;
    padding: 20px 30px;
  }

  .c-main-nav .menu > .menu-item > a {
    font-weight: var(--theme-font-weight-bold);
    display: flex;
    align-items: center;
    padding: 20px 30px;
  }

  .c-main-nav .menu > .menu-item-has-children > a {
    justify-content: space-between;
    width: 100%;
  }

  .c-main-nav .menu-item.focus .sub-menu {
    display: flex;
  }

  .c-main-nav .menu-toggle {
    background: none;
    border: 0;
    padding: 0;
  }

  .c-main-nav .menu-toggle svg {
    width: 30px;
    height: 30px;
  }
}

@media (min-width: 768px) {
  .menu-toggle {
    display: none;
  }

  .c-main-nav .menu {
    display: flex;
    gap: 0 35px;
    padding: 0;
    flex-wrap: wrap;
  }

  .c-main-nav .menu > .menu-item {
    position: relative;
    display: flex;
    align-items: center;
    white-space: nowrap;
    padding: 0;
  }

  .c-main-nav .menu > .menu-item > a {
    font-family: var(--theme-font-family-title);
    font-weight: var(--theme-font-weight-title);
    font-size: 18px;
    height: var(--theme-header-height);
    display: flex;
    align-items: center;
  }

  .c-main-nav .menu > .menu-item > a:hover {
    opacity: 0.85;
  }

  .c-main-nav .menu > .menu-item:hover {
    color: var(--theme-color-primary-contrast);
  }

  .c-main-nav .menu > .menu-item .sub-menu {
    background-color: var(--theme-color-bg);
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    color: var(--theme-color-text);
    display: none;
    flex-direction: column;
    float: left;
    gap: 18px;
    left: auto;
    list-style: none;
    min-width: 300px;
    padding: 25px 30px;
    position: absolute;
    top: 100%;
    z-index: var(--theme-zindex-submenu-desk);
    font-size: 16px;
  }

  .c-main-nav .menu > .menu-item:hover .sub-menu {
    display: flex;
  }

  .c-main-nav .menu > .menu-item .sub-menu > .menu-item:hover {
    color: var(--theme-color-link);
  }
}

/*--------------------------------------------------------------
# Components - News Index
--------------------------------------------------------------*/

.c-news-index {
  margin-bottom: 80px;
}

.c-news-index__content {
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .c-news-index__content {
    flex-grow: 1;
  }

  .c-news-index__wrapper {
    display: flex;
    gap: 80px;
  }

  .c-news-index__sidebar {
    flex-shrink: 0;
    width: 300px;
  }
}

.c-news-index__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2px;
  margin-top: 30px;
}

.c-news-index__pagination .page-numbers {
  align-items: center;
  background-color: var(--theme-color-bg-soft);
  border-radius: 2px;
  color: var(--theme-color-text, #333);
  display: flex;
  font-size: 14px;
  font-weight: var(--theme-font-weight-bold);
  height: 32px;
  justify-content: center;
  text-decoration: none;
  transition: all 0.15s ease-in-out;
  width: 32px;
}

.c-news-index__pagination .page-numbers.current {
  background-color: var(--theme-color-text, #333);
  color: var(--theme-color-bg, #fff);
  cursor: default;
}

.c-news-index__pagination .page-numbers:not(.dots):hover {
  background-color: var(--theme-color-text, #333);
  color: var(--color-primary-inverted, #fff);
}

.c-news-index__pagination .page-numbers svg {
  flex-shrink: 0;
  height: 20px;
  width: 20px;
}

/*--------------------------------------------------------------
# Components - Most Read
--------------------------------------------------------------*/

.c-most-read {
  margin-bottom: 50px;
}

/*--------------------------------------------------------------
# Components - Most Read Section
--------------------------------------------------------------*/

.c-most-read-section {
  margin-bottom: 80px;
}

@media (min-width: 768px) {
  .c-most-read-section__list {
    display: grid;
    gap: 20px 50px;
    grid-template-columns: 1fr 1fr
  }
}

/*--------------------------------------------------------------
# Components - Featured News
--------------------------------------------------------------*/

.c-featured-news {
  margin-bottom: 80px;
}

@media (min-width: 768px) {
  .c-featured-news {
    display: flex;
    gap: 60px;
  }

  .c-featured-news__main,
  .c-featured-news__list {
    width: 50%;
  }
}

/*--------------------------------------------------------------
# Components - Featured News 2
--------------------------------------------------------------*/

.c-featured-news-2 {
  margin-bottom: 40px;
}

@media (min-width: 768px) {
  .c-featured-news-2 {
    display: grid;
    gap: 60px;
    grid-template-columns: 1fr 1fr;
    margin-bottom: 80px;
  }
}


/*--------------------------------------------------------------
# Components - Headline
--------------------------------------------------------------*/

.c-headline {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: solid 1px var(--theme-color-border);
  text-align: left;
}

.c-headline__content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.c-headline__title {
  font-family: var(--theme-font-family-title);
  font-size: 26px;
  font-weight: var(--theme-font-weight-title);
  line-height: 34px;
  margin: 0;
}

.c-headline__title a:hover {
  color: var(--theme-color-link);
}

.c-headline__excerpt {
  font-size: 16px;
  line-height: 24px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

.c-headline__date {
  font-size: 14px;
  margin-top: 3px;
}

.c-headline__thumb {
  display: block;
  height: 250px;
  margin-bottom: 15px;
  width: 100%;
  overflow: hidden;
}

.c-headline__thumb img {
  height: 100%;
  object-fit: cover;
  width: 100%;
}

.c-headline--horizontal {
  display: flex;
  gap: 20px;
  margin-bottom: 30px;
  border-bottom: none;
  padding-bottom: 0;
}

.c-headline--horizontal .c-headline__thumb {
  flex-shrink: 0;
  height: 75px;
  margin-bottom: 0;
  width: 100px;
}

.c-headline--horizontal .c-headline__title {
  font-size: 19px;
  line-height: 25px;
}

.c-headline--horizontal .c-headline__excerpt {
  display: none;
}

.c-headline--horizontal .c-headline__category {
  font-size: 12px;
  gap: 10px;
}

.c-headline--horizontal .c-headline__content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.c-headline--mini {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
  border-bottom: none;
  padding-bottom: 0;
  align-items: center;
}

.c-headline--mini .c-headline__thumb {
  flex-shrink: 0;
  height: 75px;
  margin-bottom: 0;
  width: 90px;
}

.c-headline--mini .c-headline__title {
  font-size: 18px;
  line-height: 26px;
}

.c-headline--mini .c-headline__excerpt {
  display: none;
}

@media (min-width: 768px) {
  .c-headline {
    border-bottom: none;
  }

  .c-headline--horizontal {
    gap: 30px;
    margin-bottom: 50px;
  }

  .c-headline--horizontal .c-headline__category {
    font-size: 16px;
  }

  .c-headline--horizontal .c-headline__title {
    font-size: 26px;
    line-height: 34px;
  }

  .c-headline--horizontal .c-headline__excerpt {
    display: block;
    display: -webkit-box;
    font-size: 15px;
    line-height: 22px;
  }

  .c-headline--horizontal .c-headline__thumb {
    height: 150px;
    width: 200px;
  }

  .c-headline--news-index  .c-headline__title {
    font-size: 32px;
    line-height: 41px;
  }

  .c-headline--desk-lg .c-headline__thumb {
    height: 400px;
    margin-bottom: 20px;
  }

  .c-headline--desk-lg .c-headline__title {
    font-size: 38px;
    line-height: 49px;
  }

  .c-headline--desk-sm {
    padding-bottom: 0;
    margin-bottom: 30px;
  }

  .c-headline--desk-sm .c-headline__thumb {
    height: 150px;
    margin-bottom: 15px;
  }

  .c-headline--desk-sm .c-headline__title {
    font-size: 18px;
    line-height: 25px;
  }

  .c-headline--desk-secondary {
    position: relative;
    border-radius: 6px;
    overflow: hidden;
    padding-bottom: 0;
  }

  .c-headline--desk-secondary .c-headline__content {
    background-color: #fff;
    border-radius: 4px;
    bottom: 30px;
    left: 20px;
    padding: 25px 20px;
    position: absolute;
    right: 20px;
  }

  .c-headline--desk-secondary .c-headline__title {
    font-size: 28px;
    line-height: 36px;
  }

  .c-headline--desk-secondary .c-headline__thumb {
    height: 500px;
    margin-bottom: 0;
  }
}

/*--------------------------------------------------------------
# Components - Author
--------------------------------------------------------------*/

.c-author-header {
  margin: 0 auto 40px;
  text-align: center;
}

.c-author-header__avatar {
  border-radius: 100%;
  height: 250px;
  margin-bottom: 10px;
  object-fit: cover;
  width: 250px;
}

.c-author-header__bio {
  display: flex;
  flex-direction: column;
  font-size: 16px;
  gap: 25px;
  margin: 30px auto 0;
}

.c-author-header__bio p {
  margin: 0;
}

.c-author-header__kicker {
  color: var(--theme-color-link);
  font-family: var(--theme-font-family-title);
  font-size: 14px;
  font-weight: var(--theme-font-weight-title);
}

.c-author-header__title {
  font-family: var(--theme-font-family-title);
  font-size: 28px;
  font-weight: var(--theme-font-weight-title);
  margin: 0;
}

.c-author-header__post-count {
  font-size: 15px;
  margin: 0;
}

.c-author-header__website {
  font-size: 14px;
  margin-bottom: 10px;
  text-decoration: underline;
}

@media (min-width: 768px) {
  .c-author-header {
    margin-bottom: 70px;
    padding-bottom: 40px;
  }

  .c-author-header__title {
    font-size: 48px;
  }

  .c-author-header__kicker {
    font-size: 16px;
  }
}

/*--------------------------------------------------------------
# Ad
--------------------------------------------------------------*/

[aria-label="advertisement"] {
  background-color: var(--theme-color-bg-soft);
  position: relative;

}

[aria-label="advertisement"]::after {
  content: "PUBLICIDADE";
  font-size: 9px;
  color: var(--theme-color-text-secondary);
  right: 0;
  top: -13px;
  position: absolute;
  line-height: 1;
  letter-spacing: 0.08em;
}

[aria-label="advertisement"][data-ad-type="leaderboard"] {
  width: 728px;
  height: 90px;
  display: none;
}

@media (min-width: 768px) {
  [aria-label="advertisement"][data-ad-type="leaderboard"] {
    display: block;
  }
}

[aria-label="advertisement"][data-ad-type="mobile_leaderboard"] {
  width: 300px;
  height: 50px;
}

@media (min-width: 768px) {
  [aria-label="advertisement"][data-ad-type="mobile_leaderboard"] {
    display: none;
  }
}

[aria-label="advertisement"][data-ad-type="medium_rectangle"] {
  width: 300px;
  height: 250px;
}

[aria-label="advertisement"][data-ad-type="mid-content"] {
  display: flex;
  margin-bottom: 40px;
  min-height: 330px;
  width: 100%;
}

.c-ad-leaderboard {
  align-items: center;
  background-color: var(--theme-color-bg);
  bottom: 0;
  box-shadow: 0px 4px 7px 1px #00000070;
  display: flex;
  justify-content: center;
  left: 0;
  min-height: 80px;
  padding-top: 8px;
  position: fixed;
  right: 0;
  width: 100%;
  z-index: var(--theme-zindex-ads-billboard);
}

@media (min-width: 768px) {
  .c-ad-leaderboard {
    box-shadow: none;
    margin: 0 0 30px;
    position: relative;
    margin-top: 0;
  }

  .c-ad-medium-rectangle.c-ad-medium-rectangle--sidebar {
    position: sticky;
    top: 25px;
  }
}

/*--------------------------------------------------------------
# Cookie Banner
--------------------------------------------------------------*/

.c-cookie-banner {
  background: var(--theme-color-bg);
  bottom: 0;
  box-shadow: 0 -3px 3px rgb(0 0 0 / 25%);
  color: var(--theme-color-text);
  display: none;
  flex-direction: column;
  font-size: 14px;;
  left: 0;
  line-height: 20px;
  padding: 22px 20px;
  position: fixed;
  right: 0;
  z-index: 1000;
}

.c-cookie-banner__text {
  flex: 1;
  margin: 0 0 20px;
}

.c-cookie-banner__text a {
  color: var(--theme-color-link);
  font-weight: bold;
  text-decoration: underline;
}

.c-cookie-banner__button {
  background-color: var(--theme-color-link);
  border: none;
  color: white;
  cursor: pointer;
  font-size: 14px;
  font-weight: bold;
  min-width: 120px;
  padding: 10px 12px;
  width: 100%;

}

.c-cookie-banner__button:hover {
  opacity: 0.85;
}

@media (min-width: 624px) {
  .c-cookie-banner {
    border-radius: 12px;
    border: solid 1px #efefef;
    bottom: 40px;
    box-shadow: 0 6px 6px rgba(0, 0, 0, 0.25);
    left: auto;
    max-width: 400px;
    padding: 30px;
    right: 40px;
  }
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

.u-text-center {
  text-align: center !important;
}

.u-mb-20 {
  margin-bottom: 20px;
}

.is-hidden {
  display: none;
}

.is-visible {
  display: flex;
}
