/* CSS Reset */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -moz-text-size-adjust: none;
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  text-wrap: pretty;
}

body, h1, h2, h3, h4, p,
figure, blockquote, dl, dd {
  margin-block-start: 0;
  margin-block-end: 0;
  padding: 0;
  margin: 0;
}

ul[role='list'],
ol[role='list'] {
  list-style: none;
}

h1, h2, h3, h4,
button, input, label {
  line-height: 1.1;
}

a:not([class]) {
  text-decoration-skip-ink: auto;
  color: currentColor;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input, button,
textarea, select {
  font-family: inherit;
  font-size: inherit;
}

textarea:not([rows]) {
  min-height: 10em;
}

:target {
  scroll-margin-block: 5ex;
}

*:focus {
  outline: none;
}


/* Fonts */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 100 900; /* this covers thin → black in one variable file */
  font-display: swap;
  src: url('../fonts/inter.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: 'Icons';
  src: url('../fonts/icons.woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}


/* Main Style */
html {
  line-height: 1.5;
  font-size: 16px;
}

body {
  font-family: 'Inter', system-ui, sans-serif;
}

a {
  text-decoration: none;
}


/*
* Image
*/
img[data-src] {
  opacity: 0;
  transition: opacity 400ms ease-in-out;
}

img[data-src].visible {
  opacity: 1;
}

/*
* Header
*/
header {
  height: 60px;
  background: #db0f27;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999999;
  display: flex;
  align-items: center;
  transition: box-shadow 100ms ease;
}

header .content {
  display: flex;
  height: inherit;
  margin: 0 auto;
}

header.scrolling {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.35);
}

header .logo {
  user-select: none;
  display: flex;
  align-items: center;
  margin-right: 30px;
}

header .logo img {
  height: auto;
  vertical-align: top;
}

header .logo img:first-child {
  width: 24px;
}

header .logo img:last-child {
  width: 94px;
  margin-left: 8px;
}

header .menu-icon {
  display: none;
}

@media screen and (max-width: 1020px) {
  header .logo {
    margin-right: 20px;
  }
  header .logo img:last-child {
    width: 90px;
  }
}

@media screen and (max-width: 800px) {
  header {
    padding: 0;
  }
  header .logo {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
  }
  header .menu-icon {
    display: block;
  }
}

header .search {
  width: 60px;
  height: 60px;
  position: relative;
  margin-left: auto;
  color: #fff;
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: transform 200ms ease;
}

@media screen and (max-width: 800px) {
  header .search {
    font-size: 20px;
  }
}

header .search:active {
  transform: scale(0.92);
}

header .search:hover {
  color: rgba(255, 255, 255, 1);
}

header .search:before {
  content: '\ea0c';
  font-family: 'Icons';
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

/*
* Header Menu
*/
header .menu {
  display: flex;
  align-items: center;
  font-size: 15px;
  height: 60px;
  overflow: hidden;
  white-space: nowrap;
  flex: 1 0;
  font-weight: 500;
}

@media screen and (max-width: 800px) {
  header .menu {
    display: none;
  }
}

header .menu a {
  color: rgba(255, 255, 255, 1);
  line-height: 20px;
  padding: 8px 10px;
  border-radius: 8px;
  display: block;
  position: relative;
  margin-right: 8px;
}

header .menu > a:last-child {
  margin-right: 0;
}

header .menu a:hover {
  color: rgba(255, 255, 255, 1);
  background: rgba(255, 255, 255, 0.1);
}

header .menu .more {
  font-size: 18px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 20px;
  padding: 20px 10px;
  cursor: pointer;
  width: 50px;
  text-align: center;
  transition: transform 100ms ease;
}

header .menu .more:hover {
  color: rgba(255, 255, 255, 1);
}

header .menu .more:active {
  transform: scale(0.9);
}

header .menu .more:before {
  content: '\ea0a';
  font-family: 'Icons';
}

/*
* Menu Context
*/
@keyframes contextMenuOpen {
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.menu-context {
  display: none;
  position: absolute;
  width: 200px;
  background: #fff;
  z-index: 9999999;
  border: 1px rgba(0, 0, 0, 0.08) solid;
  border-radius: 6px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  padding: 4px;
  font-size: 14px;
  margin-top: -4px;
  opacity: 0;
  transform: translateY(-0.75em);
}

.menu-context.active {
  animation: contextMenuOpen 75ms ease-out forwards;
}

.menu-context a {
  padding: 10px 12px;
  display: block;
  color: rgba(0, 0, 0, 0.75);
  font-weight: 500;
  border-radius: 4px;
}

.menu-context a:hover {
  color: rgba(0, 0, 0, 1);
  background: rgba(0, 0, 0, 0.03);
}

/*
* Search Context
*/
.search-context {
  position: absolute;
  background: #fff;
  z-index: 9999999;
  border: 1px rgba(0, 0, 0, 0.1) solid;
  border-radius: 6px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.25);
  font-size: 14px;
  margin-top: -4px;
  opacity: 0;
  transform: translateY(-0.75em);
  display: flex;
  width: 280px;
}

.search-context > input[type='text'] {
  border: 0;
  background: transparent;
  padding: 12px 15px;
  line-height: 20px;
  flex: 1 0;
}

.search-context > button {
  border: 0;
  flex: 0 0 44px;
  height: 44px;
  position: relative;
  background: transparent;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.6);
  cursor: pointer;
  transition: transform 150ms ease;
}

@media screen and (max-width: 800px) {
  .search-context {
    width: auto;
    left: 3px;
    right: 3px;
    top: 50px;
    border-radius: 8px;
    padding: 0 5px;
  }

  .search-context > input[type='text'] {
    line-height: 30px;
  }

  .search-context > button {
    height: 54px;
  }
}

.search-context > button:hover {
  color: rgba(0, 0, 0, 0.9);
}

.search-context > button:active {
  color: rgba(0, 0, 0, 0.6);
  transform: scale(0.9);
}

.search-context > button:before {
  content: '\ea0c';
  font-family: 'Icons';
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}

.search-context.active {
  animation: contextMenuOpen 75ms ease-out forwards;
}

.search-context a {
  padding: 10px 14px;
  display: block;
  color: rgba(0, 0, 0, 0.75);
  font-weight: 500;
}

.search-context a:hover {
  color: rgba(0, 0, 0, 1);
  background: rgba(0, 0, 0, 0.03);
}

/*
* App Banner
*/
.app-banner,
.app-banner:active,
.app-banner:hover {
  position: fixed;
  top: 65px;
  left: 5px;
  right: 5px;
  background: #0042ff;
  padding: 14px 60px 14px 15px;
  border-radius: 10px;
  color: #fff;
  font-weight: 500;
  font-size: 12px;
  opacity: 0;
  transition: opacity 250ms ease, transform 200ms ease;
  transform: translateY(-20px);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
  z-index: 2000000000;
}

.app-banner .label {
  display: flex;
  align-items: center;
}

.app-banner .label:after {
  content: '\ea07';
  font-family: 'Icons';
  font-size: 8px;
  margin-left: 4px;
}

.app-banner .close-banner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: 40px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
}

.app-banner .close-banner:before {
  content: '✕';
}

.app-banner .close-banner:after {
  content: '';
  position: absolute;
  top: 8px;
  bottom: 8px;
  left: 0;
  width: 1px;
  background: rgba(255, 255, 255, 0.1);
}

.app-banner.visible {
  opacity: 1;
  transform: translateY(0);
}

.app-banner .sub {
  margin-top: 3px;
  font-weight: normal;
  color: rgba(255, 255, 255, 0.8);
}

/*
* Main Menu
*/
.main-menu {
  position: fixed;
  top: 60px;
  left: -300px;
  bottom: 0;
  width: 300px;
  background: #170d0d;
  color: #fff;
  z-index: 99;
  -webkit-transition: left 200ms ease-out;
  -moz-transition: left 200ms ease-out;
  -o-transition: left 200ms ease-out;
  transition: left 200ms ease-out;
  overflow-y: auto;
}

.main-menu.menu-open {
  left: 0;
}

.main-menu .inner-menu {
  min-height: 100%;
  padding-bottom: 60px;
  position: relative;
  overflow: hidden;
}

.main-menu .inner-menu a {
  padding: 15px 20px;
  display: block;
  color: #fff;
  font-weight: 500;
  opacity: 0.9;
  border-bottom: 1px rgba(255, 255, 255, 0.03) solid;
}

.main-menu .inner-menu a:hover {
  opacity: 0.6;
}


/* Menu Icon */
.menu-icon {
  width: 24px;
  height: 18px;
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(0deg);
  transition: 0.5s ease-in-out;
  cursor: pointer;
}

.menu-icon span {
  display: block;
  position: absolute;
  height: 2px;
  border-radius: 1px;
  width: 100%;
  background: #fff;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}

.menu-icon span:nth-child(1) {
  top: 0;
  transform-origin: left center;
}

.menu-icon span:nth-child(2) {
  top: 8px;
  transform-origin: left center;
}

.menu-icon span:nth-child(3) {
  top: 16px;
  transform-origin: left center;
}

.menu-icon.open span:nth-child(1) {
  transform: rotate(45deg);
  top: -1px;
  left: 4px;
  width: 28px;
}

.menu-icon.open span:nth-child(2) {
  width: 0;
  opacity: 0;
}

.menu-icon.open span:nth-child(3) {
  transform: rotate(-45deg);
  top: 19px;
  left: 4px;
  width: 28px;
}

/* Body */
.content {
  margin: 0 auto;
  width: 1100px;
}

.flex {
  display: flex;
}

.body .content {
  padding: 30px 0;
}

.body .main {
  flex: 1 0 0;
  margin-right: 30px;
}

.body .side {
  flex: 0 0 300px;
}

.body {
  padding-top: 60px;
}

/* Text page */
.text h1 {
  font-weight: 900;
  font-size: 34px;
  margin-bottom: 30px;
  color: #000;
}

.text h2,
.text h3,
.text h4 {
  font-weight: bold;
  margin-bottom: 20px;
  font-size: 24px;
}

.text p {
  margin-bottom: 10px;
  line-height: 1.8em;
  text-align: justify;
}

/*
* Creatives
*/
.cp {
  display: flex;
  margin: 15px 0;
  text-align: center;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 300px;
}

/*
* Next Button
*/
.next-button,
.next-button:hover {
  line-height: 24px;
  margin: 30px 0 0 0;
  cursor: pointer;
  background: #0066ff;
  border-radius: 6px;
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  padding: 20px 20px;
  color: #fff;
  display: block;
}

.next-button:active {
  background: #095edd;
}

.next-button:after {
  height: 24px;
  width: 24px;
  line-height: 24px;
  text-align: center;
  display: inline-block;
  vertical-align: top;
  content: '\ea07';
  font-family: 'Icons';
  font-size: 11px;
}

/*
* 404
*/
.fourohfour {
  text-align: center;
  max-width: 450px;
  margin: 20px auto;
}

.fourohfour .title {
  font-size: 200px;
  margin-bottom: 25px;
  font-weight: 900;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  text-shadow: 6px 6px 0 rgba(0, 0, 0, 0.075);
  user-select: none;
}

.fourohfour .subtitle {
  font-weight: bold;
  font-size: 22px;
  line-height: 1.4em;
}

/*
* Page Title
*/
.page-title {
  font-size: 40px;
  margin-bottom: 25px;
  font-weight: 900;
  color: rgba(0, 0, 0, 0.8);
  position: relative;
  padding-bottom: 12px;
}

.page-title:before {
  content: '';
  display: block;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 5px;
  background: #db0f27;
  position: absolute;
  border-radius: 2px;
}

@media screen and (max-width: 800px) {
  .page-title {
    font-size: 32px;
    margin: 15px 3px 25px;
  }
}

/*
* List Page
*/
.list-page {
  margin: 0 auto;
}

@media screen and (max-width: 820px) {
  .list-page {
    width: auto;
    margin: 10px;
  }
}

.list-page section {
  margin-bottom: 40px;
}

.list-page section:last-child {
  margin-bottom: 0px;
}

.list-page section > .title {
  font-weight: 700;
  font-size: 32px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  color: rgba(0, 0, 0, 1);
  display: block;
  line-height: 28px;
  position: relative;
}

.list-page section > a.title:after {
  content: '\ea07';
  font-family: 'Icons';
  font-size: 10px;
  vertical-align: top;
  display: inline-block;
  margin-left: 6px;
}

.list-page section > .title:before {
  content: '';
  display: block;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 5px;
  background: #db0f27;
  position: absolute;
  border-radius: 2px;
}


/*
* Filter Context
*/
.filter-context {
  background: #fff;
  border: 1px rgba(0, 0, 0, 0.2) solid;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.05);
  border-radius: 8px;
  width: 300px;
  padding: 5px;
  z-index: 10;
  margin-top: 6px;
}

.filter-context .item {
  padding: 10px;
  border-radius: 6px;
  cursor: pointer;
  position: relative;
}

.filter-context .item.selected {
  color: blue;
}

.filter-context .item:hover {
  background: rgba(0, 0, 0, 0.05);
}


/*
* Breadcrumb List
*/
.breadcrumb {
  margin-bottom: 10px;
  font-size: 87.5%;
  font-weight: 500;
  white-space: nowrap;
  color: rgba(0,0,0,0.4);
}

.breadcrumb > .content {
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
}

.breadcrumb.fade-start .content:before,
.breadcrumb.fade-end .content:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 150px;
}

.breadcrumb.fade-start .content:before {
  background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
  left: 0;
}

.breadcrumb.fade-end .content:after {
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
  right: 0;
}

.breadcrumb ol {
  list-style: none;
  padding: 5px 0;
  margin: 0;
  display: flex;
  align-items: center;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.breadcrumb ol::-webkit-scrollbar { 
  display: none;
}

.breadcrumb li:first-child span {
  display: none;
}

.breadcrumb li:first-child a:before {
  content: '\ea16';
  font-family: 'icons';
  display: block;
  font-size: 105%;
}

.breadcrumb li {
  display: flex;
  align-items: center;
}

.breadcrumb a {
  text-decoration: none;
  color: rgba(0,0,0,0.4);
}

.breadcrumb a:hover {
  color: rgba(0,0,0,0.6);
  text-decoration: none;
}

.breadcrumb li:not(:last-child)::after {
  content: '\ea14';
  font-family: 'icons';
  margin: 0 6px;
  font-size: 16px;
  color: rgba(0,0,0,0.15);
}


/*
* Footer
*/
footer {
  border-top: 1px rgba(0,0,0,0.1) solid;
  margin-top: 50px;
}

footer > .content {
  margin: 25px auto;
}

footer .logo {
  opacity: 0.6;
  display: block;
  user-select: none;
  height: 17px;
}

footer .logo > img {
  vertical-align: top;
  height: 100%;
  width: auto;
}

footer .items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 15px;
  font-size: 13px;
}

footer .items:last-child {
  margin-bottom: 0;
  margin-top: 25px;
}

footer .app-buttons {
  display: flex;
}

footer .app-buttons .item {
  height: 32px;
  border-radius: 8px;
  border: 1px rgba(0,0,0,0.15) solid;
  display: block;
  margin-right: 8px;
  display: flex;
  align-items: center;
  padding: 0 10px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.8);
  user-select: none;
  white-space: nowrap;
}

footer .app-buttons .item > img {
  vertical-align: top;
  width: auto;
  height: 12px;
  margin-right: 5px;
}

footer .app-buttons .item:hover {
  border-color: rgba(0,0,0,0.25);
}

footer .app-buttons .item:active {
  border-color: rgba(0,0,0,0.2);
}

footer .app-buttons .item:last-child {
  margin-right: 0;
}

footer .links {
  display: flex;
}

footer .links > a {
  display: block;
  margin-right: 25px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.6);
}

footer .links > a:hover {
  color: rgba(0, 0, 0, 0.9);
}

footer .links > a:active {
  color: rgba(0, 0, 0, 0.7);
}

footer .links > a:last-child {
  margin-right: 0;
}

footer .social-buttons {
  display: flex;
}

footer .social-buttons .item {
  height: 32px;
  flex: 0 0 32px;
  border-radius: 8px;
  display: block;
  margin-right: 8px;
  background: rgba(0,0,0,0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.6);
  user-select: none;
}

footer .social-buttons .item:hover {
  background: rgba(0,0,0,0.09);
}

footer .social-buttons .item:active {
  background: rgba(0,0,0,0.08);
}

footer .social-buttons .item:before {
  font-family: 'icons';
}

footer .social-buttons .item.item-instagram:before {
  content: '\ea03';
  font-size: 1.07em;
}

footer .social-buttons .item.item-facebook:before {
  content: '\ea02';
  font-size: 1.07em;
}

footer .social-buttons .item.item-snapchat:before {
  content: '\ea13';
}

footer .social-buttons .item.item-tiktok:before {
  content: '\ea12';
}

footer .social-buttons .item.item-youtube:before {
  content: '\ea05';
}

footer .social-buttons .item.item-x:before {
  content: '\ea10';
  font-size: 0.93em;
}

footer .social-buttons .item:last-child {
  margin-right: 0;
}

footer .copyright {
  color: rgba(0, 0, 0, 0.5);
  order: 1;
}

footer .top-button {
  color: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  font-weight: 500;
  cursor: pointer;
  user-select: none;
  order: 2;
}

footer .top-button:hover {
  color: rgba(0, 0, 0, 0.6);
}

footer .top-button:active {
  color: rgba(0, 0, 0, 0.5);
}

footer .top-button:before {
  content: '\ea11';
  font-family: 'icons';
  margin-right: 4px;
  font-size: 0.93em;
}

@media screen and (max-width: 700px) {
  footer .items {
    display: block;
  }

  footer .logo {
    margin-bottom: 20px;
    text-align: center;
    height: 16px;
    opacity: 0.5;
  }

  footer .social-buttons {
    width: 100%;
    margin-bottom: 20px;
  }

  footer .social-buttons .item {
    flex: 1 0;
    height: 50px;
    font-size: 16px;
  }

  footer .app-buttons {
    width: 100%;
  }

  footer .app-buttons .item {
    flex: 1 0;
    height: 50px;
    font-size: 14px;
    justify-content: center;
  }

  footer .app-buttons .item > img {
    height: 14px;
  }

  footer .links {
    flex-wrap: wrap;
  }

  footer .links > a {
    flex: 0 0 calc(100% / 3);
    margin: 0;
    padding: 10px;
    text-align: center;
  }

  footer .top-button {
    font-size: 14px;
    justify-content: center;
    padding: 10px;
  }

  footer .copyright {
    margin-top: 20px;
    text-align: center;
    font-size: 11px;
  }


}



/*
* AU container
*/
.au {
  text-align: center;
  margin: 0 auto 20px;
}

.au-top {
  margin-top: 20px;
}

.au-related {
  padding: 18px 0;
}

@media screen and (max-width: 1200px) {
  .content {
    width: 1050px;
  }

  .body .main {
    margin-right: 20px;
  }
}

@media screen and (max-width: 1100px) {
  .content {
    width: 100%;
    padding: 0 20px;
  }
}

@media screen and (max-width: 800px) {
  .content {
    width: 100%;
    display: block;
    padding: 0px;
  }

  .body > .content {
    padding: 0;
  }

  footer > .content {
    padding: 0 10px;
  }

  div.text {
    padding: 15px;
  }

  .body .main {
    flex: none;
    margin-right: 0;
    margin-bottom: 30px;
  }
}

@media screen and (max-width: 550px) {
  body.menu-active {
    overflow: hidden;
  }

  .main-menu {
    left: -90%;
    width: 90%;
  }

  .main-menu ul li a {
    font-size: 18px;
  }
}


/*
* Article List
*/
.large-list {
    width: auto;
    margin: -10px -10px;
    display: flex;
    flex-wrap: wrap;
}

.large-list .item {
  display: block;
  flex: 1 0 40%;
  margin: 10px 10px 25px;
  max-width: calc(100% / 3 - 20px);
}

.large-list:not(.normal) .item:first-child {
  flex: 1 0;
  min-width: calc(100% - 20px);
}

.large-list .item .thumb {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.05);
}

.large-list:not(.normal) .item:first-child .thumb div {
  padding-bottom: 50%;
}

.large-list .item .meta {
  margin-top: 15px;
}

.large-list .item .thumb img {
  vertical-align: top;
  width: 100%;
  height: auto;
}

.large-list .item .title {
  color:#000;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.2em;
  word-wrap: break-word;
  overflow-wrap: break-word;
  margin-bottom: 6px;
}

.large-list .item:hover .title {
  color: rgba(0,0,0,0.7);
}

.large-list:not(.normal) .item:first-child .title {
  font-size: 32px;
}

.large-list .item .category {
  color: rgba(0, 109, 255, 1);
  margin-bottom: 3px;
  display: inline-block;
  border-radius: 3px;
  font-size: 15px;
  cursor: pointer;
  font-weight: bold;
  text-transform: uppercase;
}

.large-list .fact {
  width: 100%;
  height: min(484px, calc(100vw - 20px));
  max-width: 484px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin-bottom: 25px;
}

.large-list_fact {
  flex-direction: column;
  align-items: center;
}

@media screen and (max-width: 800px) {
  .large-list .item {
    flex: 1 0;
    min-width: calc(100% - 20px);
  }

  .large-list .item .thumb div {
    padding-bottom: 50%;
  }

  .large-list .item .title {
    font-size: 24px;
  }

  .large-list .item .subtitle {
    font-size: 16px;
    display: block;
  }
}


/*
* Ticker Box
*/
.ticker-box {
  margin-bottom: 20px;
  overflow: hidden;
  position: relative;
}

.ticker-box.fade-start:before,
.ticker-box.fade-end:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
}

.ticker-box.fade-start:before {
  background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
  left: 0;
}

.ticker-box.fade-end:after {
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
  right: 0;
}

.ticker-box .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  z-index: 10;
  border-radius: 50%;
  border: 1px rgba(0, 0, 0, 0.25) solid;
  background: #fff;
  box-shadow: 1px 21x 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8);
  transform-origin: center center;
  display: none;
  transition: transform ease 100ms;
}

.ticker-box .arrow:after {
  content: '\ea07';
  font-family: 'icons';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
}

.ticker-box .arrow.prev:after {
  transform: translate(-50%, -50%) rotate(180deg);
}

.ticker-box .arrow:hover {
  color: #db0f27;
  border-color: rgba(0, 0, 0, 0.3);
}

.ticker-box .arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.ticker-box .arrow.prev {
  left: 5px;
}

.ticker-box.fade-start .arrow.prev {
  display: block;
}

.ticker-box .arrow.next {
  right: 5px;
}

.ticker-box.fade-end .arrow.next {
  display: block;
}

@media screen and (max-width: 820px) {
  .ticker-box {
    margin: 10px;
    margin-bottom: 15px;
  }
}

.ticker-box .inner {
  display: flex;
  overflow: hidden;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.ticker-box .inner::-webkit-scrollbar {
  display: none;
}

.ticker-box .item {
  flex: 0 0 250px;
  padding: 16px;
  margin-right: 10px;
  border-radius: 8px;
  border: 1px rgba(0, 0, 0, 0.12) solid;
  cursor: pointer;
  transition: border 80ms ease;
}

.ticker-box .item:last-child {
  margin-right: 0;
}

.ticker-box .item:hover {
  border-color: rgba(0, 0, 0, 0.25);
}

.ticker-box .item .title {
  color: rgba(0,0,0,1);
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;  
  overflow: hidden;
  line-height: 1.3;
}

.ticker-box .item:hover .title {
  text-decoration: underline;
  text-decoration-color: #db0f27;
}

.ticker-box .item .time {
  color: rgba(0,0,0,0.4);
  margin-top: 5px;
  font-size: 14px;
}


/*
* Toplist Box
*/
.toplist-box {
  margin-bottom: 50px;
}

.toplist-box > .title {
  margin-bottom: 10px;
  font-size: 24px;
  font-weight: bold;
}

.toplist-box > .title span {
  display: none;
}

.toplist-box .box-content {
  position: relative;
}

.toplist-box .box-content .inner {
  display: flex;
  overflow: hidden;
  overflow-x: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.toplist-box .box-content .inner::-webkit-scrollbar {
  display: none;
}

.toplist-box .box-content.fade-start:before,
.toplist-box .box-content.fade-end:after {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50px;
}

.toplist-box .box-content.fade-start:before {
  background: linear-gradient(90deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0) 100%);
  left: 0;
}

.toplist-box .box-content.fade-end:after {
  background: linear-gradient(90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 100%);
  right: 0;
}

.toplist-box .box-content .arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  z-index: 10;
  border-radius: 50%;
  border: 1px rgba(0, 0, 0, 0.25) solid;
  background: #fff;
  box-shadow: 1px 21x 5px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  color: rgba(0, 0, 0, 0.8);
  transform-origin: center center;
  display: none;
  transition: transform ease 100ms;
}

.toplist-box .box-content .arrow:after {
  content: '\ea07';
  font-family: 'icons';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 12px;
}

.toplist-box .box-content .arrow.prev:after {
  transform: translate(-50%, -50%) rotate(180deg);
}

.toplist-box .box-content .arrow:hover {
  color: #db0f27;
  border-color: rgba(0, 0, 0, 0.3);
}

.toplist-box .box-content .arrow:active {
  transform: translateY(-50%) scale(0.95);
}

.toplist-box .box-content .arrow.prev {
  left: 5px;
}

.toplist-box .box-content.fade-start .arrow.prev {
  display: block;
}

.toplist-box .box-content .arrow.next {
  right: 5px;
}

.toplist-box .box-content.fade-end .arrow.next {
  display: block;
}

.toplist-box .item {
  flex: 0 0 400px;
  padding: 10px;
  margin-right: 10px;
  border-radius: 8px;
  border: 1px rgba(0, 0, 0, 0.12) solid;
  cursor: pointer;
  transition: border 80ms ease;
  display: flex;
  align-items: center;
}

@media screen and (max-width: 820px) {
  .toplist-box .item {
    flex: 0 0 340px;
  }
}

.toplist-box .item:last-child {
  margin-right: 0;
}

.toplist-box .item:hover {
  border-color: rgba(0, 0, 0, 0.25);
}

.toplist-box .item .count {
  flex: 0 0 30px;
  height: 30px;
  border-radius: 50%;
  background: #db0f27;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  font-weight: bold;
  margin-right: 10px;
}

.toplist-box .item .thumb {
  flex: 0 0 90px;
  height: 90px;
  overflow: hidden;
  border-radius: 4px;
  position: relative;
}

.toplist-box .item .thumb img {
  height: 100%;
  width: auto;
  object-fit: cover;
  object-position: center; 
}

.toplist-box .item .meta {
  margin-left: 10px;
}

.toplist-box .item .category {
  color: rgba(0, 109, 255, 1);
  font-weight: bold;
  text-transform: uppercase;
  font-size: 13px;
  margin-bottom: 3px;
}

.toplist-box .item .title {
  color: rgba(0,0,0,1);
  font-weight: bold;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}

.toplist-box .item:hover .title {
  text-decoration: underline;
  text-decoration-color: #db0f27;
}


/*
* List Module
*/
.articles-module {
  margin-bottom: 50px;
}

.articles-module > .title {
  font-weight: 900;
  font-size: 26px;
  padding-bottom: 10px;
  margin-bottom: 25px;
  color: rgba(0,0,0,0.9);
  position: relative;
}

.articles-module > .title:before {
  content: '';
  display: block;
  bottom: 0;
  left: 0;
  width: 30px;
  height: 5px;
  background: #db0f27;
  position: absolute;
  border-radius: 2px;
}

@media screen and (max-width: 800px) {
  .articles-module {
    padding: 10px;
    margin-bottom: 30px;
  }

  .articles-module > .title {
    font-size: 22px;
  }
}


/*
* Pagination
*/
.pagination {
    display: flex;
    font-size: 16px;
    font-weight: 700;
    justify-content: center;
    user-select: none;
    margin-top: 30px;
}

.pagination > * {
    height: 40px;
    line-height: 40px;
    margin-right: 3px;
    min-width: 40px;
    text-align: center
}

.pagination > :last-child {
    margin-right: 0
}

.pagination a {
    border-radius: 6px;
    color: rgba(0,0,0,.55);
    padding: 0 10px
}

.pagination a:hover {
    background-color: rgba(0,0,0,.05)
}

.pagination a:active {
    background-color: rgba(0,0,0,.03)
}

.pagination a.selected {
    background: rgba(0,138,255,.2);
    color: #008aff
}

.pagination a.disabled,
.pagination a.disabled:active,
.pagination a.disabled:hover {
    color: rgba(0,0,0,.3)
}

.pagination>div:after {
    color: rgba(0,0,0,.4);
    content: "\2026"
}

.pagination a.next:before,
.pagination a.prev:before {
    content: "\ea07";
    display: block;
    font-family: Icons;
    font-size: 10px
}

.pagination a.prev:before {
    transform: rotate(-180deg)
}


/*
* Author Page
*/
.author-module {
  display: flex;
  margin-bottom: 50px;
}

.author-module.simple {
  align-items: center;
}

.author-module .image {
  margin-right: 25px;
  flex: 0 0 150px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  overflow: hidden;
}

.author-module .image img {
  margin-right: 20px;
  vertical-align: top;
  width: 100%;
  height: auto;
}

.author-module .name {
  font-size: 32px;
  font-weight: 900;
  line-height: 1;
}

.author-module .occupation {
  color: #db0f27;
  margin-top: 5px;
  font-weight: bold;
  font-size: 20px;
  line-height: 1;
}

.author-module .biography {
  color: rgba(0,0,0,0.8);
  line-height: 1.5;
  font-size: 18px;
  margin-top: 20px;
}

@media screen and (max-width: 800px) {
  .author-module {
    display: block;
    padding: 10px;
    text-align: center;
    margin-bottom: 30px;
  }

  .author-module .image {
    margin: 0 auto 15px auto;
    flex: 0 0 120px;
    width: 120px;
    height: 120px;
  }

  .author-module .name {
    font-size: 26px;
    font-weight: 900;
    line-height: 1;
  }

  .author-module .occupation {
    font-size: 16px;
  }

  .author-module .biography {
    text-align: left;
    margin-top: 30px;
  }
}


article {
  width: 760px;
  margin: 0 auto;
}

article .article-category {
  margin-bottom: 8px;
}

article figure {
  margin: 0;
  width: 100%;
}

article .article-category a {
  padding: 6px 0;
  background: rgba(0, 138, 255, 0);
  color: rgba(0, 109, 255, 1);
  display: inline-block;
  border-radius: 2px;
  font-size: 15px;
  cursor: pointer;
  margin-right: 24px;
  position: relative;
  font-weight: 500;
}

article .article-category a:after {
  content: '\ea07';
  font-family: 'Icons';
  font-size: 7px;
  color: rgba(0, 109, 255, 1);
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
  margin-left: 8px;
}

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

article .article-category a:last-child {
  margin-right: 0;
}

article .article-header {
  margin-bottom: 25px;
}

article h1 {
  font-weight: 800;
  font-size: 38px;
  margin-bottom: 12px;
  line-height: 1.2;
}

article .article-excerpt {
  font-size: 20px;
  color: rgba(0, 0, 0, 0.8);
  line-height: 1.5em;
}

article .article-author {
  margin-top: 15px;
}

article .article-author .author {
  display: inline-flex;
  align-items: center;
}

article .article-author .author .image {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  overflow: hidden;
}

article .article-author .author .image img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

article .article-author .author .name {
  display: block;
  margin-left: 8px;
  color: rgba(0, 0, 0, 0.9);
  font-weight: 500;
  line-height: 17px;
}

article .article-author .author:hover .name {
  text-decoration: underline;
  text-decoration-color: #db0f27;
}

article .article-time {
  color: rgba(0, 0, 0, 0.7);
  font-size: 15px;
  margin-top: 12px;
  font-weight: bold;
}

article .main-image {
  margin: 0 -40px;
  margin-bottom: 30px;
  overflow: hidden;
  background: rgba(0,0,0,0.05);
  position: relative;
}

article .main-image img {
  width: 100%;
  height: auto;
  vertical-align: top;
}

article .article-content {
  margin-bottom: 0;
}

article .article-content h2,
article .article-content h3,
article .article-content h4,
article .article-content h5 {
  font-weight: bold;
  font-size: 30px;
  margin-bottom: 25px;
  padding-top: 5px;
  line-height: 1.3;
  color: rgba(0, 0, 0, 1);
}

article .article-content p {
  font-size: 18px;
  color: rgba(0, 0, 0, 1);
  line-height: 1.8em;
  margin-bottom: 15px;
}

article .article-content a,
.text a {
  text-decoration: underline;
  text-decoration-color: rgba(0, 0, 0, 0.6);
  text-underline-offset: 8px;
  text-decoration-thickness: 1px;
}

article .article-content a:hover,
.text a:hover {
  text-decoration-color: #db0f27;
  text-underline-offset: 6px;
  text-decoration-thickness: 3px;
}

article .article-content figure,
article .iframe-container {
  margin: 0 0 20px;
}

article .article-content img {
  width: 100% !important;
  height: auto !important;
  display: block;
  vertical-align: top;
}

article .article-content ul,
article .article-content ol {
  line-height: 1.6em;
  padding-bottom: 15px;
  font-size: 18px;
}

article .article-content ul {
  list-style: disc outside none;
  margin-left: 20px;
}

article .article-content ol {
  list-style-type: decimal;
  margin-left: 40px;
}

article .article-content ul li,
article .article-content ol li {
  margin-bottom: 4px;
}

article .wp-block-embed-youtube .wp-block-embed__wrapper,
article .article-content > .iframe-container,
article .article-content > p > .iframe-container {
  padding-top: 56.25%;
  background: rgba(0, 0, 0, 0.05);
  position: relative;
}

article .wp-block-embed-youtube .wp-block-embed__wrapper iframe,
article .article-content > .iframe-container iframe,
article .article-content > p > .iframe-container iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 0;
  width: 100% !important;
  height: 100%;
}

article .suggested-article {
  display: flex;
  align-items: center;
  gap: 25px;
  padding: 18px;
  background: #fff;
  border-radius: 6px;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

article .suggested-article img {
  height: 110px !important;
  width: 180px !important;
  border-radius: 4px;
}

article .suggested-article a {
  color: black;
  font-weight: bold;
  font-size: 19px;
  line-height: 26px;
}

article .wp-block-image,
article .main-image {
  position: relative;
}

article .wp-block-image figure {
  width: auto;
}

article .wp-block-image img {
  vertical-align: top;
  overflow: hidden;
}

article .wp-block-image figcaption,
article .main-image .thumbnail-credit {
  margin-top: 10px;
  font-size: 11px;
  position: absolute;
  padding: 4px 6px;
  border-radius: 3px;
  background: rgba(0, 0, 0, 0.5);
  color: rgba(255, 255, 255, 0.8);
  bottom: 8px;
}

article .wp-block-image figcaption {
  right: 8px;
}

article .main-image .thumbnail-credit {
  left: 8px;
}

article blockquote {
  max-width: 100%;
  width: 100%;
}

article .cca {
  padding: 20px 0 25px 0;
  text-align: center;
}

article .cca .cca-label {
  font-size: 11px;
  color: rgba(0, 0, 0, 0.3);
  text-align: center;
  margin-bottom: 5px;
  text-transform: uppercase;
}

article .cca .cca-display {
  text-align: center;
  min-height: 252px;
  background: rgba(0, 0, 0, 0.02);
  border: 1px rgba(0, 0, 0, 0.03) solid;
  border-radius: 1px;
}

@media screen and (max-width: 860px) {
  article .cca {
    margin: 0;
  }

  article {
    width: 700px;
    padding: 0 20px;
  }

  article .main-image {
    margin-left: -20px;
    margin-right: -20px;
  }
  article iframe {
    width: 100% !important;
  }
}

@media screen and (max-width: 800px) {
  article {
    width: 100%;
    padding: 15px;
  }

  article .main-image {
    margin-left: -10px;
    margin-right: -10px;
  }

  article iframe {
    width: 100% !important;
  }

  article h1 {
    font-size: 34px;
  }

  article .article-content p {
    font-size: 17px;
  }
}

@media screen and (max-width: 450px) {
  article .suggested-article {
    flex-direction: column;
  }

  article .suggested-article img {
    width: 100% !important;
    height: auto !important;
  }
}

article .share-buttons {
  margin: 20px 0;
}

article .share-buttons div.share-title {
  font-weight: bold;
  margin-bottom: 10px;
  font-size: 15px;
  color: rgba(0, 0, 0, 0.75);
}

article .share-buttons > a {
  font-family: 'Icons';
  width: 50px;
  height: 50px;
  display: inline-block;
  border-radius: 50%;
  position: relative;
  margin-right: 7px;
  transition: transform 0.1s linear;
  transform: scale(1);
}

article .share-buttons > a:active {
  transform: scale(0.9);
}

article .share-buttons > a:before {
  content: '';
  position: absolute;
  color: #fff;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  font-size: 23px;
}

article .share-buttons > a.wa {
  background: #25d366;
}

article .share-buttons > a.wa:before {
  content: '\ea06';
}

article .share-buttons > a.fb {
  background: #4267b2;
}

article .share-buttons > a.fb:before {
  content: '\ea02';
}

article .share-buttons > a.tw {
  background: #2aa3ef;
}

article .share-buttons > a.tw:before {
  content: '\ea04';
}

article .share-buttons > a.me {
  background: #2787ff;
}

article .share-buttons > a.me:before {
  content: '\ea08';
}

article .share-buttons > a.ma {
  background: rgba(0, 0, 0, 0.25);
}

article .share-buttons > a.ma:before {
  content: '\ea09';
}

/*
* Gift Finder
*/
.giftfinder > .title {
  font-size: 28px;
  font-weight: bold;
  display: flex;
  align-items: center;
  height: 50px;
  margin-bottom: 30px;
}

.giftfinder > .title .type-select {
  height: 50px;
  border-radius: 25px;
  background: rgba(0, 0, 0, 0.05);
  line-height: 26px;
  padding: 11px 38px 11px 20px;
  font-size: 22px;
  margin-left: 10px;
  user-select: none;
  cursor: pointer;
  position: relative;
  border: 1px transparent solid;
}

.giftfinder > .title .type-select:hover {
  background: rgba(0, 0, 0, 0.07);
  border-color: rgba(0, 0, 0, 0.1);
}

.giftfinder > .title .type-select:active {
  background: rgba(0, 0, 0, 0.06);
}

.giftfinder > .title .type-select:after {
  content: '\ea07';
  font-family: 'icons';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center center;
  font-size: 11px;
  color: rgba(0, 0, 0, 0.4);
}

.giftfinder .filters {
  display: flex;
  margin-bottom: 30px;
}

.giftfinder .filters .filter {
  flex: 1 0;
  margin-right: 15px;
  border: 1px rgba(0, 0, 0, 0.2) solid;
  border-radius: 8px;
  padding: 15px;
  position: relative;
  cursor: pointer;
  user-select: none;
}

.giftfinder .filters .filter:hover {
  border-color: rgba(0, 0, 0, 0.3);
}

.giftfinder .filters .filter:active {
  border-color: rgba(0, 0, 0, 0.25);
}

.giftfinder .filters .filter:after {
  content: '\ea07';
  font-family: 'icons';
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  transform-origin: center center;
  font-size: 12px;
  color: rgba(0, 0, 0, 0.4);
}

.giftfinder .filters .filter.open:after {
  transform: translateY(-50%) rotate(270deg);
}

.giftfinder .filters .filter:hover:after {
  color: rgba(0, 0, 0, 0.5);
}

.giftfinder .filters .filter .label {
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.6);
  margin-bottom: 3px;
}

.giftfinder .filters .filter .value {
  font-size: 18px;
  font-weight: 500;
  color: rgba(0, 0, 0, 1);
}

.giftfinder .filters .filter:last-child {
  margin-right: 0;
}

.giftfinder .products {
  display: flex;
  flex-wrap: wrap;
  margin: -15px;
}

.giftfinder .products .product {
  flex: 1 0;
  flex-basis: calc(100% / 4 - 30px);
  max-width: calc(100% / 4 - 30px);
  margin: 15px;
  cursor: pointer;
}

@media screen and (max-width: 900px) {
  .giftfinder .products .product {
    flex-basis: calc(100% / 3 - 15px);
    max-width: calc(100% / 3 - 15px);
    margin: 7.5px;
  }
}

.giftfinder .products .product .image {
  width: 100%;
  aspect-ratio: 1;
  margin-bottom: 10px;
  border-radius: 6px;
  overflow: hidden;
  position: relative;
  text-align: center; 
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  user-select: none;
  border: 1px transparent solid;
}

.giftfinder .products .product .image:after {
  content: '';
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0.03;
  background: #000;
  position: absolute;
  z-index: 1;
}

.giftfinder .products .product:hover .image {
  box-shadow: 0px 0px 6px rgba(0, 0, 0, 0.05);
  border-color: rgba(0, 0, 0, 0.15);
}

.giftfinder .products .product:active .image {
  border-color: rgba(0, 0, 0, 0.125);
}

.giftfinder .products .product .image img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
}

.giftfinder .products .product .name {
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  margin-bottom: 3px;
  color: #000;
}

.giftfinder .products .product .price {
  color: rgba(0, 0, 0, 0.6);
}