@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Inconsolata:400,700|Poppins:400,700");
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*
* Hide only visually, but have it available for screen readers: h5bp.com/v
*/
.visuallyhidden {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

*::-moz-selection {
background:rgba(118, 54, 255, 0.18);
color:#7636ff;
}
*::selection {
background:rgba(118, 54, 255, 0.18);
color:#7636ff;
}

/*
* Extends the .visuallyhidden class to allow the element to be focusable
* when navigated to via the keyboard: h5bp.com/p
*/
.visuallyhidden.focusable:active,
.visuallyhidden.focusable:focus {
  clip: auto;
  height: auto;
  margin: 0;
  overflow: visible;
  position: static;
  width: auto;
}

html, body {
  font-family: "Inconsolata", serif;
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  background-color: #FFFFFF;
  color: #111111;
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-family: "Inconsolata", serif;
  width: 100%;
}

img, svg {
  max-width: 100%;
}

@media not screen and (min-device-pixel-ratio: 2), not screen and (-webkit-min-device-pixel-ratio: 2), not screen and (min-resolution: 192dpi) {
  span.emoji {
    margin-right: 5px;
  }
}

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

.svg-logo {
  width: 30px;
  color: white;
  vertical-align: middle;
}

.svg-icon {
  width: 40px;
  vertical-align: middle;
}

.not-found h1 {
  font-family: "Poppins", serif;
  font-size: 40px;
  font-weight: bold;
  color: #111111;
  padding: 200px 20px;
  text-align: center;
  line-height: 1.3em;
}

.underline {
  background-image: linear-gradient(120deg, #E9F4DD 0%, #E9F4DD 100%);
  background-repeat: no-repeat;
  background-size: 100% 0.35em;
  background-position: 0 88%;
  transition: background-size 0.25s ease-in;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

.button {
  color: #7636ff;
  border: 2px solid #7636ff;
  font-weight: bold;
  font-size: 1.1em;
  padding: 10px 20px;
  text-decoration: none;
  transition: all 0.2s;
  cursor: pointer;
}

.button .material-icons {
  vertical-align: middle;
  margin-top: -1px;
}

.button:hover {
  text-decoration: underline;
  box-shadow: -7px 7px #7636ff;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000;

  display: flex;
  align-items: center;
  justify-content: space-between;

  padding: 24px 40px;
  box-sizing: border-box;

  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);

  transition: all 0.3s ease;
}

header.fixed {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  transform: translateY(0);
  opacity: 1;
  animation: slideDown 0.3s ease;

  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);

  box-shadow: 0 4px 20px rgba(118, 54, 255, 0.15);

  padding: 5px 70px;
}

header.dark.fixed {
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

header.black.fixed {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
}

header .links a {
  color: #7636ff;
}

header #burger span {
  background: #7636ff;
}

header.dark .links a {
  color: #fff;
}

header.dark #burger span {
  background: #fff;
}

header.black .links a {
  color: #111;
}

header.black #burger span {
  background: #111;
}

@keyframes slideDown {
  from {
    transform: translateY(-10px);
  }
  to {
    transform: translateY(0);
  }
}

@keyframes line-slide {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

@keyframes fade-slide {
  from {
    opacity: 0;
    top: 100vh;
  }
  to {
    opacity: 1;
    top: 0;
  }
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes roll-in {
  from {
    height: 0px;
  }
  to {
    height: 15px;
  }
}

.mobile-nav {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100vh;
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  z-index: 9999;
}

.mobile-nav.active {
  display: flex;
}

header.dark .mobile-nav,
header.black .mobile-nav {
  background: rgba(17, 17, 17, 0.85);
}

header.dark .mobile-nav::before,
header.black .mobile-nav::before {
  color: #FFFFFF;
}

.mobile-nav .inner {
  text-align: center;
}

.mobile-nav .inner h1 {
  opacity: 0;
  animation: fade-in 0.5s forwards;
  font-family: "Poppins", serif;
  font-weight: 700;
  font-size: clamp(2.8rem, 8vw, 6rem);
  margin: 25px 0;
}

.mobile-nav .inner h1.second { animation-delay: 0.2s; }
.mobile-nav .inner h1.third  { animation-delay: 0.4s; }

.mobile-nav .inner h1 a {
  text-decoration: none;
  color: inherit;
}

.mobile-nav .inner h1 span {
  position: relative;
  display: inline-block;
  color: #111111;
}

header.dark .mobile-nav .inner h1 span,
header.black .mobile-nav .inner h1 span {
  color: #FFFFFF;
}

.mobile-nav .inner h1 span::before,
.mobile-nav .inner h1 span::after {
  content: '';
  position: absolute;
  width: 0%;
  height: 14px;
  top: 82%;
  background: #7636ff8c;
}

.mobile-nav .inner h1 span::before {
  left: 0;
  animation: line-slide 0.9s cubic-bezier(0.785, 0.135, 0.15, 0.86) forwards;
  animation-delay: 0.6s;
}

.mobile-nav .inner h1 span::after {
  right: 0;
  background: #7636ff;
  transition: width 0.6s ease;
}

.mobile-nav .inner h1:hover span::before {
  width: 100%;
  background: #7636FF;
}

.mobile-nav .inner h1:hover span::after {
  width: 100%;
  background: transparent;
}

footer {
  background: #111111;
  border-top: 1px solid #191919;
  color: #F5F5F5;
  width: 100%;
  text-align: center;
}

footer .block {
  max-width: 1000px;
  height: 50px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
}

footer .block .logo img {
  width: 200px;
}

footer .block .note {
  margin-left: 100px;
  font-size: 0.8em;
}

@media screen and (max-width: 48rem) {
  footer .block {
    display: -ms-inline-grid;
    display: inline-grid;
    text-align: center;
    width: 100%;
    height: 100px;
  }
  footer .block .logo {
    margin: 0 auto;
    float: initial;
    -ms-flex-item-align: end;
        -ms-grid-row-align: end;
        align-self: end;
  }
  footer .block .note {
    margin: 0 auto;
    -ms-flex-item-align: baseline;
        align-self: baseline;
    margin-top: 30px;
    opacity: 0.5;
  }
}

@media screen and (max-width: 26.5625rem) {
  footer .block .note {
    font-size: 0.8em;
  }
}

@keyframes slide {
  0%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-50px);
  }
}

@keyframes swish {
  0%, 100% {
    transform: skew(0deg);
  }
  50% {
    transform: skew(-5deg);
  }
}

@keyframes fade-in-right {
  from {
    opacity: 0;
    transform: translateX(-15px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fade-in-top {
  from {
    opacity: 0;
    transform: translateY(-15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fade-in-bottom {
  from {
    opacity: 0;
    transform: translateY(15px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.slide {
  animation: slide 10s infinite;
}

.slide.second {
  animation-delay: 1s;
}

.slide.third {
  animation-delay: 2s;
}

.swish {
  animation: swish 5s infinite;
  transform-origin: center;
}

.swish.second {
  animation-delay: 0.5s;
}

.swish.third {
  animation-delay: 1s;
}

#burger {
  width: 28px;
  height: 18px;
  position: relative;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

#burger span {
  position: absolute;
  height: 2.5px;
  width: 100%;
  background: #7636ff;
  left: 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

#burger span:nth-child(1) {
  top: 0;
}

#burger span:nth-child(2) {
  top: 8px;
}

#burger span:nth-child(3) {
  top: 16px;
}

#burger.open span:nth-child(1) {
  top: 8px;
  transform: rotate(45deg);
}

#burger.open span:nth-child(2) {
  opacity: 0;
  transform: scale(0);
  visibility: hidden;
}

#burger.open span:nth-child(3) {
  top: 8px;
  transform: rotate(-45deg);
}

div.home section {
  width: 100%;
  text-align: center;
}

div.home section.top {
  background: #FFFFFF;
  padding: 100px 0;
}

div.home section.top .block {
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: center;
      align-items: center;
  padding: 70px;
  max-width: 1200px;
  opacity: 0;
  animation: fade-in-bottom ease 0.4s forwards;
  animation-delay: 0.4s;
}

div.home section.top .block .text {
  margin: 0px 40px;
  text-align: left;
  width: 40%;
}

div.home section.top .block .text h1 {
  font-family: "Poppins", serif;
  font-size: 4em;
  font-weight: bold;
  text-transform: uppercase;
  color: #111111;
  max-width: 295px;
}

div.home section.top .block .text p.subtitle {
  font-family: "Inconsolata", serif;
  line-height: 2em;
  margin-top: 20px;
  color: #949292;
}

div.home section.top .block .graphic {
  width: 60%;
  margin: 0px 40px;
}

div.home section.top .block .graphic svg {
  width: 100%;
  height: initial;
}

div.home section.top .decoration {
  width: 800px;
  position: absolute;
  top: 500px;
  left: -450px;
  opacity: 0;
  animation: fade-in-right ease 0.4s forwards;
  animation-delay: 0.4s;
}

div.home section.top .decoration img {
  transform: rotate(-24deg);
}

div.home section.top .prompt {
  text-align: right;
  margin-bottom: -60px;
  margin-top: 60px;
  margin-right: 40px;
}

div.home section.top .prompt span:before {
  content: '';
  width: 100px;
  height: 8px;
  position: absolute;
  border-bottom: 1px solid #111111;
  margin-left: -107px;
}

@media screen and (max-width: 80rem) {
  div.home section.top .block .text h1 {
    font-size: 3em;
  }
  div.home section.top .decoration {
    width: 700px;
    top: 400px;
  }
}

@media screen and (max-width: 48rem) {
  div.home section.top {
    padding: 100px 0 0 0;
  }
  div.home section.top .decoration {
    display: none !important;
  }
  div.home section.top .block {
    padding: 70px 0 0 0;
    display: block;
    border-bottom: 1px solid white;
  }
  div.home section.top .block .text {
    max-width: 450px;
    margin: 0 auto;
    padding: 0 50px;
    width: initial;
  }
  div.home section.top .block .text h1 {
    font-size: 3em;
  }
  div.home section.top .block .graphic {
    width: initial;
    margin: 60px 0 -20px 0;
  }
  div.home section.top .block .graphic svg {
    background-image: linear-gradient(120deg, #FFFFFF 0%, #FFFFFF 100%);
    background-repeat: no-repeat;
    background-size: 100% 90px;
    background-position: 0 100%;
    border-bottom: 50px solid #FFFFFF;
    padding: 0px 100px;
    width: calc(100% - 200px);
  }
  div.home section.top .prompt {
    display: none;
  }
}

@media screen and (max-width: 26.5625rem) {
  div.home section.top .block .text {
    width: initial;
  }
  div.home section.top .block .graphic svg {
    background-image: linear-gradient(120deg, #FFFFFF 0%, #FFFFFF 100%);
    background-repeat: no-repeat;
    background-size: 100% 90px;
    background-position: 0 100%;
    border-bottom: 50px solid #FFFFFF;
    padding: 0px 30px;
    width: calc(100% - 60px);
  }
}

div.home section.about {
  padding: 100px 0px;
  background-color: #F5F5F5;
}

div.home section.about.start .block .text h1 {
  animation: fade-in-right ease 0.8s forwards;
  animation-delay: 0.3s;
}

div.home section.about.start .block .text p {
  animation: fade-in-right ease 0.8s forwards;
  animation-delay: 0.6s;
}

div.home section.about.start .block .graphic {
  animation: fade-in-top ease 0.8s forwards;
  animation-delay: 0.6s;
}

div.home section.about.start .lower-text {
  animation: fade-in-right ease 0.8s forwards;
  animation-delay: 0.8s;
}

div.home section.about .block {
  background: #F5F5F5;
  max-width: 1000px;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -ms-flex-align: end;
      align-items: flex-end;
  text-align: left;
}

div.home section.about .block .graphic {
  padding: 40px 0px;
  opacity: 0;
  width: 80%;
}

div.home section.about .block .text {
  width: 50%;
}

div.home section.about .block .text h1 {
  color: #111111;
  font-family: "Poppins", serif;
  font-size: 2em;
  font-weight: bold;
  margin-bottom: 10px;
  padding: 10px;
  background: #7636ff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  box-shadow: -10px 10px #111111;
  opacity: 0;
}

div.home section.about .block .text p {
  opacity: 0;
}

div.home section.about .about-text {
  padding: 10px 0px;
  font-family: "Inconsolata", serif;
  line-height: 1.9em;
  font-size: 0.9em;
  color: #111111;
}

div.home section.about .lower-text {
  display: block;
  opacity: 0;
}

div.home section.about .lower-text .text {
  max-width: 1000px;
  margin: 0 auto;
  text-align: left;
}

div.home section.about .button-container {
  margin: 50px 0px;
}

@media screen and (max-width: 80rem) {
  div.home section.about .block, div.home section.about .lower-text {
    padding: 0px 100px;
  }
}

@media screen and (max-width: 48rem) {
  div.home section.about .block, div.home section.about .lower-text {
    padding: 0px 40px;
  }
  div.home section.about .block {
    display: block;
  }
  div.home section.about .block .text {
    width: calc(100%);
  }
  div.home section.about .block .text h1 {
    margin: 0 auto;
    padding: 20px;
    margin-bottom: 30px;
  }
  div.home section.about .block .graphic {
    width: 100%;
    display: -ms-inline-grid;
    display: inline-grid;
  }
  div.home section.about .block .graphic img {
    max-width: 300px;
    width: 100%;
    margin: 0 auto;
  }
}

div.home section.contact {
  background-color: #111111;
}

div.home section.contact .block {
  max-width: 700px;
  margin: 0 auto;
  padding: 100px 0;
  text-align: left;
  color: #F5F5F5;
}

div.home section.contact .block h1 {
  font-family: "Poppins", serif;
  font-size: 2em;
  font-weight: bold;
  color: #111111;
  background: #F5F5F5;
  padding: 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

div.home section.contact .block p {
  margin: 20px 0 50px 0;
}

div.home section.contact .block .container {
  max-width: 1000px;
  display: flex;
  width: 100%;
  justify-content: space-between;
  align-items: center; 
}

div.home section.contact .block .container .form {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
}

div.home section.contact .block .container .form textarea,
div.home section.contact .block .container .form input {
  display: block;
  width: 100%;
  margin: 10px -15px;
  font-size: 1em;
  border: 2px solid #F5F5F5;
  background: transparent;
  color: white;
  padding: 15px;
  outline: none;
  transition: 0.2s all;
  font-family: "Inconsolata", serif;
  border-radius: 0;
}

div.home section.contact .block .container .form textarea:active, div.home section.contact .block .container .form textarea:focus,
div.home section.contact .block .container .form input:active,
div.home section.contact .block .container .form input:focus {
  border: 2px solid #7636ff;
}

div.home section.contact .block .container .form textarea {
  min-height: 50px;
  min-width: 100%;
  max-width: 100%;
}

div.home section.contact .block .container .form button {
  margin-right: -15px;
  font-family: "Inconsolata", serif;
  border: 2px solid #F5F5F5;
  background: transparent;
  color: #F5F5F5;
}

div.home section.contact .block .container .form button:hover {
  box-shadow: -7px 7px #7636ff;
}

div.home section.contact .block .container .form button .material-icons {
  margin: 0;
}

div.home section.contact .block .container .social {
  width: 50%;
}

div.home section.contact .block .container .social ul li {
  padding: 15px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
}

div.home section.contact .block .container .social ul li a {
  color: inherit;
  text-decoration: none;
  display: block;
}

div.home section.contact .block .container .social ul li:hover span {
  border-bottom: 1px solid white;
  padding-bottom: 1.5px;
}

div.home section.contact .block .container .social ul li:hover i {
  background-color: #7636ff;
}

div.home section.contact .block .container .social ul li i {
  font-size: 1.6em;
  vertical-align: middle;
  color: #F5F5F5;
  padding: 10px;
  transition: 0.2s all;
}

div.home section.contact .block .container .social ul li span {
  margin-left: 20px;
}

div.home section.contact .block .orange {
  background-image: linear-gradient(120deg, #7636ff 0%, #7636ff 100%);
}

@media screen and (max-width: 48rem) {
  div.home section.contact .block {
    padding: 50px;
  }

  div.home section.contact .block h1 {
    margin-left: -100px;
    padding-left: 100px;
    margin-top: -20px;
    background-size: 100% 2.5em;
    font-size: 1.5em;
  }

  div.home section.contact .block p {
    margin: 20px 0 20px 0;
    line-height: 1.8em;
    font-size: 0.9em;
  }

  div.home section.contact .block .container {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  div.home section.contact .block .container .form {
    margin: 20px auto 0 auto;
    width: calc(100% - 50px);
  }

  div.home section.contact .block .container .social {
    width: 100%;
    font-size: 0.9em;
    text-align: center;
  }

  div.home section.contact .block .container .form input,
  div.home section.contact .block .container .form textarea {
    font-size: 0.8em;
  }
}

@media screen and (max-width: 26.5625rem) {
  div.home section.contact .block {
    padding: 50px 30px;
  }
}

.rev-block {
  position: -webkit-sticky;
  position: sticky;
}

.rev-block span {
  opacity: 0;
  animation: appear-text 0.0001s linear forwards;
  animation-delay: 1.4s;
}

.rev-block:after {
  content: '';
  top: 0;
  left: 0;
  position: absolute;
  width: 0%;
  height: 100%;
  background: #111111;
  animation: rev-block 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  animation-delay: 1s;
}

@keyframes rev-block {
  0% {
    left: 0;
    width: 0%;
  }
  50% {
    left: 0;
    width: 100%;
  }
  100% {
    left: 100%;
    width: 0%;
  }
}

@keyframes appear-text {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

#onemore span {
  animation-delay: 2s;
}

#onemore.rev-block:after {
  background: #7636ff;
  animation-delay: 1.4s;
}

div.work .lazy {
  display: none;
}

div.work .slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}

div.work .slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}

div.work .slick-dots li.slick-active button:before {
  opacity: .75;
  color: #7636ff;
}

div.work .slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}

div.work .slick-dots li button:before {
  font-family: 'slick';
  font-size: 24px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '■';
  text-align: center;
  opacity: .15;
  color: #7636ff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

div.work .slick-arrow {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: white;
  border: none;
  outline: none;
  background-color: rgba(0, 0, 0, 0.75);
  width: 50px;
  height: 50px;
  z-index: 1;
  transition: 0.2s background-color;
}

div.work .slick-arrow .svg-icon {
  width: 40px;
  cursor: pointer;
}

div.work .slick-arrow:hover {
  background-color: #7636FF;
}

div.work .slick-next {
  right: 0px;
}

div.work section.title {
  background-color: white;
  height: 800px;
  padding-bottom: 50px;
}

div.work section.title .block {
  padding-top: 230px;
}

div.work section.title .block .text {
  margin-left: 250px;
  position: absolute;
  z-index: 10;
}

div.work section.title .block .text h1 {
  font-size: 5em;
  font-family: "Poppins", serif;
  font-weight: 900;
}

div.work section.title .block .text p {
  margin-top: 20px;
}

div.work section.title .block .skew {
  width: 1100px;
  height: 600px;
  margin-left: -600px;
  transform: skew(-60deg);
  position: absolute;
  top: 0;
  left: 0;
  background: #7636ff;
  z-index: 10;
}

div.work section.title .featured {
  margin: 0 auto;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: end;
      align-items: flex-end;
  max-width: 1000px;
  margin-top: -80px;
  opacity: 0;
  transition: 0.5s opacity;
}

div.work section.title .featured.loaded {
  opacity: 1;
}

div.work section.title .featured .mobile-image {
  display: none;
  width: 400px;
  margin: 0 auto;
}

div.work section.title .featured .text {
  -ms-flex: 60%;
      flex: 60%;
  text-align: right;
  padding: 30px;
  border: #111111 2px solid;
  margin-right: 20px;
  box-shadow: 10px 10px #111111;
}

div.work section.title .featured .text span {
  font-family: "Poppins", serif;
  text-transform: uppercase;
  font-size: 0.8em;
  font-weight: 400;
  letter-spacing: 0.2em;
}

div.work section.title .featured .text h2 {
  font-size: 2em;
  margin: 5px 0 15px 0;
  font-weight: bold;
  font-family: "Poppins", serif;
}

div.work section.title .featured .text p {
  font-size: 0.9em;
  word-spacing: 0.1em;
  line-height: 1.8em;
  color: #949292;
}

div.work section.title .featured .image {
  max-width: 580px;
  box-shadow: 10px 10px #7636ff;
}

div.work section.title .featured .image .slick-dots {
  bottom: -35px;
}

div.work section.grid {
  background-color: #7636ff;
  padding-bottom: 20px;
}

div.work section.grid .projects {
  max-width: 1200px;
  margin: 0 auto;
}

div.work section.grid .projects .project {
  width: 100%;
}

div.work section.grid .block {
  max-width: 1200px;
  margin: 0 auto;
}

div.work section.grid .block .more {
  display: block;
  text-align: center;
  padding: 50px 0 20px 0;
  font-family: "Poppins", serif;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: white;
  font-weight: bold;
}

div.work section.grid .block .more::after {
  content: '';
  position: absolute;
  height: 4px;
  width: 180px;
  margin-top: 1.2em;
  margin-left: -220px;
  text-align: center;
  background: #111111;
}

div.work section.grid .block .holder {
  /* Clip edges, as some of the lines don't terminate nicely. */
  overflow: hidden;
  position: relative;
  width: 200px;
  height: 50px;
}

div.work section.grid .block .ellipse {
  position: absolute;
  background: radial-gradient(ellipse, transparent, transparent 7px, black 7px, black 10px, transparent 11px);
  background-size: 36px 40px;
  width: 200px;
  height: 20px;
}

div.work section.grid .block .ellipse2 {
  top: 20px;
  left: 18px;
  background-position: 0px -20px;
}

div.work section.grid .block .row {
  display: -ms-flexbox;
  display: flex;
}

div.work section.grid .block .row .card {
  margin: 50px;
  width: 50%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  background: #FFFFFF;
  transition: 0.2s all;
}

div.work section.grid .block .row .card:hover {
  transform: scale(1.01);
}

div.work section.grid .block .row .card .content p, div.work section.grid .block .row .card .footer p {
  font-size: 0.9em;
  word-spacing: 0.1em;
  line-height: 1.8em;
  color: #949292;
}

div.work section.grid .block .row .card .content {
  padding: 30px;
  margin-top: -2px;
}

div.work section.grid .block .row .card .content h2 {
  font-size: 1.8em;
  font-weight: bold;
  font-family: "Poppins", serif;
  margin-bottom: 20px;
}

div.work section.grid .block .row .card .footer {
  border-top: 1px solid #D8D8D8;
  border-radius: 0 0 10px 10px;
  margin: 0 20px;
  padding: 15px 5px;
  max-height: 55px;
  overflow: hidden;
}

div.work section.grid .block .row .card .footer span {
  vertical-align: middle;
  float: right;
}

div.work section.grid .block .row .card .footer p {
  text-transform: uppercase;
  color: #90949C;
}

@media screen and (max-width: 90rem) {
  div.work section.title .block {
    padding-top: 180px;
  }
  div.work section.title .block .skew {
    width: 800px;
    height: 500px;
    margin-left: -500px;
  }
  div.work section.title .block .text {
    margin-left: 120px;
    margin-top: 50px;
  }
  div.work section.title .block .text h1 {
    font-size: 4em;
  }
  div.work section.title .featured {
    margin-top: 0px;
    max-width: 1000px;
  }
  div.work section.title .featured .text p {
    font-size: 0.8em;
  }
  div.work section.title .featured .image {
    max-width: 450px;
    -ms-flex: 80%;
        flex: 80%;
  }
}

@media screen and (max-width: 80rem) {
  div.work section.title .block .text {
    margin-left: 100px;
  }
  div.work section.title .featured {
    margin-top: 50px;
    max-width: 800px;
  }
  div.work section.title .featured .image {
    max-width: 400px;
  }
}

@media screen and (max-width: 64rem) {
  div.work .slick-arrow {
    width: 40px;
    height: 40px;
  }
  div.work .slick-arrow .svg-icon {
    font-size: 20px;
  }
  div.work section.title {
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
  }
  div.work section.title .block {
    padding-top: 130px;
  }
  div.work section.title .block .text {
    margin-left: calc(50vw - 190px);
  }
  div.work section.title .block .text h1 {
    font-size: 3.5em;
  }
  div.work section.title .featured {
    display: inline-block;
    margin: 200px auto 0 auto;
    float: none;
    width: 100%;
    max-width: 100%;
  }
  div.work section.title .featured .mobile-image {
    display: block;
    width: 500px;
  }
  div.work section.title .featured .text {
    text-align: left;
    border: none;
    box-shadow: none;
    max-width: 400px;
    margin: 0 auto;
    padding-top: 50px;
  }
  div.work section.title .featured .image {
    display: none;
  }
}

@media screen and (max-width: 48rem) {
  div.work section.title .featured .mobile-image {
    width: 400px;
  }
  div.work section.grid .block .row {
    display: block;
  }
  div.work section.grid .block .row .card {
    margin: 30px auto 80px auto;
    max-width: 450px;
    width: 90%;
  }
}

@media screen and (max-width: 26.5625rem) {
  div.work section.title {
    height: 880px;
  }
  div.work section.title .block {
    padding-top: 100px;
  }
  div.work section.title .block .text {
    margin-left: 30px;
  }
  div.work section.title .block .text h1 {
    font-size: 3.5em;
  }
  div.work section.title .block .text p {
    max-width: 250px;
  }
  div.work section.title .featured {
    margin: 30px;
    margin-top: 200px;
    float: none;
    width: unset;
  }
  div.work section.title .featured .mobile-image {
    display: block;
    width: calc(100vw - 70px);
  }
  div.work section.title .featured .text {
    padding: 40px 5px;
  }
  div.work section.title .featured .image {
    display: none;
  }

 div.home section.contact .block .container .form {
  display: flex;
  align-items: center;
  justify-content: center;
  width: auto;
  }
}

  div.home section.contact .block .container .form a.button {
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
}

  div.home section.contact .block .container .form a.button:hover {
  color: #FFFFFF;
  border: 2px solid #FFFFFF;
  box-shadow: -7px 7px #FFFFFF;
}

.mobile-nav.active ~ header {
  background: transparent !important;
  box-shadow: none !important;
  border: none !important;
  backdrop-filter: none !important;
}

.mobile-nav.active ~ header::before,
.mobile-nav.active ~ header::after {
  display: none !important;
}

.status-system {
  background: #F5F5F5;
  min-height: 100vh;
}

.status-container {
  width: calc(100% - 60px);
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
}

.status-hero {
  padding: 130px 0 90px 0;
}

.status-hero-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 18px;
}

.status-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", serif;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: #7636ff;
}

.status-label::before {
  content: '';
  width: 12px;
  height: 12px;
  border-radius: 50%;
}

.status-label.operational::before {
  background: #22c55e;
  animation: pulseOperational 1.8s infinite;
}

.status-label.degraded::before {
  background: #f59e0b;
  animation: pulseDegraded 1.8s infinite;
}

.status-label.outage::before {
  background: #ef4444;
  animation: pulseOutage 1.8s infinite;
}

.status-label.maintenance::before {
  background: #3b82f6;
  animation: pulseMaintenance 1.8s infinite;
}

.status-label.checking::before {
  background: #6b7280;
  animation: pulseChecking 1.8s infinite;
}

.status-hero h1 {
  font-family: "Poppins", serif;
  font-size: clamp(3rem, 9vw, 5rem);
  line-height: 0.95em;
  font-weight: 900;
  max-width: 700px;
  margin-top: 0;
  color: #111111;
}

.status-hero p {
  margin-top: 28px;
  max-width: 650px;
  font-size: 1.1rem;
  line-height: 1.8em;
  color: #6e6e6e;
}

.status-services-section,
.status-maintenances-section,
.status-incidents-section {
  padding-bottom: 100px;
}

.status-maintenances-section + .status-incidents-section {
  padding-top: 0;
  margin-top: 20px;
}

.status-section-title {
  margin-bottom: 40px;
}

.status-section-title h2 {
  font-family: "Poppins", serif;
  font-size: 2rem;
  font-weight: 800;
  margin: 0;
}

.status-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 25px;
}

.status-card,
.incident-card {
  background: white;
  border: 1px solid rgba(0,0,0,0.08);
  padding: 35px;
  transition: 0.3s ease;
}

.status-card:hover,
.incident-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(118,54,255,0.08);
}

.status-card h3,
.incident-card h3 {
  font-family: "Poppins", serif;
  font-size: 1.6rem;
  font-weight: 800;
  color: #111111;
  margin-bottom: 16px;
}

.status-card p,
.incident-card p {
  margin-top: 12px;
  line-height: 1.8em;
  color: #777777;
}

.status-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 22px;
  min-height: 140px;
}

.status-badge {
  padding: 10px 16px;
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
  align-self: flex-start;
}

.status-badge.operational {
  background: rgba(34,197,94,0.12);
  color: #16a34a;
}

.status-badge.degraded {
  background: rgba(245,158,11,0.12);
  color: #d97706;
}

.status-badge.maintenance {
  background: rgba(59,130,246,0.12);
  color: #2563eb;
}

.status-badge.outage {
  background: rgba(239,68,68,0.12);
  color: #dc2626;
}

.status-badge.checking {
  background: rgba(107,114,128,0.12);
  color: #6b7280;
}

.incident-date {
  display: block;
  margin-bottom: 15px;
  color: #7636ff;
  font-size: 0.9rem;
  font-weight: 700;
}

.incident-timeline {
  margin-top: 25px;
  border-left: 2px solid rgba(118,54,255,0.18);
  padding-left: 20px;
}

.incident-update {
  position: relative;
  margin-bottom: 25px;
}

.incident-update:last-child {
  margin-bottom: 0;
}

.incident-update::before {
  content: '';
  position: absolute;
  left: -27px;
  top: 4px;
  width: 10px;
  height: 10px;
  background: #7636ff;
  border-radius: 50%;
}

.incident-update-date {
  display: block;
  margin-bottom: 8px;
  color: #7636ff;
  font-size: 0.85rem;
  font-weight: 700;
}

.incident-update strong {
  display: block;
  font-family: "Poppins", serif;
  font-size: 1rem;
  font-weight: 800;
  color: #111111;
}

.incident-update p {
  margin-top: 8px;
}

.incident-group-title {
  font-family: "Poppins", serif;
  font-size: 1.4rem;
  font-weight: 800;
  color: #111111;
  margin: 35px 0 20px;
}

.resolved-title {
  margin-top: 55px;
}

.incident-resolved .incident-timeline {
  display: none;
}

.incident-resolved .incident-timeline.active {
  display: block;
}

.incident-toggle,
.incident-pagination button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: none;
  background: transparent;
  color: #7636ff;
  font-family: "Inconsolata", serif;
  font-weight: 700;
  font-size: 1em;
  cursor: pointer;
  transition: opacity 0.2s ease;
}

.incident-toggle {
  margin-top: 10px;
}

.incident-toggle:hover,
.incident-pagination button:hover:not(:disabled) {
  text-decoration: underline;
}

.incident-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 40px;
}

.incident-pagination button {
  width: 38px;
  height: 38px;
  line-height: 1;
}

.incident-pagination button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
  text-decoration: none;
}

#resolved-page-info {
  min-width: 40px;
  color: #777777;
  font-weight: 700;
  text-align: center;
  line-height: 38px;
}

.maintenance-card {
  border-left: 4px solid #3b82f6;
}

.maintenance-card .incident-date,
.maintenance-card .incident-update-date {
  color: #2563eb;
}

.status-hero-mail {
  position: relative;
  flex-shrink: 0;
}

.status-mail-button-header {
  width: 42px;
  height: 42px;
  border: none;
  background: transparent;
  color: #7636ff;
  font-size: 1.35rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.status-mail-button-header i {
  pointer-events: none;
}

.status-mail-box {
  position: absolute;
  top: 52px;
  right: 0;
  width: 360px;
  max-width: calc(100vw - 60px);
  box-sizing: border-box;
  background: #ffffff;
  border: 2px solid #111111;
  padding: 28px;
  box-shadow: -10px 10px #7636ff;
  display: none;
  z-index: 10001;
  text-align: left;
}

.status-mail-box.active {
  display: block;
}

.status-mail-box h2 {
  font-family: "Poppins", serif;
  font-size: 1.5rem;
  font-weight: 800;
  color: #111111;
}

.status-mail-box p {
  margin-top: 12px;
  line-height: 1.7em;
  color: #6e6e6e;
}

#subscribe-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
}

#subscribe-form input {
  width: 100%;
  height: 52px;
  margin: 0;
  padding: 0 15px;
  border: 2px solid #111111;
  background: transparent;
  color: #111111;
  font-family: "Inconsolata", serif;
  font-size: 1rem;
  outline: none;
  box-sizing: border-box;
}

#subscribe-form input:focus {
  border-color: #7636ff;
}

#subscribe-form button,
#subscribe-form .button {
  background: transparent !important;
  background-color: transparent !important;
  color: #7636ff !important;
  border: 2px solid #7636ff !important;
  margin-top: 8px !important;
  margin-left: auto;
  width: auto !important;
  min-width: 190px;
  padding: 14px 28px;
  display: inline-block;
  transition: all 0.2s ease;
}

#subscribe-form button:hover,
#subscribe-form .button:hover {
  text-decoration: underline;
  box-shadow: -7px 7px #7636ff !important;
}

#subscribe-message {
  display: block;
  margin-top: 18px;
  color: #7636ff;
  font-weight: 700;
  line-height: 1.5em;
}

@keyframes pulseOperational {
  0% { box-shadow: 0 0 0 0 rgba(34,197,94,.45); }
  70% { box-shadow: 0 0 0 12px rgba(34,197,94,0); }
  100% { box-shadow: 0 0 0 0 rgba(34,197,94,0); }
}

@keyframes pulseDegraded {
  0% { box-shadow: 0 0 0 0 rgba(245,158,11,.45); }
  70% { box-shadow: 0 0 0 12px rgba(245,158,11,0); }
  100% { box-shadow: 0 0 0 0 rgba(245,158,11,0); }
}

@keyframes pulseOutage {
  0% { box-shadow: 0 0 0 0 rgba(239,68,68,.45); }
  70% { box-shadow: 0 0 0 12px rgba(239,68,68,0); }
  100% { box-shadow: 0 0 0 0 rgba(239,68,68,0); }
}

@keyframes pulseMaintenance {
  0% { box-shadow: 0 0 0 0 rgba(59,130,246,.45); }
  70% { box-shadow: 0 0 0 12px rgba(59,130,246,0); }
  100% { box-shadow: 0 0 0 0 rgba(59,130,246,0); }
}

@keyframes pulseChecking {
  0% { box-shadow: 0 0 0 0 rgba(107,114,128,.45); }
  70% { box-shadow: 0 0 0 12px rgba(107,114,128,0); }
  100% { box-shadow: 0 0 0 0 rgba(107,114,128,0); }
}

@media screen and (max-width: 48rem) {
  .status-container {
    width: calc(100% - 40px);
  }

  .status-hero {
    padding: 120px 0 70px 0;
  }

  .status-hero-top {
    align-items: flex-start;
  }

  .status-card,
  .incident-card {
    padding: 30px;
  }

  .status-card {
    min-height: auto;
  }

  .status-services-section,
  .status-maintenances-section,
  .status-incidents-section {
    padding-bottom: 70px;
  }

  .status-maintenances-section + .status-incidents-section {
    margin-top: 10px;
  }

  .incident-card h3 {
    margin-bottom: 18px;
  }

  .incident-toggle {
    margin-top: 14px;
  }

  .incident-timeline {
    padding-left: 16px;
  }

  .incident-update::before {
    left: -23px;
  }

  .incident-pagination {
    flex-direction: row;
  }

  .incident-pagination button {
    width: 38px;
    height: 38px;
  }

  .status-mail-box {
    right: 0;
    width: calc(100vw - 60px);
    max-width: none;
    padding: 24px;
  }
}

.incident-detail-page {
  background: #F5F5F5;
  min-height: 100vh;
}

.incident-detail-hero {
  padding: 140px 0 100px;
}

.incident-back-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0;
  margin-bottom: 40px;
  color: #7636ff;
  text-decoration: none;
  font-family: "Inconsolata", serif;
  font-size: 1rem;
  font-weight: 700;
  transition: all 0.25s ease;
}

.incident-back-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: #7636ff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.25s ease;
}

.incident-back-link:hover::after {
  transform: scaleX(1);
}

.incident-back-link i {
  width: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateX(8px);
  transition: opacity 0.25s ease, transform 0.25s ease, width 0.25s ease, margin-right 0.25s ease;
}

.incident-back-link:hover i {
  width: 18px;
  opacity: 1;
  margin-right: 10px;
  transform: translateX(0);
}

.incident-back-link:hover {
  letter-spacing: 0.02em;
}

.incident-detail-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 35px;
  align-items: start;
}

.incident-detail-main,
.incident-detail-side-card {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,0.08);
}

.incident-detail-main {
  padding: 50px;
}

.incident-detail-code {
  display: inline-block;
  margin-bottom: 18px;
  color: #7636ff;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.incident-detail-main h1 {
  font-family: "Poppins", serif;
  font-size: clamp(2.3rem, 5vw, 4rem);
  line-height: 1em;
  font-weight: 900;
  color: #111111;
  margin: 0;
}

.incident-detail-description {
  margin-top: 28px;
  font-size: 1.05rem;
  line-height: 1.9em;
  color: #6e6e6e;
}

.incident-detail-status-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 35px;
}

.incident-detail-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
}

.incident-detail-badge.investigating {
  background: rgba(245,158,11,0.12);
  color: #d97706;
}

.incident-detail-badge.identified {
  background: rgba(239,68,68,0.12);
  color: #dc2626;
}

.incident-detail-badge.monitoring {
  background: rgba(59,130,246,0.12);
  color: #2563eb;
}

.incident-detail-badge.resolved {
  background: rgba(34,197,94,0.12);
  color: #16a34a;
}

.incident-detail-badge.scheduled {
  background: rgba(107,114,128,0.12);
  color: #6b7280;
}

.incident-detail-badge.impact {
  background: rgba(118,54,255,0.08);
  color: #7636ff;
}

.incident-detail-section {
  margin-top: 60px;
}

.incident-detail-section h2 {
  font-family: "Poppins", serif;
  font-size: 1.7rem;
  font-weight: 800;
  margin-bottom: 35px;
}

.incident-detail-timeline {
  position: relative;
  border-left: 2px solid rgba(118,54,255,0.14);
  margin-left: 18px;
  padding-left: 38px;
}

.incident-detail-update {
  position: relative;
  padding-bottom: 40px;
}

.incident-detail-update:last-child {
  padding-bottom: 0;
}

.incident-detail-update-icon {
  position: absolute;
  left: -56px;
  top: 0;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: #7636ff;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
  box-shadow: 0 8px 22px rgba(118,54,255,0.22);
}

.incident-detail-update-content span {
  display: block;
  margin-bottom: 10px;
  color: #7636ff;
  font-size: 0.85rem;
  font-weight: 700;
}

.incident-detail-update-content strong {
  display: block;
  font-family: "Poppins", serif;
  font-size: 1.1rem;
  font-weight: 800;
  color: #111111;
}

.incident-detail-update-content p {
  margin-top: 10px;
  line-height: 1.8em;
  color: #6e6e6e;
}

.incident-detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.incident-detail-side-card {
  padding: 28px;
}

.incident-detail-side-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: "Poppins", serif;
  font-size: 1rem;
  font-weight: 800;
  color: #111111;
}

.incident-detail-side-card p {
  margin-top: 18px;
  line-height: 1.8em;
  color: #6e6e6e;
}

.incident-copy-button {
  margin-top: 18px;
  border: 2px solid #7636ff;
  background: transparent;
  color: #7636ff;
  padding: 12px 18px;
  font-family: "Inconsolata", serif;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s ease;
}

.incident-copy-button:hover {
  box-shadow: -6px 6px #7636ff;
}

#copy-message {
  display: block;
  margin-top: 14px;
  color: #7636ff;
  font-weight: 700;
}

@media screen and (max-width: 64rem) {

  .incident-detail-layout {
    grid-template-columns: 1fr;
  }

}

@media screen and (max-width: 48rem) {

  .incident-detail-hero {
    padding: 120px 0 80px;
  }

  .incident-detail-main {
    padding: 35px;
  }

  .incident-detail-timeline {
    margin-left: 10px;
    padding-left: 28px;
  }

  .incident-detail-update-icon {
    left: -46px;
    width: 28px;
    height: 28px;
    font-size: 0.8rem;
  }

}

.incident-share-card {
  text-align: left;
}

.incident-share-card h3 {
  display: flex;
  align-items: center;
  gap: 10px;

  margin-bottom: 18px;
}

.incident-share-icons {
  display: flex;
  align-items: center;
  justify-content: flex-start;

  gap: 12px;
  width: 100%;
}

.incident-share-icon {
  width: 42px;
  height: 42px;

  display: flex;
  align-items: center;
  justify-content: center;

  border-radius: 12px;

  background: #f3f3f3;
  color: #7a7a7a;

  text-decoration: none;
  border: 1px solid rgba(0,0,0,0.06);

  transition: all 0.2s ease;
  cursor: pointer;
}

.incident-share-icon i {
  font-size: 1rem;
}

.incident-share-icon:hover {
  background: #7636ff;
  color: #ffffff;

  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(118,54,255,0.18);
}

#copy-message {
  display: block;
  margin-top: 14px;

  color: #7636ff;
  font-weight: 700;
  font-size: 0.9rem;
}

.incident-card {
  position: relative;
}

.incident-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.incident-card-top .incident-date {
  flex: 1;
  line-height: 1.5;
  word-break: break-word;
}

.incident-external-link {
  width: 30px;
  height: 30px;
  min-width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: #f5f5f5;
  color: #8b8b8b;
  text-decoration: none;
  transition: all 0.2s ease;
}

.incident-external-link i {
  font-size: 0.72rem;
}

.incident-external-link:hover {
  background: #7636ff;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(118,54,255,0.18);
}

div.work section.grid .block .row .card .footer i.svg-logo {
  display: inline-block;
  width: auto;
  height: auto;
  margin-right: 8px;
  color: #8b8b8b;
  font-size: 28px;
  line-height: 1;
  vertical-align: middle;
  transition: color 0.2s ease, transform 0.2s ease;
}

div.work section.grid .block .row .card .footer i.svg-logo:hover {
  color: #7636ff;
  transform: translateY(-2px);
}

div.work section.grid .block .row .card .footer a .view {
  float: right;
  white-space: nowrap;
}

@media screen and (max-width: 48rem) {
  div.work section.grid .block .row .card .footer i.svg-logo {
    font-size: 24px;
    margin-right: 6px;
  }

  div.work section.grid .block .row .card .footer {
    padding: 12px 5px;
  }
}

/* =========================
   NEWS PAGE
========================= */

.news-page {
  background: #f5f5f5;
  min-height: 100vh;
}

.news-block {
  width: calc(100% - 60px);
  max-width: 1100px;
  margin: 0 auto;
}

.news-main-hero {
  padding: 180px 0 90px;
  background: #ffffff;
}

.news-hero-text span {
  display: inline-block;
  margin-bottom: 22px;
  font-family: "Poppins", serif;
  font-size: 0.85rem;
  font-weight: 700;
  color: #7636ff;
  text-transform: uppercase;
  letter-spacing: 0.22em;
}

.news-hero-text h1 {
  font-family: "Poppins", serif;
  font-size: clamp(3.2rem, 8vw, 6rem);
  line-height: 0.95;
  font-weight: 900;
  color: #111111;
  letter-spacing: -0.06em;
}

.news-hero-text p {
  max-width: 680px;
  margin-top: 32px;
  font-size: 1.05rem;
  line-height: 1.9em;
  color: #777777;
}

.news-list {
  padding: 90px 0 120px;
  background: #f5f5f5;
}

.news-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 50px;
}

.news-item {
  background: #ffffff;
  transition: 0.25s ease;
}

.news-item:hover {
  transform: translateY(-5px);
}

.news-item a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.news-item-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: #d9d9d9;
}

.news-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.35s ease;
}

.news-item:hover .news-item-img img {
  transform: scale(1.04);
}

.news-item-content {
  padding: 38px;
}

.news-item-content span {
  display: block;
  margin-bottom: 18px;
  color: #7636ff;
  font-size: 0.9rem;
  font-weight: 700;
}

.news-item-content h2 {
  font-family: "Poppins", serif;
  font-size: 2.2rem;
  line-height: 1.08;
  font-weight: 900;
  color: #111111;
  letter-spacing: -0.04em;
}

.news-item-content p {
  margin-top: 22px;
  color: #777777;
  line-height: 1.9em;
}

.news-item-content strong {
  display: inline-block;
  margin-top: 28px;
  color: #111111;
  font-weight: 700;
}

.news-empty {
  background: #ffffff;
  padding: 45px;
}

.news-empty h2 {
  font-family: "Poppins", serif;
  font-size: 2rem;
  font-weight: 900;
  color: #111111;
}

.news-empty p {
  margin-top: 16px;
  color: #777777;
  line-height: 1.8em;
}

.news-pagination-clean {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 70px;
}

.news-pagination-clean a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  color: #ffffff;
  border: 2px solid #ffffff;
  font-weight: 700;
  white-space: nowrap;
  transition: 0.2s ease;
}

.news-pagination-clean a:hover {
  text-decoration: underline;
  box-shadow: -7px 7px #111111;
  background: #111111;
  border-color: #111111;
}

@media screen and (max-width: 48rem) {
  .news-block {
    width: calc(100% - 44px);
  }

  .news-main-hero {
    padding: 130px 0 70px;
  }

  .news-hero-text h1 {
    font-size: 3.2rem;
  }

  .news-list {
    padding: 60px 0 90px;
  }

  .news-cards {
    grid-template-columns: 1fr;
    gap: 38px;
  }

  .news-item-content {
    padding: 28px;
  }

  .news-item-content h2 {
    font-size: 1.9rem;
  }

  .news-pagination-clean a {
    flex: 1;
    padding: 0 12px;
    font-size: 0.82rem;
  }
}

/* =========================
   NEWS POST
========================= */

.news-post-page {
  background: #f5f5f5;
  min-height: 100vh;
}

.news-post {
  padding: 100px 0 110px;
}

.news-post-container {
  width: calc(100% - 60px);
  max-width: 980px;
  margin: 0 auto;
}

/* =========================
   VOLTAR
========================= */

.news-back {
  position: relative;
  display: inline-flex;
  align-items: center;

  margin-bottom: 24px;

  color: #7636ff;

  font-size: 0.92rem;
  font-weight: 700;

  text-decoration: none;

  transition:
    transform .2s ease,
    opacity .2s ease;
}

.news-back::after {
  content: '';

  position: absolute;

  left: 0;
  bottom: -6px;

  width: 100%;
  height: 2px;

  background: #7636ff;

  transform: scaleX(0);
  transform-origin: left;

  transition: transform .25s ease;
}

.news-back:hover {
  transform: translateX(-4px);
  opacity: .8;
}

.news-back:hover::after {
  transform: scaleX(1);
}

/* =========================
   BREADCRUMB
========================= */

.news-breadcrumb {
  display: block;

  margin-bottom: 32px;

  color: #777;

  font-size: 0.86rem;
  font-weight: 700;

  line-height: 1.6;
}

.news-breadcrumb a {
  position: relative;

  color: #555;

  text-decoration: none;

  transition: color .2s ease;
}

.news-breadcrumb a::after {
  content: '';

  position: absolute;

  left: 0;
  bottom: -4px;

  width: 100%;
  height: 2px;

  background: #111;

  transform: scaleX(0);
  transform-origin: left;

  transition: transform .2s ease;
}

.news-breadcrumb a:hover {
  color: #111;
}

.news-breadcrumb a:hover::after {
  transform: scaleX(1);
}

.news-breadcrumb span {
  color: #999;
}

.news-breadcrumb strong {
  color: #555;
  font-weight: 700;
}

/* =========================
   HEADER
========================= */

.news-post-head {
  display: flex;
  flex-direction: column;
  align-items: center;

  text-align: center;
}

.news-post-head h1 {
  margin-top: 28px;

  font-family: "Poppins", serif;

  font-size: clamp(2.25rem, 4.6vw, 4rem);

  line-height: 1.04;

  font-weight: 900;

  color: #111111;

  letter-spacing: -0.055em;

  max-width: 900px;
}

.news-post-head p {
  max-width: 720px;

  margin-top: 28px;

  margin-left: auto;
  margin-right: auto;

  color: #777777;

  font-size: 1.04rem;

  line-height: 1.9em;
}

/* =========================
   META
========================= */

.news-post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;

  gap: 10px;

  margin-bottom: 28px;

  width: 100%;
}

.news-post-meta span {
  display: inline-flex;
  align-items: center;

  gap: 10px;

  min-height: 34px;

  padding: 0 14px;

  background: rgba(118,54,255,.08);

  border-radius: 999px;

  color: #7636ff;

  font-size: .82rem;
  font-weight: 800;

  white-space: nowrap;
}

.news-post-meta i {
  font-size: .9rem;
}

/* =========================
   CAPA
========================= */

.news-post-cover {
  margin-top: 56px;

  overflow: hidden;

  background: #d9d9d9;
}

.news-post-cover img {
  width: 100%;
  height: auto;

  display: block;

  object-fit: contain;
}

/* =========================
   CONTEÚDO
========================= */

.news-post-content {
  max-width: 760px;

  margin-top: 66px;
  margin-left: auto;
  margin-right: auto;

  color: #2a2a2a;

  font-size: 1.06rem;

  line-height: 2em;
}

.news-post-content h2,
.news-post-content h3,
.news-post-content h4 {
  margin-top: 60px;
  margin-bottom: 22px;

  font-family: "Poppins", serif;

  line-height: 1.12;

  font-weight: 800;

  color: #111111;
}

.news-post-content h2 {
  font-size: clamp(2rem, 4vw, 2.6rem);
}

.news-post-content h3 {
  font-size: clamp(1.6rem, 3vw, 2rem);
}

.news-post-content h4 {
  font-size: 1.35rem;
}

.news-post-content p {
  margin-top: 24px;
}

.news-post-content img {
  width: 100%;
  height: auto;

  max-width: 100%;

  object-fit: contain;

  margin: 42px auto;

  display: block;
}

.news-post-content ul,
.news-post-content ol {
  margin-top: 28px;
  padding-left: 24px;
}

.news-post-content li {
  margin-top: 14px;
}

.news-post-content a {
  color: #7636ff;
}

/* =========================
   SHARE
========================= */

.news-share {
  display: flex;
  flex-direction: column;
  align-items: flex-start;

  margin-top: 84px;

  padding-top: 38px;

  border-top: 1px solid rgba(0,0,0,.08);
}

.news-share h2 {
  font-family: "Poppins", serif;

  font-size: clamp(1.25rem, 2.2vw, 1.65rem);

  line-height: 1.1;

  font-weight: 800;

  color: #111111;

  letter-spacing: -0.03em;

  margin-bottom: 24px;
}

.news-share-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 10px 12px;

  width: 100%;
}

.news-share-row a,
.news-share-row button {
  appearance: none;
  -webkit-appearance: none;

  flex: 0 0 auto;

  min-height: 38px;

  padding: 0 12px;

  border: none;
  outline: none;
  box-shadow: none;

  border-radius: 999px;

  background: rgba(17,17,17,.055) !important;

  color: #111111;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 7px;

  font-family: "Poppins", serif;

  font-size: 0.82rem;
  font-weight: 800;

  line-height: 1;

  cursor: pointer;

  text-decoration: none;

  transition:
    background .2s ease,
    transform .2s ease;
}

.news-share-row a:hover,
.news-share-row button:hover {
  background: rgba(17,17,17,.11) !important;

  transform: translateY(-1px);
}

.news-share-row svg,
.news-share-row i {
  width: 15px;
  height: 15px;

  font-size: 15px;

  line-height: 1;

  fill: currentColor;
  color: #111111;

  flex-shrink: 0;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  opacity: .92;
}

.news-copy-link {
  margin-top: 16px;

  color: #7636ff;

  font-size: 0.86rem;
  font-weight: 700;

  word-break: break-all;

  opacity: .9;
}

/* =========================
   MOBILE
========================= */

@media screen and (max-width: 48rem) {

  .news-post {
    padding: 75px 0 76px;
  }

  .news-post-container {
    width: calc(100% - 32px);
  }

  /* VOLTAR */

  .news-back {
    margin-bottom: 14px;

    font-size: 0.78rem;
  }

  /* BREADCRUMB */

  .news-breadcrumb {
    margin-bottom: 22px;

    font-size: 0.72rem;

    line-height: 1.55;
  }

  /* META */

.news-post-meta {
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;

  gap: 8px;

  margin-bottom: 18px;

  text-align: center;
}

.news-post-meta span {
  min-height: 28px;

  padding: 0 10px;

  font-size: 0.66rem;

  gap: 6px;

  white-space: normal;
}

.news-post-meta i {
  font-size: 0.72rem;
}

  /* TÍTULO */

  .news-post-head h1 {
    font-size: clamp(1.55rem, 7vw, 2.15rem);

    line-height: 1.02;

    letter-spacing: -0.045em;

    max-width: 100%;
  }

  /* RESUMO */

  .news-post-head p {
    margin-top: 18px;

    font-size: 0.92rem;

    line-height: 1.75;
  }

  /* CONTEÚDO */

  .news-post-content {
    max-width: 100%;

    margin-top: 42px;

    font-size: 0.95rem;

    line-height: 1.9;
  }

  .news-post-content h2 {
    font-size: 1.8rem;
  }

  .news-post-content h3 {
    font-size: 1.45rem;
  }

  .news-post-cover img,
  .news-post-content img {
    width: 100%;
    height: auto;

    object-fit: contain;
  }

  /* SHARE */

  .news-share {
    margin-top: 56px;

    padding-top: 30px;
  }

  .news-share h2 {
    font-size: 1.1rem;

    margin-bottom: 16px;
  }

  .news-share-row {
    display: flex;
    flex-wrap: wrap;

    justify-content: center;

    gap: 8px 7px;

    width: calc(100vw - 32px);

    margin-left: calc(50% - 50vw + 16px);

    margin-top: 6px;
  }

  .news-share-row a,
  .news-share-row button {

    flex: 0 0 auto;

    min-height: 34px;

    padding: 0 12px;

    font-size: 0.72rem;

    gap: 6px;

    border-radius: 999px;
  }

  .news-share-row svg,
  .news-share-row i {
    width: 12px;
    height: 12px;

    font-size: 12px;
  }

  .news-copy-link {
    margin-top: 14px;

    font-size: 0.74rem;

    line-height: 1.5;
  }
}

/* =========================================
   NEWS EDITORIAL
========================================= */

.news-editorial-list {
  padding: 110px 0 130px;
  position: relative;
  background: #f5f5f5;
}

.news-editorial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
  margin-top: 38px;
}

/* =========================================
   FEATURED
========================================= */

.news-featured-card {
  display: grid;
  grid-template-columns: 1fr 1fr;

  overflow: hidden;

  min-height: 340px;

  border-radius: 34px;

  background: #ffffff;

  border: 1px solid rgba(0,0,0,.06);

  box-shadow:
    0 10px 30px rgba(0,0,0,.04),
    0 2px 10px rgba(0,0,0,.03);

  text-decoration: none;

  color: #111111;

  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.news-featured-card:hover {
  transform: translateY(-4px);

  box-shadow:
    0 18px 50px rgba(0,0,0,.08),
    0 4px 18px rgba(0,0,0,.05);
}

.news-featured-card:hover {
  transform: translateY(-4px);
}

.news-featured-image {
  position: relative;

  overflow: hidden;

  min-height: 420px;
}

.news-featured-image {
  overflow: hidden;
}

.news-featured-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;

  transform: scale(1);

  transition:
    transform .8s cubic-bezier(.16,1,.3,1),
    filter .6s ease;
}

.news-featured-card:hover .news-featured-image img {
  transform: scale(1.06);
}

.news-featured-content {
  padding: 44px;

  display: flex;
  flex-direction: column;
  justify-content: center;
}

.news-featured-content h2 {
  font-size: clamp(2rem, 3.2vw, 3.3rem);

  line-height: 1;

  letter-spacing: -0.055em;

  font-weight: 800;

  color: #111111;

  margin: 20px 0 24px;
}

.news-featured-content time {
  font-size: .95rem;

  color: #6c6c6c;

  font-family: "Inconsolata", monospace;
}

/* =========================================
   BADGE
========================================= */

.news-card-badge {
  display: inline-flex;
  align-items: center;

  gap: 8px;

  width: fit-content;

  min-height: 34px;

  padding: 0 14px;

  border-radius: 999px;

  background: #ece6ff;

  color: #6d36ff;

  font-size: .78rem;
  font-weight: 700;

  letter-spacing: .04em;

  text-transform: uppercase;

  font-family: Arial, sans-serif;
}

.news-card-badge i {
  font-size: .72rem;
}

/* =========================================
   CARDS
========================================= */

.news-editorial-card {
  position: relative;

  overflow: hidden;

  border-radius: 34px;

  background: #f5f5f5;

  transition:
    transform .35s ease,
    box-shadow .35s ease;
}

.news-editorial-card:hover {
  transform: translateY(-4px);

  box-shadow: 0 18px 50px rgba(0,0,0,.06);
}

.news-editorial-card a {
  display: flex;
  flex-direction: column;

  height: 100%;

  color: inherit;

  text-decoration: none;
}

.news-card-image {
  position: relative;

  overflow: hidden;

  aspect-ratio: 1 / 1;
}

.news-card-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;
}

/* =========================================
   CONTENT
========================================= */

.news-card-content {
  padding: 30px;

  display: flex;
  flex-direction: column;

  flex: 1;
}

.news-card-content h2 {
  font-size: clamp(1.5rem, 2vw, 2.2rem);

  line-height: 1.02;

  letter-spacing: -0.05em;

  font-weight: 800;

  color: #111111;

  margin: 18px 0 18px;
}

.news-card-content p {
  font-size: 1rem;

  line-height: 1.8;

  color: #6d6d6d;

  margin: 0 0 26px;
}

.news-card-content time {
  margin-top: auto;

  font-size: .95rem;

  color: #7b7b7b;

  font-family: "Inconsolata", monospace;
}

/* =========================================
   OVERLAY
========================================= */

.news-card-overlay {
  background: #000000;
}

.news-card-overlay .news-card-image {
  aspect-ratio: .9 / 1;
}

.news-card-overlay .news-card-content {
  position: absolute;

  inset: 0;

  justify-content: flex-end;

  padding: 34px;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,.88) 0%,
      rgba(0,0,0,.2) 55%,
      transparent 100%
    );
}

.news-card-overlay h2,
.news-card-overlay p,
.news-card-overlay time {
  color: #ffffff;
}

/* =========================================
   DARK
========================================= */

.news-card-dark {
  background: #0f0f10;
}

.news-card-dark h2,
.news-card-dark p,
.news-card-dark time {
  color: #ffffff;
}

/* =========================================
   MINIMAL
========================================= */

.news-card-minimal {
  background: #f7f7f7;
}

.news-card-minimal .news-card-content {
  justify-content: center;

  min-height: 340px;
}

/* =========================================
   EMPTY
========================================= */

.news-empty {
  text-align: center;

  padding: 120px 0;
}

.news-empty h2 {
  font-size: 2.8rem;

  margin-bottom: 14px;
}

.news-empty p {
  color: #6f6f6f;

  font-size: 1.05rem;
}

/* =========================================
   TABLET
========================================= */

@media screen and (max-width: 64rem) {

  .news-editorial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .news-featured-card {
    grid-template-columns: 1fr;

    min-height: auto;
  }

  .news-featured-image {
    min-height: 380px;
  }

  .news-featured-content {
    padding: 40px;
  }
}

/* =========================================
   MOBILE
========================================= */

@media screen and (max-width: 48rem) {

  .news-editorial-list {
    padding: 74px 0 90px;
  }

  .news-editorial-grid {
    grid-template-columns: 1fr;

    gap: 22px;

    margin-top: 22px;
  }

  .news-featured-card {
    grid-template-columns: 1fr;

    min-height: auto;

    border-radius: 28px;
  }

  .news-featured-image {
    min-height: 240px;
  }

  .news-featured-content {
    padding: 28px;
  }

  .news-featured-content h2 {
    font-size: clamp(1.8rem, 8vw, 2.5rem);

    margin: 18px 0 20px;
  }

  .news-editorial-card {
    border-radius: 26px;
  }

  .news-card-content {
    padding: 24px;
  }

  .news-card-content h2 {
    font-size: clamp(1.45rem, 7vw, 2rem);
  }

  .news-card-content p {
    font-size: .95rem;
  }

  .news-card-overlay .news-card-content {
    padding: 24px;
  }

  .news-card-minimal .news-card-content {
    min-height: 240px;
  }
}

/* =========================================
   NEWS ARCHIVE
========================================= */

.news-archive {
  padding: 110px 0 140px;
}

.news-archive-head {
  margin-bottom: 80px;
}

.news-archive-head span {
  display: inline-block;

  margin-bottom: 18px;

  color: #6d36ff;

  font-size: .9rem;
  font-weight: 700;

  letter-spacing: .18em;

  text-transform: uppercase;
}

.news-archive-head h1 {
  font-size: clamp(3rem, 6vw, 6rem);

  line-height: .92;

  letter-spacing: -0.07em;

  color: #111111;

  margin-bottom: 28px;
}

.news-archive-head p {
  max-width: 720px;

  font-size: 1.2rem;

  line-height: 1.9;

  color: #6f6f6f;
}

/* =========================================
   LIST
========================================= */

.news-archive-list {
  display: flex;
  flex-direction: column;

  border-top: 1px solid #e7e7e7;
}

.news-archive-item {
  border-bottom: 1px solid #e7e7e7;
}

.news-archive-item a {
  display: grid;
  grid-template-columns: 260px 1fr;

  align-items: center;

  gap: 42px;

  padding: 42px 0;

  text-decoration: none;

  color: inherit;

  transition: opacity .3s ease;
}

.news-archive-item a:hover {
  opacity: .82;
}

/* =========================================
   IMAGE
========================================= */

.news-archive-image {
  position: relative;

  overflow: hidden;

  border-radius: 28px;

  aspect-ratio: 1.2 / 1;

  background: #f4f4f4;
}

.news-archive-image img {
  width: 100%;
  height: 100%;

  object-fit: cover;

  display: block;
}

/* =========================================
   CONTENT
========================================= */

.news-archive-content {
  display: flex;
  flex-direction: column;
}

.news-archive-content h2 {
  max-width: 980px;

  margin: 18px 0 20px;

  font-size: clamp(2rem, 3vw, 3.6rem);

  line-height: 1;

  letter-spacing: -0.055em;

  font-weight: 800;

  color: #111111;
}

.news-archive-content time {
  font-size: 1rem;

  color: #707070;

  font-family: "Inconsolata", monospace;
}

/* =========================================
   MORE BUTTON
========================================= */

.news-more-wrap {
  display: flex;
  justify-content: center;

  margin-top: 70px;
}

.news-more-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-width: 210px;
  min-height: 64px;

  padding: 0 36px;

  border-radius: 999px;

  background: #f1f1f1;

  color: #111111;

  font-size: 1.05rem;
  font-weight: 700;

  text-decoration: none;

  transition:
    transform .3s ease,
    background .3s ease;
}

.news-more-button:hover {
  background: #ececec;

  transform: translateY(-2px);
}

/* =========================================
   MOBILE
========================================= */

@media screen and (max-width: 64rem) {

  .news-archive-item a {
    grid-template-columns: 180px 1fr;

    gap: 28px;
  }
}

@media screen and (max-width: 48rem) {

  .news-archive {
    padding: 80px 0 100px;
  }

  .news-archive-head {
    margin-bottom: 50px;
  }

  .news-archive-head h1 {
    font-size: clamp(2.5rem, 12vw, 4rem);
  }

  .news-archive-head p {
    font-size: 1rem;
  }

  .news-archive-item a {
    grid-template-columns: 1fr;

    gap: 24px;

    padding: 30px 0;
  }

  .news-archive-image {
    border-radius: 22px;
  }

  .news-archive-content h2 {
    font-size: clamp(1.7rem, 8vw, 2.5rem);

    margin: 16px 0 16px;
  }

  .news-more-wrap {
    margin-top: 50px;
  }

  .news-more-button {
    width: 100%;
  }
}

/* =========================================================
   AJUSTES FINAIS - NEWS / ESTILO APPLE SEM QUEBRAR O SITE
   Mantém a identidade do site, mas deixa a página de notícias
   mais limpa, suave e proporcional.
========================================================= */

/* Área editorial mais limpa */
.news-editorial-list {
  padding: 88px 0 112px;
  background: #ffffff;
}

/* Card de destaque menor e mais elegante */
.news-featured-card {
  min-height: 320px;
  border-radius: 30px;
  background: #f5f5f7;
  box-shadow: 0 18px 50px rgba(0,0,0,0.055);
  transition:
    transform .28s ease,
    box-shadow .28s ease;
}

.news-featured-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 24px 64px rgba(0,0,0,0.075);
}

.news-featured-image {
  min-height: 320px;
}

.news-featured-image img {
  object-fit: cover;
}

.news-featured-content {
  padding: 34px 38px;
}

.news-featured-content h2 {
  font-size: clamp(1.85rem, 2.8vw, 2.75rem);
  line-height: 1.03;
  letter-spacing: -0.05em;
  margin: 16px 0 18px;
}

.news-featured-content time {
  color: #6e6e73;
}

/* Badge com aparência mais suave */
.news-card-badge {
  min-height: 32px;
  padding: 0 13px;
  background: rgba(118,54,255,.10);
  color: #7636ff;
  font-family: "Poppins", serif;
  font-size: .72rem;
  letter-spacing: .06em;
}

/* Cards comuns mais próximos do visual Apple */
.news-editorial-grid {
  gap: 24px;
}

.news-editorial-card {
  border-radius: 30px;
  background: #f5f5f7;
  box-shadow: 0 12px 36px rgba(0,0,0,0.035);
}

.news-editorial-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 22px 56px rgba(0,0,0,0.065);
}

.news-card-content {
  padding: 26px;
}

.news-card-content h2 {
  font-size: clamp(1.42rem, 1.75vw, 2rem);
  line-height: 1.06;
}

.news-card-content p {
  color: #6e6e73;
}

/* Botão + Notícias na mesma pegada dos botões de compartilhar */
.news-more-button {
  min-width: auto;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(17,17,17,.055) !important;
  color: #111111 !important;
  font-family: "Poppins", serif;
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
  box-shadow: none;
  border: none;
  transition:
    background .2s ease,
    transform .2s ease;
}

.news-more-button:hover {
  background: rgba(17,17,17,.11) !important;
  transform: translateY(-1px);
}

/* Ajustes mobile para não ficar gigante no celular */
@media screen and (max-width: 64rem) {
  .news-featured-card {
    min-height: auto;
  }

  .news-featured-image {
    min-height: 300px;
  }

  .news-featured-content {
    padding: 34px;
  }
}

@media screen and (max-width: 48rem) {
  .news-editorial-list {
    padding: 62px 0 86px;
  }

  .news-featured-card {
    border-radius: 26px;
    box-shadow: 0 14px 38px rgba(0,0,0,0.055);
  }

  .news-featured-image {
    min-height: 210px;
  }

  .news-featured-content {
    padding: 24px;
  }

  .news-featured-content h2 {
    font-size: clamp(1.55rem, 7.2vw, 2.15rem);
    line-height: 1.04;
    margin: 14px 0 16px;
  }

  .news-editorial-card {
    border-radius: 24px;
  }

  .news-card-content {
    padding: 22px;
  }

  .news-more-wrap {
    margin-top: 38px;
  }

  .news-more-button {
    width: auto;
    min-height: 36px;
    padding: 0 15px;
    font-size: 0.76rem;
  }
}

/* =========================================
   NEWSROOM APPLE STYLE - ESTRUTURA FINAL
   1 destaque
   2 cards largos abaixo
   3 blocos abaixo
   Depois seção branca "Mais notícias" com 8 itens, 2 por linha
========================================= */

.news-page {
  background: #f5f5f5 !important;
}

.news-main-hero {
  background: #ffffff !important;
  padding: 170px 0 80px !important;
}

.news-editorial-list,
.news-list {
  background: #f5f5f5 !important;
}

.news-editorial-list {
  padding: 36px 0 96px !important;
}

.news-block {
  max-width: 1020px !important;
}

/* =========================
   1 CARD DESTAQUE
========================= */

.news-featured-card {
  display: grid !important;
  grid-template-columns: 1.85fr .95fr !important;
  max-width: 1020px !important;
  min-height: 365px !important;
  margin: 0 auto 36px !important;
  overflow: hidden !important;
  border-radius: 30px !important;
  background: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
  color: #111111 !important;
  text-decoration: none !important;
  transition:
    transform .35s ease,
    box-shadow .35s ease !important;
}

.news-featured-card:hover {
  transform: translateY(-4px) !important;
  box-shadow:
    0 18px 50px rgba(0,0,0,.08),
    0 4px 18px rgba(0,0,0,.05) !important;
}

.news-featured-image {
  min-height: 365px !important;
  overflow: hidden !important;
  background: #eeeeee !important;
}

.news-featured-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transform: scale(1);
  transition: transform .8s cubic-bezier(.16,1,.3,1) !important;
}

.news-featured-card:hover .news-featured-image img {
  transform: scale(1.06) !important;
}

.news-featured-content {
  padding: 42px !important;
  background: #ffffff !important;
  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

.news-featured-content h2 {
  font-family: "Poppins", serif !important;
  font-size: clamp(2rem, 3.2vw, 3.15rem) !important;
  line-height: 1.05 !important;
  letter-spacing: -0.055em !important;
  font-weight: 900 !important;
  margin: 18px 0 26px !important;
  color: #111111 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 5 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.news-featured-content time {
  margin-top: auto !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #777777 !important;
}

/* =========================
   GRID PRINCIPAL DA APPLE
   2 largos + 3 blocos
========================= */

.news-editorial-grid {
  max-width: 1020px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 36px !important;
}

/* Mostrar somente 5 cards depois do destaque */
.news-editorial-grid .news-editorial-card:nth-child(n+6) {
  display: none !important;
}

/* Os 2 primeiros são largos, lado a lado */
.news-editorial-grid .news-editorial-card:nth-child(1),
.news-editorial-grid .news-editorial-card:nth-child(2) {
  grid-column: span 3 !important;
}

/* Os 3 próximos são blocos menores */
.news-editorial-grid .news-editorial-card:nth-child(3),
.news-editorial-grid .news-editorial-card:nth-child(4),
.news-editorial-grid .news-editorial-card:nth-child(5) {
  grid-column: span 2 !important;
}

.news-editorial-card {
  position: relative !important;
  overflow: hidden !important;
  border-radius: 30px !important;
  background: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
  transition:
    transform .35s ease,
    box-shadow .35s ease !important;
}

.news-editorial-card:hover {
  transform: translateY(-4px) !important;
  box-shadow:
    0 18px 50px rgba(0,0,0,.08),
    0 4px 18px rgba(0,0,0,.05) !important;
}

.news-editorial-card a {
  display: flex !important;
  flex-direction: column !important;
  height: 100% !important;
  color: inherit !important;
  text-decoration: none !important;
}

.news-card-image {
  overflow: hidden !important;
  aspect-ratio: 1.45 / 1 !important;
  background: #eeeeee !important;
}

.news-editorial-grid .news-editorial-card:nth-child(3) .news-card-image,
.news-editorial-grid .news-editorial-card:nth-child(4) .news-card-image,
.news-editorial-grid .news-editorial-card:nth-child(5) .news-card-image {
  aspect-ratio: 1 / .82 !important;
}

.news-card-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transform: scale(1);
  transition: transform .8s cubic-bezier(.16,1,.3,1) !important;
}

.news-editorial-card:hover .news-card-image img {
  transform: scale(1.06) !important;
}

.news-card-content {
  padding: 34px !important;
  background: #ffffff !important;
  min-height: 205px !important;
}

.news-editorial-grid .news-editorial-card:nth-child(3) .news-card-content,
.news-editorial-grid .news-editorial-card:nth-child(4) .news-card-content,
.news-editorial-grid .news-editorial-card:nth-child(5) .news-card-content {
  padding: 28px !important;
  min-height: 190px !important;
}

.news-card-content h2 {
  font-family: "Poppins", serif !important;
  font-size: clamp(1.65rem, 2.4vw, 2.35rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.045em !important;
  font-weight: 900 !important;
  color: #111111 !important;
  margin: 16px 0 22px !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.news-editorial-grid .news-editorial-card:nth-child(3) .news-card-content h2,
.news-editorial-grid .news-editorial-card:nth-child(4) .news-card-content h2,
.news-editorial-grid .news-editorial-card:nth-child(5) .news-card-content h2 {
  font-size: clamp(1.35rem, 1.85vw, 1.75rem) !important;
}

.news-card-content p {
  display: none !important;
}

.news-card-content time {
  margin-top: auto !important;
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #777777 !important;
}

/* Overlay escuro estilo Apple Stories */
.news-card-overlay .news-card-content {
  position: absolute !important;
  inset: 0 !important;
  justify-content: flex-end !important;
  background:
    linear-gradient(
      to top,
      rgba(0,0,0,.88) 0%,
      rgba(0,0,0,.25) 58%,
      transparent 100%
    ) !important;
}

.news-card-overlay h2,
.news-card-overlay p,
.news-card-overlay time {
  color: #ffffff !important;
}

/* =========================
   MAIS NOTÍCIAS
   Página volta para branco
   8 notícias / 2 por linha
========================= */

.news-archive {
  padding: 90px 0 120px !important;
  background: #ffffff !important;
}

.news-archive-head {
  max-width: 1020px !important;
  margin: 0 auto 52px !important;
}

.news-archive-head span,
.news-archive-head p {
  display: none !important;
}

.news-archive-head h1 {
  font-family: "Poppins", serif !important;
  font-size: clamp(2rem, 3vw, 3rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.045em !important;
  font-weight: 900 !important;
  color: #111111 !important;
  margin: 0 !important;
}

.news-archive-list {
  max-width: 1020px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  column-gap: 64px !important;
  border-top: none !important;
}

.news-archive-list .news-archive-item:nth-child(n+9) {
  display: none !important;
}

.news-archive-item {
  border-bottom: 1px solid rgba(0,0,0,.12) !important;
}

.news-archive-item a {
  display: grid !important;
  grid-template-columns: 136px 1fr !important;
  align-items: center !important;
  gap: 28px !important;
  padding: 34px 0 !important;
  color: inherit !important;
  text-decoration: none !important;
  transition: opacity .25s ease !important;
}

.news-archive-item a:hover {
  opacity: .86 !important;
}

.news-archive-image {
  width: 136px !important;
  height: 136px !important;
  aspect-ratio: auto !important;
  overflow: hidden !important;
  border-radius: 18px !important;
  background: #f5f5f5 !important;
}

.news-archive-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transform: scale(1);
  transition: transform .8s cubic-bezier(.16,1,.3,1) !important;
}

.news-archive-item a:hover .news-archive-image img {
  transform: scale(1.06) !important;
}

.news-archive-content h2 {
  font-family: "Poppins", serif !important;
  max-width: 100% !important;
  margin: 10px 0 16px !important;
  font-size: clamp(1.35rem, 2vw, 1.85rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.04em !important;
  font-weight: 900 !important;
  color: #111111 !important;
  display: -webkit-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.news-archive-content time {
  font-size: 1rem !important;
  font-weight: 700 !important;
  color: #777777 !important;
}

.news-more-wrap {
  max-width: 1020px !important;
  margin: 56px auto 0 !important;
  display: flex !important;
  justify-content: center !important;
}

.news-more-button {
  min-width: auto !important;
  min-height: 44px !important;
  padding: 0 22px !important;
  border-radius: 999px !important;
  background: rgba(17,17,17,.07) !important;
  color: #111111 !important;
  font-size: .95rem !important;
  font-weight: 800 !important;
  text-decoration: none !important;
  transition:
    transform .25s ease,
    background .25s ease !important;
}

.news-more-button:hover {
  background: rgba(17,17,17,.12) !important;
  transform: translateY(-2px) !important;
}

@media screen and (max-width: 64rem) {
  .news-featured-card {
    grid-template-columns: 1fr !important;
  }

  .news-featured-image {
    min-height: 320px !important;
  }

  .news-editorial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .news-editorial-grid .news-editorial-card:nth-child(1),
  .news-editorial-grid .news-editorial-card:nth-child(2),
  .news-editorial-grid .news-editorial-card:nth-child(3),
  .news-editorial-grid .news-editorial-card:nth-child(4),
  .news-editorial-grid .news-editorial-card:nth-child(5) {
    grid-column: auto !important;
  }

  .news-archive-list {
    grid-template-columns: 1fr !important;
    row-gap: 0 !important;
  }
}

@media screen and (max-width: 48rem) {
  .news-main-hero {
    padding: 130px 0 64px !important;
  }

  .news-editorial-list {
    padding: 28px 0 76px !important;
  }

  .news-featured-card,
  .news-editorial-card {
    border-radius: 24px !important;
  }

  .news-featured-image {
    min-height: 230px !important;
  }

  .news-featured-content,
  .news-card-content {
    padding: 26px !important;
  }

  .news-featured-content h2 {
    font-size: clamp(1.75rem, 8vw, 2.35rem) !important;
  }

  .news-editorial-grid {
    grid-template-columns: 1fr !important;
    gap: 24px !important;
  }

  .news-card-content h2 {
    font-size: clamp(1.55rem, 7vw, 2.15rem) !important;
  }

  .news-archive {
    padding: 70px 0 90px !important;
  }

  .news-archive-head {
    margin-bottom: 28px !important;
  }

  .news-archive-item a {
    grid-template-columns: 92px 1fr !important;
    gap: 18px !important;
    padding: 26px 0 !important;
  }

  .news-archive-image {
    width: 92px !important;
    height: 92px !important;
    border-radius: 16px !important;
  }

  .news-archive-content h2 {
    font-size: clamp(1.1rem, 5.4vw, 1.45rem) !important;
  }
}

/* =========================================
   AJUSTE FINO DOS TÍTULOS - NEWSROOM
   Card destaque menor e título sem corte feio
========================================= */

.news-featured-card {
  min-height: 320px !important;
}

.news-featured-image {
  min-height: 320px !important;
}

.news-featured-content {
  padding: 34px 38px !important;
}

.news-featured-content h2 {
  font-size: clamp(1.75rem, 2.55vw, 2.65rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.045em !important;
  margin: 14px 0 20px !important;

  display: -webkit-box !important;
  -webkit-line-clamp: 4 !important;
  -webkit-box-orient: vertical !important;
  overflow: hidden !important;
}

.news-featured-content time {
  font-size: .92rem !important;
}

/* Cards largos abaixo */
.news-card-large .news-card-content h2 {
  font-size: clamp(1.55rem, 2.05vw, 2.05rem) !important;
  line-height: 1.08 !important;
  -webkit-line-clamp: 3 !important;
}

/* Cards pequenos */
.news-card-small .news-card-content h2 {
  font-size: clamp(1.28rem, 1.55vw, 1.62rem) !important;
  line-height: 1.1 !important;
  -webkit-line-clamp: 3 !important;
}

/* Evita cards altos demais por causa do texto */
.news-card-content {
  min-height: 175px !important;
}

.news-card-large .news-card-content {
  min-height: 185px !important;
}

.news-card-small .news-card-content {
  min-height: 165px !important;
}

@media screen and (max-width: 48rem) {
  .news-featured-card {
    min-height: auto !important;
  }

  .news-featured-image {
    min-height: 220px !important;
  }

  .news-featured-content {
    padding: 24px !important;
  }

  .news-featured-content h2 {
    font-size: clamp(1.55rem, 7vw, 2rem) !important;
    -webkit-line-clamp: 4 !important;
  }
}

/* =========================================
   AJUSTE FINAL DO CARD DESTAQUE
   Menor e sem cortar o título com "..."
========================================= */

.news-featured-card {
  max-width: 940px !important;
  min-height: 280px !important;
  grid-template-columns: 1.65fr .95fr !important;
}

.news-featured-image {
  min-height: 280px !important;
}

.news-featured-content {
  padding: 28px 32px !important;
}

.news-featured-content h2 {
  font-size: clamp(1.35rem, 2vw, 2.05rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.04em !important;
  margin: 10px 0 18px !important;

  display: block !important;
  overflow: visible !important;
  -webkit-line-clamp: unset !important;
  -webkit-box-orient: unset !important;
}

.news-featured-content time {
  margin-top: auto !important;
  font-size: .88rem !important;
}

@media screen and (max-width: 64rem) {
  .news-featured-card {
    max-width: 760px !important;
    grid-template-columns: 1fr !important;
  }

  .news-featured-image {
    min-height: 250px !important;
  }
}

@media screen and (max-width: 48rem) {
  .news-featured-card {
    max-width: 100% !important;
    min-height: auto !important;
  }

  .news-featured-image {
    min-height: 210px !important;
  }

  .news-featured-content {
    padding: 24px !important;
  }

  .news-featured-content h2 {
    font-size: clamp(1.45rem, 6.8vw, 1.95rem) !important;
    line-height: 1.08 !important;
  }
}

/* =========================================
   AJUSTE APPLE - TAMANHO REAL DOS TÍTULOS
   Sem cortar título e com fonte menor
========================================= */

/* Destaque com altura controlada pela estrutura, igual Apple */
.news-featured-card {
  max-width: 1020px !important;
  height: 370px !important;
  min-height: 0 !important;
  grid-template-columns: 1.72fr .9fr !important;
  overflow: hidden !important;
}

.news-featured-image {
  height: 370px !important;
  min-height: 0 !important;
  overflow: hidden !important;
}

.news-featured-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

/* Título do destaque volta inteiro, menor e sem reticências */
.news-featured-content h2 {
  font-size: clamp(1.7rem, 2.35vw, 2.55rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.035em !important;
  margin: 12px 0 20px !important;

  display: block !important;
  overflow: visible !important;
  text-overflow: unset !important;
  -webkit-line-clamp: unset !important;
  -webkit-box-orient: unset !important;
}

.news-featured-content {
  padding: 36px 38px !important;
}

/* Cards largos: fonte menor, próxima da Apple */
.news-card-large .news-card-content h2,
.news-editorial-grid .news-editorial-card:nth-child(1) .news-card-content h2,
.news-editorial-grid .news-editorial-card:nth-child(2) .news-card-content h2 {
  font-size: clamp(1.45rem, 1.9vw, 2rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.035em !important;
  display: block !important;
  overflow: visible !important;
  -webkit-line-clamp: unset !important;
}

/* Cards pequenos: fonte menor */
.news-card-small .news-card-content h2,
.news-editorial-grid .news-editorial-card:nth-child(3) .news-card-content h2,
.news-editorial-grid .news-editorial-card:nth-child(4) .news-card-content h2,
.news-editorial-grid .news-editorial-card:nth-child(5) .news-card-content h2 {
  font-size: clamp(1.15rem, 1.45vw, 1.45rem) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.025em !important;
  display: block !important;
  overflow: visible !important;
  -webkit-line-clamp: unset !important;
}

/* Mais notícias: fonte menor igual lista Apple */
.news-archive-content h2 {
  font-size: clamp(1.15rem, 1.45vw, 1.55rem) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.025em !important;
  display: block !important;
  overflow: visible !important;
  -webkit-line-clamp: unset !important;
}

@media screen and (max-width: 64rem) {
  .news-featured-card {
    height: auto !important;
    grid-template-columns: 1fr !important;
  }

  .news-featured-image {
    height: 280px !important;
  }
}

@media screen and (max-width: 48rem) {
  .news-featured-image {
    height: 220px !important;
  }

  .news-featured-content h2 {
    font-size: clamp(1.45rem, 6.5vw, 1.9rem) !important;
  }

  .news-card-large .news-card-content h2,
  .news-card-small .news-card-content h2 {
    font-size: clamp(1.25rem, 5.8vw, 1.65rem) !important;
  }
}


/* =========================================
   ARQUIVO DE NOTÍCIAS - LISTA COM FILTROS
========================================= */

.news-archive-full-page {
  background: #ffffff;
  padding: 145px 0 120px;
}

.news-archive-full-page .news-block {
  max-width: 980px;
}

.news-archive-full-head {
  margin-bottom: 46px;
}

.news-archive-full-head > span {
  display: inline-block;
  margin-bottom: 18px;
  color: #7636ff;
  font-size: .88rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}

.news-archive-full-head h1 {
  font-family: "Poppins", serif;
  font-size: clamp(3rem, 6vw, 5.4rem);
  line-height: .94;
  letter-spacing: -.065em;
  font-weight: 900;
  color: #111111;
  margin: 0 0 24px;
}

.news-archive-full-head p {
  max-width: 720px;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #6f6f6f;
}

.news-archive-filters {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
  margin-bottom: 46px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.news-filter-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.news-filter-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(17,17,17,.06);
  color: #111111;
  font-size: .86rem;
  font-weight: 800;
  text-decoration: none;
  transition:
    background .25s ease,
    color .25s ease,
    transform .25s ease;
}

.news-filter-pill:hover {
  background: rgba(17,17,17,.12);
  transform: translateY(-1px);
}

.news-filter-pill.active {
  background: #111111;
  color: #ffffff;
}

.news-archive-full-list {
  display: flex;
  flex-direction: column;
}

.news-archive-full-item {
  border-bottom: 1px solid rgba(0,0,0,.08);
}

.news-archive-full-item a {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 34px;
  align-items: center;
  padding: 34px 0;
  text-decoration: none;
  color: inherit;
  transition: opacity .25s ease;
}

.news-archive-full-item a:hover {
  opacity: .86;
}

.news-archive-full-image {
  width: 220px;
  height: 142px;
  border-radius: 22px;
  overflow: hidden;
  background: #f3f3f3;
}

.news-archive-full-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1);
  transition: transform .75s cubic-bezier(.16,1,.3,1);
}

.news-archive-full-item:hover img {
  transform: scale(1.05);
}

.news-archive-full-meta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.news-archive-full-meta time {
  display: block;
  font-size: .92rem;
  font-weight: 800;
  color: #8a8a8a;
}

.news-archive-full-content h2 {
  font-family: "Poppins", serif;
  font-size: clamp(1.45rem, 2vw, 2.05rem);
  line-height: 1.1;
  letter-spacing: -.035em;
  font-weight: 900;
  margin: 0 0 12px;
  color: #111111;
}

.news-archive-full-content p {
  max-width: 680px;
  font-size: .98rem;
  line-height: 1.7;
  color: #666666;
}

@media screen and (max-width: 48rem) {

  .news-archive-full-page {
    padding: 115px 0 90px;
  }

  .news-archive-full-head {
    margin-bottom: 34px;
  }

  .news-archive-full-head h1 {
    font-size: clamp(2.4rem, 11vw, 3.6rem);
  }

  .news-archive-filters {
    align-items: flex-start;
    margin-bottom: 34px;
  }

  .news-filter-group {
    width: 100%;
  }

  .news-filter-pill {
    min-height: 34px;
    padding: 0 13px;
    font-size: .78rem;
  }

  .news-archive-full-item a {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 28px 0;
  }

  .news-archive-full-image {
    width: 100%;
    height: 220px;
    border-radius: 20px;
  }

  .news-archive-full-content h2 {
    font-size: clamp(1.35rem, 6vw, 1.85rem);
  }

  .news-archive-full-content p {
    font-size: .94rem;
  }
}

.news-archive-full-head .news-back {
  display: inline-flex;
  margin-bottom: 34px;
}

.news-archive-full-head > span {
  display: block;
  margin-top: 0;
}

.news-quick-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;

  color: #7636ff;
  background: transparent;

  padding: 0;

  font-size: .82rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.news-quick-label i {
  font-size: .72rem;
  color: #7636ff;
}


/* =========================================
   PAGINAÇÃO DO ARQUIVO DE NOTÍCIAS
========================================= */

.news-archive-count {
  margin-bottom: 18px;
  color: #8a8a8a;
  font-size: .9rem;
  font-weight: 700;
}

.news-pagination {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 54px;
}

.news-pagination-pages {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}

.news-pagination-button,
.news-pagination-number {
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  background: rgba(17,17,17,.06);
  color: #111111;
  font-size: .86rem;
  font-weight: 800;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background .25s ease,
    color .25s ease,
    transform .25s ease;
}

.news-pagination-button:hover,
.news-pagination-number:hover {
  background: rgba(17,17,17,.12);
  transform: translateY(-1px);
}

.news-pagination-number.active {
  background: #111111;
  color: #ffffff;
}

.news-pagination-button.disabled {
  opacity: .35;
  pointer-events: none;
}

.news-pagination-dots {
  color: #999999;
  font-weight: 800;
  padding: 0 4px;
}

@media screen and (max-width: 48rem) {
  .news-pagination {
    flex-direction: column;
    align-items: stretch;
  }

  .news-pagination-button {
    width: 100%;
  }
}

@media screen and (max-width: 48rem) {
  .news-archive {
    overflow: hidden;
  }

  .news-archive-head,
  .news-archive-list,
  .news-more-wrap {
    width: calc(100% - 32px) !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .news-archive-item a {
    grid-template-columns: 92px 1fr !important;
    gap: 18px !important;
  }

  .news-archive-content h2 {
    font-size: clamp(1.05rem, 5.2vw, 1.35rem) !important;
    line-height: 1.12 !important;
  }
}

/* =========================================
   NOVOS ESTILOS DOS CARDS
========================================= */

/*
|--------------------------------------------------------------------------
| CARD OVERLAY ESCURO
|--------------------------------------------------------------------------
*/

.news-card-overlay_dark {
  position: relative;
  overflow: hidden;
}

.news-card-overlay_dark .news-card-image {
  height: 100%;
}

.news-card-overlay_dark .news-card-image img {
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.news-card-overlay_dark .news-card-content {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 34px;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,.82),
      rgba(0,0,0,.18),
      transparent
    );
}

.news-card-overlay_dark h2,
.news-card-overlay_dark p,
.news-card-overlay_dark time {
  color: #ffffff !important;
}

/*
|--------------------------------------------------------------------------
| CARD OVERLAY CLARO
|--------------------------------------------------------------------------
*/

.news-card-overlay_light {
  position: relative;
  overflow: hidden;
}

.news-card-overlay_light .news-card-image {
  height: 100%;
}

.news-card-overlay_light .news-card-image img {
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.news-card-overlay_light .news-card-content {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 34px;

  background:
    linear-gradient(
      to top,
      rgba(255,255,255,.88),
      rgba(255,255,255,.18),
      transparent
    );
}

.news-card-overlay_light h2,
.news-card-overlay_light p,
.news-card-overlay_light time {
  color: #111111 !important;
}

/*
|--------------------------------------------------------------------------
| DESTAQUE - IMAGEM COMPLETA ESCURA
|--------------------------------------------------------------------------
*/

.featured-style-full_overlay_dark {
  position: relative;
  overflow: hidden;
  min-height: 560px;
}

.featured-style-full_overlay_dark .news-featured-image,
.featured-style-full_overlay_dark .news-featured-image img {
  height: 100%;
}

.featured-style-full_overlay_dark .news-featured-image img {
  width: 100%;
  object-fit: cover;
}

.featured-style-full_overlay_dark .news-featured-content {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 54px;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,.86),
      rgba(0,0,0,.25),
      transparent
    );
}

.featured-style-full_overlay_dark h2,
.featured-style-full_overlay_dark p,
.featured-style-full_overlay_dark time {
  color: #ffffff !important;
}

/*
|--------------------------------------------------------------------------
| DESTAQUE - IMAGEM COMPLETA CLARA
|--------------------------------------------------------------------------
*/

.featured-style-full_overlay_light {
  position: relative;
  overflow: hidden;
  min-height: 560px;
}

.featured-style-full_overlay_light .news-featured-image,
.featured-style-full_overlay_light .news-featured-image img {
  height: 100%;
}

.featured-style-full_overlay_light .news-featured-image img {
  width: 100%;
  object-fit: cover;
}

.featured-style-full_overlay_light .news-featured-content {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  padding: 54px;

  background:
    linear-gradient(
      to top,
      rgba(255,255,255,.88),
      rgba(255,255,255,.15),
      transparent
    );
}

.featured-style-full_overlay_light h2,
.featured-style-full_overlay_light p,
.featured-style-full_overlay_light time {
  color: #111111 !important;
}

/*
|--------------------------------------------------------------------------
| DESTAQUE SOMENTE TEXTO
|--------------------------------------------------------------------------
*/

.featured-style-text_only {
  display: flex;
  align-items: center;
  justify-content: center;

  min-height: 420px;

  padding: 90px 70px;

  background: #ffffff;
}

.featured-style-text_only .news-featured-image {
  display: none;
}

.featured-style-text_only .news-featured-content {
  max-width: 860px;
  text-align: center;
}

.featured-style-text_only h2 {
  font-size: clamp(2.4rem, 5vw, 5rem);
  line-height: .95;
}

.featured-style-text_only time {
  margin-top: 24px;
}

/* =========================================
   NOVOS ESTILOS DOS CARDS
========================================= */

/*
|--------------------------------------------------------------------------
| CARD OVERLAY ESCURO
|--------------------------------------------------------------------------
*/

.news-card-overlay_dark {
  position: relative !important;
  overflow: hidden !important;
  min-height: 360px !important;
  background: #111111 !important;
}

.news-card-overlay_dark > a {
  position: relative !important;
  display: block !important;
  height: 100% !important;
  min-height: 360px !important;
}

.news-card-overlay_dark .news-card-image {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: auto !important;
  overflow: hidden !important;
  background: #111111 !important;
}

.news-card-overlay_dark .news-card-image img {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform .6s ease !important;
}

.news-card-overlay_dark .news-card-content {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;

  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;

  min-height: 0 !important;
  padding: 34px !important;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,.88) 0%,
      rgba(0,0,0,.35) 52%,
      rgba(0,0,0,.05) 100%
    ) !important;
}

.news-card-overlay_dark h2,
.news-card-overlay_dark p,
.news-card-overlay_dark time,
.news-card-overlay_dark .news-card-badge {
  color: #ffffff !important;
}

.news-card-overlay_dark:hover .news-card-image img {
  transform: scale(1.06) !important;
}

/*
|--------------------------------------------------------------------------
| CARD OVERLAY CLARO
|--------------------------------------------------------------------------
*/

.news-card-overlay_light {
  position: relative !important;
  overflow: hidden !important;
  min-height: 360px !important;
  background: #111111 !important;
}

.news-card-overlay_light > a {
  position: relative !important;
  display: block !important;
  height: 100% !important;
  min-height: 360px !important;
}

.news-card-overlay_light .news-card-image {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
}

.news-card-overlay_light .news-card-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform .6s ease !important;
}

.news-card-overlay_light .news-card-content {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;

  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;

  padding: 34px !important;

  background:
    linear-gradient(
      to top,
      rgba(255,255,255,.90) 0%,
      rgba(255,255,255,.45) 52%,
      rgba(255,255,255,.05) 100%
    ) !important;
}

.news-card-overlay_light h2,
.news-card-overlay_light p,
.news-card-overlay_light time,
.news-card-overlay_light .news-card-badge {
  color: #111111 !important;
}

.news-card-overlay_light:hover .news-card-image img {
  transform: scale(1.06) !important;
}

/*
|--------------------------------------------------------------------------
| CARD ESCURO
|--------------------------------------------------------------------------
*/

.news-card-dark {
  background: #111111 !important;
  color: #ffffff !important;
}

.news-card-dark .news-card-content {
  background: #111111 !important;
}

.news-card-dark h2,
.news-card-dark p,
.news-card-dark time,
.news-card-dark .news-card-badge {
  color: #ffffff !important;
}

.news-card-dark .news-card-image {
  background: #111111 !important;
}

/*
|--------------------------------------------------------------------------
| DESTAQUE - IMAGEM COMPLETA ESCURA
|--------------------------------------------------------------------------
*/

.featured-style-full_overlay_dark {
  position: relative !important;
  display: block !important;
  height: 420px !important;
  min-height: 420px !important;
  overflow: hidden !important;
  background: #111111 !important;
}

.featured-style-full_overlay_dark .news-featured-image {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
}

.featured-style-full_overlay_dark .news-featured-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.featured-style-full_overlay_dark .news-featured-content {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;

  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;

  padding: 48px !important;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,.88) 0%,
      rgba(0,0,0,.35) 55%,
      rgba(0,0,0,.05) 100%
    ) !important;
}

.featured-style-full_overlay_dark h2,
.featured-style-full_overlay_dark p,
.featured-style-full_overlay_dark time,
.featured-style-full_overlay_dark .news-card-badge {
  color: #ffffff !important;
}

/*
|--------------------------------------------------------------------------
| DESTAQUE - IMAGEM COMPLETA CLARA
|--------------------------------------------------------------------------
*/

.featured-style-full_overlay_light {
  position: relative !important;
  display: block !important;
  height: 420px !important;
  min-height: 420px !important;
  overflow: hidden !important;
  background: #111111 !important;
}

.featured-style-full_overlay_light .news-featured-image {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
}

.featured-style-full_overlay_light .news-featured-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.featured-style-full_overlay_light .news-featured-content {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;

  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;

  padding: 48px !important;

  background:
    linear-gradient(
      to top,
      rgba(255,255,255,.90) 0%,
      rgba(255,255,255,.42) 55%,
      rgba(255,255,255,.05) 100%
    ) !important;
}

.featured-style-full_overlay_light h2,
.featured-style-full_overlay_light p,
.featured-style-full_overlay_light time,
.featured-style-full_overlay_light .news-card-badge {
  color: #111111 !important;
}

/*
|--------------------------------------------------------------------------
| DESTAQUE DIVIDIDO ESCURO
|--------------------------------------------------------------------------
*/

.featured-style-split_dark {
  background: #111111 !important;
}

.featured-style-split_dark .news-featured-content {
  background: #111111 !important;
}

.featured-style-split_dark h2,
.featured-style-split_dark p,
.featured-style-split_dark time,
.featured-style-split_dark .news-card-badge {
  color: #ffffff !important;
}

/*
|--------------------------------------------------------------------------
| DESTAQUE SOMENTE TEXTO
|--------------------------------------------------------------------------
*/

.featured-style-text_only {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  min-height: 420px !important;

  padding: 90px 70px !important;

  background: #ffffff !important;
}

.featured-style-text_only .news-featured-image {
  display: none !important;
}

.featured-style-text_only .news-featured-content {
  max-width: 860px !important;
  text-align: center !important;
}

.featured-style-text_only h2 {
  font-size: clamp(2.4rem, 5vw, 5rem) !important;
  line-height: .95 !important;
}

.featured-style-text_only time {
  margin-top: 24px !important;
}

/* MOBILE */

@media screen and (max-width: 48rem) {

  .news-card-overlay_dark,
  .news-card-overlay_light,
  .news-card-overlay_dark > a,
  .news-card-overlay_light > a {
    min-height: 320px !important;
  }

  .featured-style-full_overlay_dark,
  .featured-style-full_overlay_light {
    height: 360px !important;
    min-height: 360px !important;
  }

  .featured-style-full_overlay_dark .news-featured-content,
  .featured-style-full_overlay_light .news-featured-content {
    padding: 28px !important;
  }

}

/* =========================================
   TAGS NO FINAL DO POST - AJUSTE FINAL
   Pequenas, sem linha superior e hover roxo
========================================= */

.news-post-tags-footer {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 760px;
  margin: 38px auto 26px;
  padding: 0;
  border: none;
}

.news-post-tags-footer .news-post-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 7px 12px;
  border-radius: 999px;

  background: rgba(17,17,17,.055);
  border: 1px solid rgba(17,17,17,.055);

  color: #555555;

  font-size: .78rem;
  font-weight: 700;
  letter-spacing: -.01em;
  line-height: 1;

  text-decoration: none;

  transition:
    background .22s ease,
    border-color .22s ease,
    color .22s ease,
    transform .22s ease,
    box-shadow .22s ease;
}

.news-post-tags-footer .news-post-tag:hover {
    background: rgba(124, 92, 255, 0.12);
    border-color: rgba(124, 92, 255, 0.18);
    color: #6D5CE8;
    transform: translateY(-1px);
    box-shadow: none;
}

/* Quando as tags aparecem antes do compartilhar,
   reduz o espaço para não ficar um vazio grande. */
.news-post-tags-footer + .news-share {
  margin-top: 22px !important;
}

/* Ajuste geral do bloco de compartilhamento */
.news-share {
  margin-top: 56px;
}

/* Mobile */
@media screen and (max-width: 48rem) {

  .news-post-tags-footer {
    gap: 7px;
    max-width: 100%;
    margin-top: 32px;
    margin-bottom: 22px;
  }

  .news-post-tags-footer .news-post-tag {
    padding: 6px 11px;
    font-size: .74rem;
  }

  .news-post-tags-footer + .news-share {
    margin-top: 20px !important;
  }
}

/* =========================
   HEADER / MENU
========================= */

header {
  height: 76px !important;
  padding: 0 40px !important;
  display: flex !important;
  align-items: center !important;
  justify-content: space-between !important;
  box-sizing: border-box !important;
}

header.fixed {
  height: 62px !important;
  padding: 0 40px !important;
}

header .logo {
  display: flex !important;
  align-items: center !important;
  height: 100% !important;
  margin: 0 !important;
}

header .logo img {
  width: 190px !important;
  max-width: none !important;
  height: auto !important;
  display: block !important;
  padding: 0 !important;
}

header.fixed .logo img {
  width: 150px !important;
}

header .mobile {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  height: 100% !important;
}

/* Burger padrão também no desktop */
#burger {
  width: 30px !important;
  height: 20px !important;
  position: relative !important;
  cursor: pointer !important;
  display: block !important;
  flex: 0 0 auto !important;
}

#burger span {
  position: absolute !important;
  left: 0 !important;
  width: 100% !important;
  height: 2.5px !important;
  border-radius: 999px !important;
  background: #7636ff !important;
  transition:
    transform 0.3s ease,
    top 0.3s ease,
    opacity 0.2s ease,
    visibility 0.2s ease !important;
}

#burger span:nth-child(1) {
  top: 0 !important;
}

#burger span:nth-child(2) {
  top: 8.5px !important;
}

#burger span:nth-child(3) {
  top: 17px !important;
}

#burger.open span:nth-child(1) {
  top: 8.5px !important;
  transform: rotate(45deg) !important;
}

#burger.open span:nth-child(2) {
  opacity: 0 !important;
  visibility: hidden !important;
  transform: scaleX(0) !important;
}

#burger.open span:nth-child(3) {
  top: 8.5px !important;
  transform: rotate(-45deg) !important;
}

/* Cores do burger em páginas escuras */
header.dark #burger span {
  background: #ffffff !important;
}

header.black #burger span {
  background: #111111 !important;
}


/* =========================
   MOBILE NAV
========================= */

.mobile-nav {
  z-index: 9999 !important;
}

.mobile-nav.active {
  display: flex !important;
}

.mobile-nav .inner h1 {
  margin: 18px 0 !important;
  line-height: 1 !important;
}


/* =========================
   HEADER MOBILE
========================= */

@media screen and (max-width: 48rem) {
  header {
    height: 58px !important;
    padding: 0 16px !important;
  }

  header.fixed {
    height: 52px !important;
    padding: 0 16px !important;
  }

  header .logo img {
    width: 138px !important;
  }

  header.fixed .logo img {
    width: 118px !important;
  }

  #burger {
    width: 28px !important;
    height: 18px !important;
  }

  #burger span {
    height: 2.4px !important;
  }

  #burger span:nth-child(1) {
    top: 0 !important;
  }

  #burger span:nth-child(2) {
    top: 8px !important;
  }

  #burger span:nth-child(3) {
    top: 16px !important;
  }

  #burger.open span:nth-child(1),
  #burger.open span:nth-child(3) {
    top: 8px !important;
  }
}

@media screen and (max-width: 26.5625rem) {
  header {
    height: 54px !important;
    padding: 0 14px !important;
  }

  header.fixed {
    height: 50px !important;
    padding: 0 14px !important;
  }

  header .logo img {
    width: 120px !important;
  }

  header.fixed .logo img {
    width: 104px !important;
  }

  #burger {
    width: 26px !important;
    height: 16px !important;
  }

  #burger span:nth-child(2) {
    top: 7px !important;
  }

  #burger span:nth-child(3) {
    top: 14px !important;
  }

  #burger.open span:nth-child(1),
  #burger.open span:nth-child(3) {
    top: 7px !important;
  }
}


/* =========================
   NEWSROOM - BASE
========================= */

.news-page {
  background: #f5f5f7 !important;
}

.news-main-hero {
  background: #ffffff !important;
  padding: 150px 0 70px !important;
}

.news-editorial-list {
  background: #f5f5f7 !important;
  padding: 34px 0 88px !important;
}

.news-block {
  width: calc(100% - 60px) !important;
  max-width: 1020px !important;
  margin: 0 auto !important;
}


/* =========================
   CARD DE DESTAQUE MENOR
========================= */

.news-featured-card {
  display: grid !important;
  grid-template-columns: 1.65fr .95fr !important;
  width: 100% !important;
  max-width: 940px !important;
  height: 300px !important;
  min-height: 0 !important;
  margin: 0 auto 34px !important;

  overflow: hidden !important;
  border-radius: 28px !important;
  background: #ffffff !important;
  border: none !important;
  box-shadow: none !important;

  color: #111111 !important;
  text-decoration: none !important;

  transition:
    transform .28s ease,
    box-shadow .28s ease !important;
}

.news-featured-card:hover {
  transform: translateY(-3px) !important;
  box-shadow:
    0 18px 50px rgba(0,0,0,.08),
    0 4px 18px rgba(0,0,0,.05) !important;
}

.news-featured-image {
  height: 300px !important;
  min-height: 0 !important;
  overflow: hidden !important;
  background: #eeeeee !important;
}

.news-featured-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform .7s cubic-bezier(.16,1,.3,1) !important;
}

.news-featured-card:hover .news-featured-image img {
  transform: scale(1.05) !important;
}

.news-featured-content {
  padding: 28px 32px !important;
  background: #ffffff !important;

  display: flex !important;
  flex-direction: column !important;
  justify-content: center !important;
}

.news-featured-content h2 {
  font-family: "Poppins", serif !important;
  font-size: clamp(1.35rem, 2vw, 2.05rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.04em !important;
  font-weight: 900 !important;
  margin: 10px 0 16px !important;
  color: #111111 !important;

  display: block !important;
  overflow: visible !important;
  text-overflow: unset !important;
  -webkit-line-clamp: unset !important;
  -webkit-box-orient: unset !important;
}

.news-featured-content time {
  margin-top: auto !important;
  font-size: .88rem !important;
  font-weight: 700 !important;
  color: #777777 !important;
}


/* =========================
   CARDS EDITORIAIS
========================= */

.news-editorial-grid {
  max-width: 1020px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: repeat(6, minmax(0, 1fr)) !important;
  gap: 28px !important;
}

.news-editorial-grid .news-editorial-card:nth-child(n+6) {
  display: none !important;
}

.news-editorial-grid .news-editorial-card:nth-child(1),
.news-editorial-grid .news-editorial-card:nth-child(2) {
  grid-column: span 3 !important;
}

.news-editorial-grid .news-editorial-card:nth-child(3),
.news-editorial-grid .news-editorial-card:nth-child(4),
.news-editorial-grid .news-editorial-card:nth-child(5) {
  grid-column: span 2 !important;
}

.news-editorial-card {
  overflow: hidden !important;
  border-radius: 26px !important;
  background: #ffffff !important;
  border: none !important;
  box-shadow: none !important;
  transition:
    transform .28s ease,
    box-shadow .28s ease !important;
}

.news-editorial-card:hover {
  transform: translateY(-3px) !important;
  box-shadow:
    0 16px 42px rgba(0,0,0,.075),
    0 4px 14px rgba(0,0,0,.045) !important;
}

.news-card-image {
  aspect-ratio: 1.45 / 1 !important;
  overflow: hidden !important;
  background: #eeeeee !important;
}

.news-card-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.news-card-content {
  padding: 28px !important;
  min-height: 165px !important;
  background: #ffffff !important;
}

.news-card-content h2 {
  font-family: "Poppins", serif !important;
  font-size: clamp(1.22rem, 1.75vw, 1.85rem) !important;
  line-height: 1.1 !important;
  letter-spacing: -0.03em !important;
  font-weight: 900 !important;
  color: #111111 !important;
  margin: 14px 0 18px !important;

  display: block !important;
  overflow: visible !important;
  text-overflow: unset !important;
  -webkit-line-clamp: unset !important;
}

.news-card-content p {
  display: none !important;
}

.news-card-content time {
  font-size: .92rem !important;
  font-weight: 700 !important;
  color: #777777 !important;
}

.news-card-badge {
  display: inline-flex !important;
  align-items: center !important;
  gap: 7px !important;
  min-height: 30px !important;
  padding: 0 12px !important;
  border-radius: 999px !important;
  background: rgba(118,54,255,.10) !important;
  color: #7636ff !important;
  font-family: "Poppins", serif !important;
  font-size: .68rem !important;
  font-weight: 800 !important;
  letter-spacing: .05em !important;
  text-transform: uppercase !important;
}


/* =========================
   MAIS NOTÍCIAS
========================= */

.news-archive {
  padding: 82px 0 110px !important;
  background: #ffffff !important;
}

.news-archive-head {
  max-width: 1020px !important;
  margin: 0 auto 42px !important;
}

.news-archive-head span,
.news-archive-head p {
  display: none !important;
}

.news-archive-head h1 {
  font-family: "Poppins", serif !important;
  font-size: clamp(1.9rem, 3vw, 2.8rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -0.04em !important;
  font-weight: 900 !important;
  color: #111111 !important;
  margin: 0 !important;
}

.news-archive-list {
  max-width: 1020px !important;
  margin: 0 auto !important;
  display: grid !important;
  grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  column-gap: 54px !important;
  border-top: none !important;
}

.news-archive-list .news-archive-item:nth-child(n+9) {
  display: none !important;
}

.news-archive-item {
  border-bottom: 1px solid rgba(0,0,0,.12) !important;
}

.news-archive-item a {
  display: grid !important;
  grid-template-columns: 118px 1fr !important;
  align-items: center !important;
  gap: 24px !important;
  padding: 30px 0 !important;
}

.news-archive-image {
  width: 118px !important;
  height: 118px !important;
  border-radius: 18px !important;
  overflow: hidden !important;
  background: #f5f5f5 !important;
}

.news-archive-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
}

.news-archive-content h2 {
  font-family: "Poppins", serif !important;
  margin: 8px 0 14px !important;
  font-size: clamp(1.05rem, 1.45vw, 1.45rem) !important;
  line-height: 1.12 !important;
  letter-spacing: -0.025em !important;
  font-weight: 900 !important;
  color: #111111 !important;

  display: block !important;
  overflow: visible !important;
  -webkit-line-clamp: unset !important;
}

.news-archive-content time {
  font-size: .92rem !important;
  font-weight: 700 !important;
  color: #777777 !important;
}


/* Botão + Notícias no mesmo estilo dos botões de compartilhar */
.news-more-wrap {
  max-width: 1020px !important;
  margin: 48px auto 0 !important;
  display: flex !important;
  justify-content: center !important;
}

.news-more-button {
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;

  width: auto !important;
  min-width: auto !important;
  min-height: 38px !important;
  padding: 0 16px !important;

  border: none !important;
  border-radius: 999px !important;
  background: rgba(17,17,17,.055) !important;
  color: #111111 !important;

  font-family: "Poppins", serif !important;
  font-size: 0.82rem !important;
  font-weight: 800 !important;
  line-height: 1 !important;

  box-shadow: none !important;
  text-decoration: none !important;

  transition:
    background .2s ease,
    transform .2s ease !important;
}

.news-more-button:hover {
  background: rgba(17,17,17,.11) !important;
  transform: translateY(-1px) !important;
  text-decoration: none !important;
  box-shadow: none !important;
}


/* =========================
   MOBILE NEWS
========================= */

@media screen and (max-width: 64rem) {
  .news-featured-card {
    max-width: 760px !important;
    height: auto !important;
    grid-template-columns: 1fr !important;
  }

  .news-featured-image {
    height: 250px !important;
  }

  .news-editorial-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .news-editorial-grid .news-editorial-card:nth-child(1),
  .news-editorial-grid .news-editorial-card:nth-child(2),
  .news-editorial-grid .news-editorial-card:nth-child(3),
  .news-editorial-grid .news-editorial-card:nth-child(4),
  .news-editorial-grid .news-editorial-card:nth-child(5) {
    grid-column: auto !important;
  }

  .news-archive-list {
    grid-template-columns: 1fr !important;
    column-gap: 0 !important;
  }
}

@media screen and (max-width: 48rem) {
  .news-block {
    width: calc(100% - 32px) !important;
  }

  .news-main-hero {
    padding: 120px 0 58px !important;
  }

  .news-editorial-list {
    padding: 24px 0 70px !important;
  }

  .news-featured-card,
  .news-editorial-card {
    border-radius: 22px !important;
  }

  .news-featured-image {
    height: 210px !important;
  }

  .news-featured-content,
  .news-card-content {
    padding: 22px !important;
  }

  .news-featured-content h2 {
    font-size: clamp(1.35rem, 6.8vw, 1.85rem) !important;
  }

  .news-editorial-grid {
    grid-template-columns: 1fr !important;
    gap: 22px !important;
  }

  .news-card-content {
    min-height: auto !important;
  }

  .news-card-content h2 {
    font-size: clamp(1.25rem, 5.8vw, 1.65rem) !important;
  }

  .news-archive {
    overflow: hidden !important;
    padding: 64px 0 84px !important;
  }

  .news-archive-head,
  .news-archive-list,
  .news-more-wrap {
    width: calc(100% - 32px) !important;
    max-width: none !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .news-archive-head {
    margin-bottom: 24px !important;
  }

  .news-archive-item a {
    grid-template-columns: 88px 1fr !important;
    gap: 16px !important;
    padding: 24px 0 !important;
  }

  .news-archive-image {
    width: 88px !important;
    height: 88px !important;
    border-radius: 15px !important;
  }

  .news-archive-content h2 {
    font-size: clamp(1rem, 5.2vw, 1.32rem) !important;
  }

  .news-more-wrap {
    margin-top: 36px !important;
  }

  .news-more-button {
    min-height: 36px !important;
    padding: 0 15px !important;
    font-size: 0.76rem !important;
  }
}


/* =========================
   CORREÇÃO DOS BOTÕES DE SHARE
========================= */

.news-share-row a,
.news-share-row button {
  background: rgba(17,17,17,.055) !important;
  color: #111111 !important;
}

.news-share-row a:hover,
.news-share-row button:hover {
  background: rgba(17,17,17,.11) !important;
}


/* =========================
   PEQUENOS AJUSTES DE SEGURANÇA
========================= */

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

body {
  overflow-x: hidden;
}

/* =========================================
   NOVOS ESTILOS DOS CARDS
========================================= */

/*
|--------------------------------------------------------------------------
| CARD OVERLAY ESCURO
|--------------------------------------------------------------------------
*/

.news-card-overlay_dark {
  position: relative !important;
  overflow: hidden !important;
  min-height: 360px !important;
  background: #111111 !important;
}

.news-card-overlay_dark > a {
  position: relative !important;
  display: block !important;
  height: 100% !important;
  min-height: 360px !important;
}

.news-card-overlay_dark .news-card-image {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  aspect-ratio: auto !important;
  overflow: hidden !important;
  background: #111111 !important;
}

.news-card-overlay_dark .news-card-image img {
  width: 100% !important;
  height: 100% !important;
  min-height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform .6s ease !important;
}

.news-card-overlay_dark .news-card-content {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;

  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;

  min-height: 0 !important;
  padding: 34px !important;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,.88) 0%,
      rgba(0,0,0,.35) 52%,
      rgba(0,0,0,.05) 100%
    ) !important;
}

.news-card-overlay_dark h2,
.news-card-overlay_dark p,
.news-card-overlay_dark time,
.news-card-overlay_dark .news-card-badge {
  color: #ffffff !important;
}

.news-card-overlay_dark:hover .news-card-image img {
  transform: scale(1.06) !important;
}

/*
|--------------------------------------------------------------------------
| CARD OVERLAY CLARO
|--------------------------------------------------------------------------
*/

.news-card-overlay_light {
  position: relative !important;
  overflow: hidden !important;
  min-height: 360px !important;
  background: #111111 !important;
}

.news-card-overlay_light > a {
  position: relative !important;
  display: block !important;
  height: 100% !important;
  min-height: 360px !important;
}

.news-card-overlay_light .news-card-image {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
}

.news-card-overlay_light .news-card-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
  transition: transform .6s ease !important;
}

.news-card-overlay_light .news-card-content {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;

  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;

  padding: 34px !important;

  background:
    linear-gradient(
      to top,
      rgba(255,255,255,.90) 0%,
      rgba(255,255,255,.45) 52%,
      rgba(255,255,255,.05) 100%
    ) !important;
}

.news-card-overlay_light h2,
.news-card-overlay_light p,
.news-card-overlay_light time,
.news-card-overlay_light .news-card-badge {
  color: #111111 !important;
}

.news-card-overlay_light:hover .news-card-image img {
  transform: scale(1.06) !important;
}

/*
|--------------------------------------------------------------------------
| CARD ESCURO
|--------------------------------------------------------------------------
*/

.news-card-dark {
  background: #111111 !important;
  color: #ffffff !important;
}

.news-card-dark .news-card-content {
  background: #111111 !important;
}

.news-card-dark h2,
.news-card-dark p,
.news-card-dark time,
.news-card-dark .news-card-badge {
  color: #ffffff !important;
}

.news-card-dark .news-card-image {
  background: #111111 !important;
}

/*
|--------------------------------------------------------------------------
| DESTAQUE - IMAGEM COMPLETA ESCURA
|--------------------------------------------------------------------------
*/

.featured-style-full_overlay_dark {
  position: relative !important;
  display: block !important;
  height: 420px !important;
  min-height: 420px !important;
  overflow: hidden !important;
  background: #111111 !important;
}

.featured-style-full_overlay_dark .news-featured-image {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
}

.featured-style-full_overlay_dark .news-featured-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.featured-style-full_overlay_dark .news-featured-content {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;

  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;

  padding: 48px !important;

  background:
    linear-gradient(
      to top,
      rgba(0,0,0,.88) 0%,
      rgba(0,0,0,.35) 55%,
      rgba(0,0,0,.05) 100%
    ) !important;
}

.featured-style-full_overlay_dark h2,
.featured-style-full_overlay_dark p,
.featured-style-full_overlay_dark time,
.featured-style-full_overlay_dark .news-card-badge {
  color: #ffffff !important;
}

/*
|--------------------------------------------------------------------------
| DESTAQUE - IMAGEM COMPLETA CLARA
|--------------------------------------------------------------------------
*/

.featured-style-full_overlay_light {
  position: relative !important;
  display: block !important;
  height: 420px !important;
  min-height: 420px !important;
  overflow: hidden !important;
  background: #111111 !important;
}

.featured-style-full_overlay_light .news-featured-image {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  overflow: hidden !important;
}

.featured-style-full_overlay_light .news-featured-image img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block !important;
}

.featured-style-full_overlay_light .news-featured-content {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2 !important;

  display: flex !important;
  flex-direction: column !important;
  justify-content: flex-end !important;

  padding: 48px !important;

  background:
    linear-gradient(
      to top,
      rgba(255,255,255,.90) 0%,
      rgba(255,255,255,.42) 55%,
      rgba(255,255,255,.05) 100%
    ) !important;
}

.featured-style-full_overlay_light h2,
.featured-style-full_overlay_light p,
.featured-style-full_overlay_light time,
.featured-style-full_overlay_light .news-card-badge {
  color: #111111 !important;
}

/*
|--------------------------------------------------------------------------
| DESTAQUE DIVIDIDO ESCURO
|--------------------------------------------------------------------------
*/

.featured-style-split_dark {
  background: #111111 !important;
}

.featured-style-split_dark .news-featured-content {
  background: #111111 !important;
}

.featured-style-split_dark h2,
.featured-style-split_dark p,
.featured-style-split_dark time,
.featured-style-split_dark .news-card-badge {
  color: #ffffff !important;
}

/*
|--------------------------------------------------------------------------
| DESTAQUE SOMENTE TEXTO
|--------------------------------------------------------------------------
*/

.featured-style-text_only {
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;

  min-height: 420px !important;

  padding: 90px 70px !important;

  background: #ffffff !important;
}

.featured-style-text_only .news-featured-image {
  display: none !important;
}

.featured-style-text_only .news-featured-content {
  max-width: 860px !important;
  text-align: center !important;
}

.featured-style-text_only h2 {
  font-size: clamp(2.4rem, 5vw, 5rem) !important;
  line-height: .95 !important;
}

.featured-style-text_only time {
  margin-top: 24px !important;
}

/* MOBILE */

@media screen and (max-width: 48rem) {

  .news-card-overlay_dark,
  .news-card-overlay_light,
  .news-card-overlay_dark > a,
  .news-card-overlay_light > a {
    min-height: 320px !important;
  }

  .featured-style-full_overlay_dark,
  .featured-style-full_overlay_light {
    height: 360px !important;
    min-height: 360px !important;
  }

  .featured-style-full_overlay_dark .news-featured-content,
  .featured-style-full_overlay_light .news-featured-content {
    padding: 28px !important;
  }

}

/* =========================
   MENU PÍLULA - RESPONSIVO
========================= */

header.jh-pill-menu{
  position:fixed !important;
  top:18px !important;
  left:50% !important;
  transform:translateX(-50%) !important;

  width:clamp(320px, 82vw, 1120px) !important;
  height:clamp(50px, 4.2vw, 58px) !important;

  background:rgba(255,255,255,.94) !important;
  backdrop-filter:blur(18px) !important;
  -webkit-backdrop-filter:blur(18px) !important;

  border-radius:28px !important;
  overflow:hidden !important;
  z-index:99999 !important;
  box-sizing:border-box !important;

  box-shadow:0 10px 40px rgba(0,0,0,.06) !important;

  transition:
    height .38s cubic-bezier(.16,1,.3,1),
    box-shadow .38s ease !important;
}

header.jh-pill-menu.active{
  height:clamp(350px, 34vw, 430px) !important;
  box-shadow:0 24px 70px rgba(0,0,0,.12) !important;
}

.jh-pill-top{
  position:absolute !important;
  top:0 !important;
  left:0 !important;
  right:0 !important;

  height:clamp(50px, 4.2vw, 58px) !important;
  padding:0 clamp(20px, 2.5vw, 34px) !important;

  display:flex !important;
  align-items:center !important;
  justify-content:space-between !important;

  z-index:5 !important;
  box-sizing:border-box !important;
}

.jh-pill-logo img{
  width:clamp(42px, 3.6vw, 54px) !important;
  display:block !important;
}

.jh-pill-actions{
  display:flex !important;
  align-items:center !important;
  gap:clamp(16px, 1.8vw, 24px) !important;
}

.jh-pill-search,
.jh-pill-toggle{
  border:0 !important;
  background:transparent !important;
  padding:0 !important;
  margin:0 !important;
  color:#111 !important;
  cursor:pointer !important;
}

.jh-pill-search{
  font-size:clamp(18px, 1.8vw, 24px) !important;
  line-height:1 !important;
}

.jh-pill-toggle{
  width:clamp(26px, 2.4vw, 34px) !important;
  height:22px !important;
  position:relative !important;
}

.jh-pill-toggle span{
  position:absolute !important;
  left:0 !important;
  width:100% !important;
  height:2.5px !important;
  background:#111 !important;
  border-radius:999px !important;
  transition:.28s ease !important;
}

.jh-pill-toggle span:first-child{
  top:6px !important;
}

.jh-pill-toggle span:last-child{
  top:14px !important;
}

header.jh-pill-menu.active .jh-pill-toggle span:first-child{
  top:10px !important;
  transform:rotate(45deg) !important;
}

header.jh-pill-menu.active .jh-pill-toggle span:last-child{
  top:10px !important;
  transform:rotate(-45deg) !important;
}

/* LINKS DO MENU */

.jh-pill-content{
  position:absolute !important;

  top:clamp(68px, 5.5vw, 88px) !important;

  left:clamp(42px, 5vw, 76px) !important;
  right:clamp(42px, 5vw, 76px) !important;

  display:flex !important;
  flex-direction:column !important;
  align-items:flex-start !important;

  gap:clamp(-2px, .2vw, 4px) !important;

  opacity:0 !important;
  pointer-events:none !important;

  transform:translateY(-14px) !important;

  transition:
    opacity .22s ease .12s,
    transform .32s cubic-bezier(.16,1,.3,1) .12s !important;
}

header.jh-pill-menu.active .jh-pill-content{
  opacity:1 !important;
  pointer-events:auto !important;
  transform:translateY(0) !important;
}

.jh-pill-content > a{
  font-family:"Poppins", serif !important;
  font-size:clamp(42px, 4.4vw, 64px) !important;
  line-height:1.02 !important;
  font-weight:900 !important;
  letter-spacing:-.055em !important;
  color:#111 !important;
  text-decoration:none !important;
  transition:color .2s ease !important;
}

.jh-pill-content > a:hover{
  color:#7636ff !important;
}

.jh-pill-sub{
  display:flex !important;
  flex-wrap:wrap !important;

  gap:clamp(14px, 1.6vw, 22px) !important;

  margin-top:clamp(6px, .8vw, 12px) !important;
}

.jh-pill-sub a{
  font-family:"Poppins", serif !important;
  font-size:clamp(17px, 1.35vw, 21px) !important;
  font-weight:800 !important;
  line-height:1 !important;
  color:#777 !important;
  text-decoration:none !important;
  transition:color .2s ease !important;
}

.jh-pill-sub a:hover{
  color:#7636ff !important;
}

/* BUSCA */

.jh-search-box{
  position:absolute !important;
  top:clamp(72px, 6vw, 88px) !important;
  left:clamp(32px, 4vw, 54px) !important;
  right:clamp(32px, 4vw, 54px) !important;

  display:flex !important;
  align-items:center !important;
  gap:14px !important;

  opacity:0 !important;
  pointer-events:none !important;

  transform:translateY(-8px) !important;
  transition:opacity .22s ease, transform .22s ease !important;
}

header.jh-pill-menu.searching{
  height:clamp(140px, 12vw, 170px) !important;
}

header.jh-pill-menu.searching .jh-search-box{
  opacity:1 !important;
  pointer-events:auto !important;
  transform:translateY(0) !important;
}

header.jh-pill-menu.searching .jh-pill-content{
  opacity:0 !important;
  pointer-events:none !important;
}

.jh-search-box i{
  font-size:clamp(18px, 1.6vw, 22px) !important;
  color:#8b8b90 !important;
  flex-shrink:0 !important;
}

.jh-search-box input{
  width:100% !important;
  border:0 !important;
  outline:0 !important;
  background:transparent !important;
  padding:0 !important;

  font-family:"Poppins", serif !important;
  font-size:clamp(24px, 2.4vw, 32px) !important;
  font-weight:700 !important;
  color:#1d1d1f !important;
  letter-spacing:-.04em !important;
}

.jh-search-box input::placeholder{
  color:#8b8b90 !important;
}

/* MOBILE */

@media screen and (max-width:48rem){

  header.jh-pill-menu{
    width:calc(100vw - 32px) !important;
    height:54px !important;
  }

  header.jh-pill-menu.active{
    height:350px !important;
  }

  .jh-pill-top{
    height:54px !important;
    padding:0 22px !important;
  }

  .jh-pill-logo img{
    width:48px !important;
  }

  .jh-pill-actions{
    gap:18px !important;
  }

  .jh-pill-search{
    font-size:21px !important;
  }

  .jh-pill-toggle{
    width:30px !important;
    height:22px !important;
  }

  .jh-pill-content{
    top:92px !important;
    left:42px !important;
    right:32px !important;
    gap:3px !important;
  }

  .jh-pill-content > a{
    font-size:42px !important;
    line-height:1.08 !important;
    letter-spacing:-.045em !important;
  }

  .jh-pill-sub{
    margin-top:12px !important;
    gap:16px !important;
  }

  .jh-pill-sub a{
    font-size:19px !important;
  }

  .jh-search-box{
    top:78px !important;
    left:32px !important;
    right:32px !important;
  }

  header.jh-pill-menu.searching{
    height:145px !important;
  }

  .jh-search-box input{
    font-size:26px !important;
  }
}

/* =========================
   PÁGINA DE BUSCA
========================= */

.search-page{
  background:#f5f5f7 !important;
  min-height:100vh !important;
}

.search-hero{
  padding:150px 0 60px !important;
  background:#ffffff !important;
}

.search-hero span{
  display:block !important;
  margin-bottom:18px !important;
  color:#7636ff !important;
  font-family:"Poppins", serif !important;
  font-size:.85rem !important;
  font-weight:800 !important;
  text-transform:uppercase !important;
  letter-spacing:.18em !important;
}

.search-hero h1{
  font-family:"Poppins", serif !important;
  font-size:clamp(2.4rem, 7vw, 5rem) !important;
  line-height:.96 !important;
  font-weight:900 !important;
  letter-spacing:-.06em !important;
  color:#111 !important;
  margin:0 !important;
}

.search-hero p{
  max-width:680px !important;
  margin-top:26px !important;
  color:#777 !important;
  font-size:1.05rem !important;
  line-height:1.8 !important;
}

.search-results-section{
  padding:70px 0 110px !important;
  background:#f5f5f7 !important;
}

.search-results-list{
  display:grid !important;
  grid-template-columns:repeat(2, minmax(0, 1fr)) !important;
  gap:34px !important;
}

.search-result-card{
  background:#ffffff !important;
  border-radius:28px !important;
  overflow:hidden !important;
  box-shadow:none !important;
  transition:.25s ease !important;
}

.search-result-card:hover{
  transform:translateY(-3px) !important;
  box-shadow:0 18px 50px rgba(0,0,0,.08) !important;
}

.search-result-card a{
  display:block !important;
  color:inherit !important;
  text-decoration:none !important;
}

.search-result-image{
  width:100% !important;
  aspect-ratio:16 / 9 !important;
  background:#e8e8e8 !important;
  overflow:hidden !important;
}

.search-result-image img{
  width:100% !important;
  height:100% !important;
  object-fit:cover !important;
  display:block !important;
}

.search-result-content{
  padding:28px !important;
}

.search-result-content span{
  display:inline-flex !important;
  margin-bottom:16px !important;
  padding:8px 12px !important;
  border-radius:999px !important;
  background:rgba(118,54,255,.10) !important;
  color:#7636ff !important;
  font-family:"Poppins", serif !important;
  font-size:.72rem !important;
  font-weight:800 !important;
  text-transform:uppercase !important;
}

.search-result-content h2{
  font-family:"Poppins", serif !important;
  font-size:clamp(1.45rem, 2.5vw, 2rem) !important;
  line-height:1.08 !important;
  font-weight:900 !important;
  letter-spacing:-.04em !important;
  color:#111 !important;
  margin:0 !important;
}

.search-result-content p{
  margin-top:16px !important;
  color:#777 !important;
  line-height:1.75 !important;
}

.search-result-content time{
  display:block !important;
  margin-top:20px !important;
  color:#777 !important;
  font-weight:700 !important;
}

.search-empty{
  background:#ffffff !important;
  border-radius:28px !important;
  padding:46px !important;
}

.search-empty h2{
  font-family:"Poppins", serif !important;
  font-size:2rem !important;
  font-weight:900 !important;
  color:#111 !important;
}

.search-empty p{
  margin-top:14px !important;
  color:#777 !important;
  line-height:1.8 !important;
}

@media screen and (max-width:48rem){

  .search-hero{
    padding:120px 0 46px !important;
  }

  .search-results-section{
    padding:46px 0 80px !important;
  }

  .search-results-list{
    grid-template-columns:1fr !important;
    gap:24px !important;
  }

  .search-result-card{
    border-radius:24px !important;
  }

  .search-result-content{
    padding:24px !important;
  }

  .search-result-content h2{
    font-size:1.55rem !important;
  }

  .search-empty{
    padding:32px !important;
    border-radius:24px !important;
  }
}

/* =========================
   DESTAQUE PRINCIPAL - HOME NOTÍCIAS
========================= */

.news-editorial-list .news-featured-card{
  width:100% !important;
  max-width:none !important;
  margin-left:0 !important;
  margin-right:0 !important;
}

.news-editorial-list .news-featured-image{
  flex:1.8 !important;
}

.news-editorial-list .news-featured-content{
  flex:1 !important;
}

/* =========================
   DESTAQUE PRINCIPAL SEM IMAGEM
========================= */

.news-editorial-list .news-block > a.news-featured-card.no-image{
  width:100% !important;
  max-width:100% !important;
  display:block !important;
  padding:0 !important;
  overflow:hidden !important;
}

.news-editorial-list .news-block > a.news-featured-card.no-image .news-featured-content{
  width:100% !important;
  max-width:720px !important;
  min-height:320px !important;
  margin:0 auto !important;
  padding:56px 24px !important;
  box-sizing:border-box !important;

  display:flex !important;
  flex-direction:column !important;
  align-items:center !important;
  justify-content:center !important;

  gap:28px !important;
  text-align:center !important;
  flex:none !important;
}

.news-editorial-list .news-block > a.news-featured-card.no-image h2{
  max-width:720px !important;
  margin:0 !important;
  font-size:clamp(38px, 4vw, 62px) !important;
  line-height:.96 !important;
  letter-spacing:-.055em !important;
  text-align:center !important;
  text-wrap:balance !important;
}

.news-editorial-list .news-block > a.news-featured-card.no-image time{
  display:block !important;
  width:100% !important;
  margin:0 !important;
  text-align:center !important;
}

/* =========================
   MOBILE
========================= */

@media screen and (max-width:48rem){

  .news-editorial-list .news-block > a.news-featured-card.no-image .news-featured-content{
    max-width:100% !important;
    min-height:300px !important;
    padding:44px 28px !important;
    align-items:flex-start !important;
    gap:18px !important;
    text-align:left !important;
  }

  .news-editorial-list .news-block > a.news-featured-card.no-image h2{
    max-width:100% !important;
    font-size:34px !important;
    line-height:1.03 !important;
    letter-spacing:-.045em !important;
    text-align:left !important;
  }

  .news-editorial-list .news-block > a.news-featured-card.no-image time{
    text-align:left !important;
  }

}

/* REMOVE LINHA ENTRE IMAGEM E TEXTO - DESKTOP E MOBILE */

.news-featured-card{
  overflow:hidden !important;
  gap:0 !important;
}

.news-featured-image{
  margin:0 !important;
  padding:0 !important;
  line-height:0 !important;
  font-size:0 !important;
  overflow:hidden !important;
}

.news-featured-image img{
  width:calc(100% + 2px) !important;
  height:100% !important;
  margin-right:-1px !important;
  margin-bottom:-1px !important;
  display:block !important;
  object-fit:cover !important;
}

.news-featured-content{
  margin:0 !important;
  border:0 !important;
  box-shadow:none !important;
}

/* só no desktop mantém lado a lado */
@media screen and (min-width:49rem){
  .news-featured-card{
    display:flex !important;
  }

  .news-featured-image{
    flex:1.8 !important;
  }

  .news-featured-content{
    flex:1 !important;
    margin-left:-1px !important;
  }
}

/* no mobile não força flex horizontal */
@media screen and (max-width:48rem){
  .news-featured-card{
    display:block !important;
  }

  .news-featured-image img{
    width:100% !important;
    height:100% !important;
    margin-right:0 !important;
    margin-bottom:-1px !important;
  }
}

.archive-pagination {
  width: 100%;
  max-width: 100%;
  margin: 48px auto 32px;
  padding: 0 16px;

  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;

  box-sizing: border-box;
  flex-wrap: wrap;
}

.archive-pagination a,
.archive-pagination span {
  width: 46px;
  height: 46px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  border-radius: 50%;
  background: #f2f2f2;
  color: #111;

  font-size: 16px;
  font-weight: 700;
  text-decoration: none;

  box-sizing: border-box;
}

.archive-pagination span {
  background: transparent;
  color: #999;
}

.archive-pagination .active {
  background: #111;
  color: #fff;
}

@media (max-width: 600px) {
  .archive-pagination {
    margin-top: 36px;
    gap: 8px;
    padding: 0 12px;
  }

  .archive-pagination a,
  .archive-pagination span {
    width: 42px;
    height: 42px;
    font-size: 15px;
  }
}