/*!
Theme Name: voxin theme
Theme URI: Voxin Theme
Author: Voxin Tecnologia
Author URI: https://voxin.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: voxin-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: 'Inter';
  font-style: normal;
  font-weight: 800;
  font-display: swap;
  src: url('./assets/fonts/Inter-ExtraBold.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 */
  --voxin-font-family              : "Open Sans", sans-serif;
  --voxin-font-family-title        : "Inter", sans-serif;
  --voxin-font-weight              : 400;
  --voxin-font-weight-title        : 800;
  --voxin-font-weight-bold         : 600;
  
  /* Base Colors */
  --voxin-color-bg                 : #fff;
  --voxin-color-bg-soft            : #f6f6f6;
  --voxin-color-border             : #e1e1e1;
  --voxin-color-border-light       : #ededed;
  --voxin-color-text               : #111111;
  --voxin-color-text-secondary     : #767676;
  
  /* Layers */
  --voxin-zindex-ads-billboard      : 400;
  --voxin-zindex-header-search      : 500;
  --voxin-zindex-header             : 900;
  --voxin-zindex-header-menu-mob    : 1000;
  --voxin-zindex-header-menu-toggle : 1100;
  --voxin-zindex-submenu-desk       : 1200;

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

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

html {
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  background-color: var(--voxin-color-bg);
  color: var(--voxin-color-text);
  font-family: var(--voxin-font-family);
  font-size: 16px;
  font-weight: var(--voxin-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(--voxin-font-family-title);
  font-weight: var(--voxin-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(--voxin-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;
}

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

.c-button {
  align-items: center;
  background-color: var(--voxin-color-primary);
  border-radius: 30px;
  border: solid 1px var(--voxin-color-primary);
  color: var(--voxin-color-primary-text);
  cursor: pointer;
  display: inline-flex;
  font-size: 14px;
  font-weight: var(--voxin-font-weight-bold);
  height: 50px;
  padding: 0 25px;
}

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

.c-form-control {
  border-radius: 30px;
  border: solid 1px var(--voxin-color-border);
  display: block;
  height: 50px;
  padding: 10px 15px;
  width: 100%;
}

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

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

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

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

.c-section-title {
  font-family: var(--voxin-font-family-title);
  font-size: 24px;
  font-weight: var(--voxin-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(--voxin-font-family-title);
  font-size: 21px;
  font-weight: var(--voxin-font-weight-title);
  line-height: 1;
  padding-bottom: 15px;
  text-transform: uppercase;
  margin: 0 0 20px;
}


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

.c-footer {
  margin-top: 60px;
}

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

.c-footer__branding {
  max-width: 200px;
  margin: 0 auto 20px;
}

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

.c-footer__main {
  background-color: var(--voxin-color-bg);
  border-top: solid 1px var(--voxin-color-border-light);
  color: var(--voxin-color-primary);
  padding: 50px 0 70px;
}

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

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

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

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

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

.c-footer__subtitle {
  font-family: var(--voxin-font-family-title);
  font-weight: var(--voxin-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 {
    max-width: 260px;
    margin: 0 0 50px;
  }
  
  .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 - Header
--------------------------------------------------------------*/

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

.c-header__bar {
  border-bottom: solid 1px var(--voxin-color-border-light);
  box-shadow: 0 2px 4px rgb(0 0 0 / 6%);
  color: var(--voxin-color-primary);
  position: relative;
  z-index: var(--voxin-zindex-header);
}

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

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

a.c-header__subscribe {
  font-size: 13px;
  font-weight: var(--voxin-font-weight-bold);
  background-color: var(--voxin-color-primary-contrast);
  color: var(--voxin-color-primary);
  padding: 6px 12px 5px;
  margin-right: 20px;
}

.c-header__site-title {
  font-size: 30px;
  font-weight: var(--font-weight-title);
  margin: 0;
}

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

.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;
  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 {
  opacity: 0;
  position: fixed;
  transition: opacity 0.2s ease-in-out;
  visibility: hidden;
  background-color: rgba(0, 0, 0, 0.8);
  height: 100vh;
  width: 100%;
  z-index: var(--voxin-zindex-header-search);
}

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

.c-header-search__bar {
  background-color: var(--voxin-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
--------------------------------------------------------------*/

@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(--voxin-font-family-title);
  font-size: 14px;
  font-weight: var(--voxin-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 p {
  margin-bottom: 25px;
}

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

.c-article__content h2 {
  font-family: var(--voxin-font-family-title);
  font-weight: var(--voxin-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 {
  color: var(--voxin-color-link);
  content: counter(item) ".";
  font-size: 1em;
  font-weight: var(--voxin-font-weight-bold);
  left: 10px;
  position: absolute;
}

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

.c-article__content figcaption {
  border-bottom: solid 1px var(--voxin-color-border);
  color: var(--voxin-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(--voxin-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(--voxin-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(--voxin-font-family-title);
  font-weight: var(--voxin-font-weight-title);
}

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

@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: 450px;
    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(--voxin-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(--voxin-color-link);
  text-align: center;
  font-weight: var(--voxin-font-weight-title);
  font-family: var(--voxin-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;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0 30px;
  }
}

/*--------------------------------------------------------------
# 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(--voxin-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(--voxin-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(--voxin-color-text);
    z-index: var(--voxin-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(--voxin-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(--voxin-font-family-title);  
    font-weight: var(--voxin-font-weight-title);
    font-size: 18px;
    height: var(--voxin-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(--voxin-color-primary-contrast);
  }

  .c-main-nav .menu > .menu-item .sub-menu {
    background-color: var(--voxin-color-bg);
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
    color: var(--voxin-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(--voxin-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(--voxin-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: 40px;
  }

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

  .c-news-index__list {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 0 40px;
  }
}

/*--------------------------------------------------------------
# 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(--voxin-color-border);
  text-align: left;
}

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

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

.c-headline__title a:hover {
  color: var(--voxin-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;
  border-radius: 10px;
}

.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;
    padding-bottom: 0;
  }

  .c-headline--horizontal {
    gap: 40px;
    margin-bottom: 60px;
  }

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

  .c-headline--horizontal .c-headline__title {
    font-size: 21px;
    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: 210px;
    width: 280px;
  }

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

  .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 {
  border-bottom: solid 3px var(--voxin-color-border-light);
  margin-bottom: 40px;
  padding-bottom: 20px;
  text-align: center;
}

.c-author-header__kicker {
  color: var(--voxin-color-link);
  font-family: var(--voxin-font-family-title);
  font-size: 14px;
  font-weight: var(--voxin-font-weight-title);
}
.c-author-header__title {
  font-family: var(--voxin-font-family-title);
  font-size: 28px;
  font-weight: var(--voxin-font-weight-title);
  margin: 0;
}

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

@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;
  }
}

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

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

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