:root {
  --white: #ffffff;
  --black: #272626;
  --secondary: #32ade6;
  --primary: #f2f2f2;

  /* Fontes */
  --articulat: "articulat-cf", sans-serif;

  /* Fontes (shorthand) */
  --title-max: 600 56px/73px var(--articulat);
  --title: 600 36px/47px var(--articulat);
  --title-min: 600 24px/36px var(--articulat);
  --body: 400 16px/24px var(--articulat);
  --body-single: 400 18px/27px var(--articulat);
  --detail: 400 14px/21px var(--articulat);

  /* Espaçamentos */
  --container-max: 1280px;
  --section-padding-top: 80px;
  --section-padding-bottom: 80px;
  --header-height: 172px;
  --footer-height: 161px;
  --item-space-p: 10px;
  --item-space-m: 20px;
  --item-space-g: 40px;
  --radius-p: 10px;
  --radius-m: 15px;
  --radius-g: 20px;

  --super-fast: all 0.3s ease;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

*::before,
*::after {
  display: block;
}

html,
body {
  height: 100%;
  line-height: 1.5;
  font: var(--body);
  background-color: var(--white);
  color: var(--black);
  scroll-behavior: smooth;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

main {
  min-height: calc(100vh - var(--footer-height));
}

.domino {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--item-space-p);
  margin: 0 auto;
}

.domino.three {
  grid-template-columns: repeat(3, 1fr);
}

.domino.two {
  grid-template-columns: repeat(2, 1fr);
}

.domino.no-gap {
  gap: 0px;
}

.c1 {
  grid-column: span 1;
}

.c2 {
  grid-column: span 2;
}

.c3 {
  grid-column: span 3;
}

.c4 {
  grid-column: span 4;
}

.desktop-only {
  display: block !important;
}

.mobile-only {
  display: none !important;
}

.container-max {
  max-width: var(--container-max);
  margin: 0 auto;
}

body.loader-active {
  overflow: hidden;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background-color: var(--primary);

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

  opacity: 1;
  visibility: visible;
  pointer-events: all;

  transition: var(--super-fast);
}

.loader.hide {
  opacity: 0;
  pointer-events: none;
}

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

header {
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  position: fixed;
  width: 100%;
  z-index: 100;
}

header .header-top {
  display: flex;
  padding: var(--item-space-m) var(--item-space-m) var(--item-space-m)
    var(--item-space-m);
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--primary);
}

header .header-top img {
  width: 140px;
  height: 32px;
}

header ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--item-space-g);
}

header li {
  display: inline;
}

header li.active {
  background-color: var(--primary);
  border-radius: var(--radius-m);
  padding: 2px 9px;
}

header li:not(.button) a:hover {
  text-decoration: underline;
}

.button {
  background-color: var(--black);
  padding: 12px 20px;
  color: var(--white);
  border-radius: var(--radius-p);
  transition: var(--super-fast);
  cursor: pointer;
  white-space: nowrap;
}

.button:hover {
  background-color: var(--secondary);
}

header .header-bottom {
  display: flex;
  padding: 25px 0px;
  gap: var(--item-space-g);
  justify-content: center;
  align-items: center;
  position: relative;
}

.open-search-form-button {
  cursor: pointer;
}

.open-search-form-button:before {
  display: block;
  width: 18px;
  height: 18px;
  content: "";
  float: left;
  background-image: url("../assets/icones/search.svg");
  background-size: 18px;
  background-repeat: no-repeat;
  margin-top: 3px;
  margin-right: 10px;
}

.search-form-header {
  position: absolute;
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transform: scaleX(0.5);
  transform-origin: left;
  transition: var(--super-fast);
}

.search-form-header.open {
  opacity: 1;
  pointer-events: auto;

  transform: scaleX(1);
}

.search-form-header form {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--item-space-p);
}

.search-form-header input {
  background-color: var(--primary);
  padding: 12px 15px;
  border-radius: var(--radius-p);
  border: none;
  width: 560px;
  height: 45px;
  font: var(--body);
  outline: none;
  transition: var(--super-fast);
}

.search-form-header input.search-field:focus {
  box-shadow: 0 0 0 1px var(--black);
}

.close-search {
  position: absolute;
  top: 50%;
  right: 72px;
  transform: translateY(-50%);
  cursor: pointer;
  width: 12px;
  height: 12px;
  background-image: url("../assets/icones/close.svg");
  background-repeat: no-repeat;
  background-size: 12px;
  background-position: center;
  user-select: none;
  background-color: var(--primary);
}

.search-form-header .search-submit {
  background-color: black;
  width: 45px;
  height: 45px;
  border-radius: var(--radius-p);
  background-image: url("../assets/icones/search_white.svg");
  background-repeat: no-repeat;
  background-size: 18px;
  background-position: center;
  border: none;
  transition: var(--super-fast);
  cursor: pointer;

  text-indent: -9999px;
  overflow: hidden;
  white-space: nowrap;
}

.search-form-header button:hover {
  background-color: var(--secondary);
}

.container-dropdown-categories-options {
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.dropdown-categories-options {
  position: relative;
}

.toggle-categories {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  background-color: var(--primary);
  border-radius: 50%;
  cursor: pointer;
  margin-top: 9px;
}

.toggle-categories::before,
.toggle-categories::after {
  content: "";
  position: absolute;
  background-color: var(--black);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: var(--super-fast);
}

.toggle-categories::before {
  width: 10px;
  height: 1px;
}

.toggle-categories::after {
  width: 1px;
  height: 10px;
}

.dropdown-categories-options.open .toggle-categories::after {
  opacity: 0;
}

.container-categories-options {
  background-color: var(--primary);
  padding: 12px 10px;
  border-radius: var(--radius-p);
  position: absolute;
  right: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  opacity: 0;
  pointer-events: none;
  transition: var(--super-fast);
  align-items: start;
}

.container-categories-options li {
  cursor: pointer;
  transition: var(--super-fast);
  padding: 8px 10px;
  width: 100%;
  border-radius: 5px;
}

.container-categories-options li a {
  display: block;
}

.dropdown-categories-options.open .container-categories-options {
  opacity: 1;
  pointer-events: auto;
}

.dropdown-categories-options.open .container-categories-options li:hover {
  background-color: #d9d9d9;
}

.dropdown-categories-options.open .container-categories-options li:hover a {
  text-decoration: none;
}

section.first-section {
  padding-top: calc(var(--header-height) + 60px);
  padding-bottom: var(--section-padding-bottom);
}

body.paged section.post-list {
  padding-top: calc(var(--header-height) + 60px);
}

section.home {
  background-image: url("../assets/bg/home-formas-bg.svg");
  background-repeat: no-repeat;
  background-position: right var(--header-height);
  background-size: auto;
}

.highlighted-post-card {
  border-radius: 40px;
  box-shadow: 0px 0px 15px #0000000d;
  padding: var(--item-space-g);
  gap: var(--item-space-g);
  background-color: var(--white);
}

.highlighted-post-card figure {
  height: 100%;
  overflow: hidden;
  border-radius: var(--radius-g);
  background-color: var(--primary);
}

.highlighted-post-card figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--super-fast);
}

.highlighted-post-card:hover .button {
  background-color: var(--secondary);
}

.highlighted-post-card:hover figure img {
  transform: scale(1.1);
}

.tag-card {
  text-transform: uppercase;
  border-radius: var(--radius-m);
  padding: 7px 12px;
  background-color: var(--primary);
  width: fit-content;
  font: var(--detail);
  line-height: 1em;
}

.highlighted-post-card-infos h1 {
  font: var(--title-max);
  padding: var(--item-space-m) 0px;
  text-align: start;
  font-weight: bold;
}

.highlighted-post-card-infos p {
  padding-bottom: var(--item-space-m);
  text-align: start;
}

.highlighted-post-card-infos span {
  display: block;
  font: var(--detail);
  padding-bottom: var(--item-space-g);
  opacity: 0.6;
  text-align: start;
}

.highlighted-post-card-infos a {
  display: block;
  width: fit-content;
}

.highlighted-post-card-infos .button {
  font-weight: bold;
}

section.post-list {
  padding-bottom: var(--section-padding-bottom);
}

.container-title-and-page {
  display: flex;
  justify-content: space-between;
  padding-bottom: 80px;
}

.container-title-and-page:has(.current-page),
main:has(.first-section.home) .container-title-and-page {
  padding-bottom: 40px;
}

.container-title-and-page {
  display: flex;
  justify-content: space-between;
  padding-bottom: 80px;
}

.container-title-and-page:has(.current-page) h1,
.container-title-and-page h2 {
  font: var(--title);
  font-weight: bold;
}

.container-title-and-page .current-page {
  opacity: 0.6;
}

.container-post-list {
  gap: var(--item-space-g);
}

.post-card a {
  display: block;
  width: 100%;
}

.post-card figure {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 80%;
  overflow: hidden;
  border-radius: var(--radius-m);
  background-color: var(--primary);
}

.post-card figure img {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--super-fast);
}

.post-card .container-post-card-info .tag-card {
  margin: 20px 0px 12px 0px;
}

.post-card .container-post-card-info h3 {
  font: var(--title-min);
  transition: var(--super-fast);
  margin-bottom: 5px;
  font-weight: bold;
}

.post-card .container-post-card-info span {
  font: var(--detail);
  opacity: 0.6;
}

.post-card:hover h3 {
  color: var(--secondary);
}

.post-card:hover figure img {
  transform: scale(1.1);
}

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

.container-pagination figure {
  width: 47px;
  height: 47px;
  transition: var(--super-fast);
  border-radius: var(--radius-p);
  position: relative;
  cursor: pointer;
}

.container-pagination figure:not(.disabled):hover {
  background-color: var(--primary);
}

.container-pagination figure.disabled {
  opacity: 0.4;
  cursor: inherit;
}

.container-pagination figure img {
  width: 17px;
  height: 17px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.container-pagination ul {
  display: flex;
  gap: 15px;
  justify-content: center;
  align-items: center;
}

.container-pagination ul li {
  text-decoration: none;
  display: block;
  font: var(--detail);
  border-radius: 5px;
  transition: var(--super-fast);
  cursor: pointer;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
}

.container-pagination ul li:hover {
  background-color: var(--primary);
  width: 24px;
  height: 24px;
}

.container-pagination ul li a {
  display: block;
  padding-top: 2px;
}

.container-pagination ul li.page-active {
  color: var(--white);
  background-color: var(--black);
}

footer {
  background-color: var(--primary);
}

.container-footer-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--item-space-g);
}

.container-footer-links div {
  display: flex;
  gap: var(--item-space-m);
  align-items: center;
}

.container-footer-links div a:hover {
  text-decoration: underline;
}

.container-footer-links img {
  width: 140px;
  height: 32px;
}

footer .container-footer-links .scroll-top {
  background-color: black;
  border-radius: 50%;
  width: 33px;
  height: 33px;
  margin-left: 60px;
  background-image: url("../assets/icones/arrow-up.svg");
  background-size: 15px;
  background-position: center;
  background-repeat: no-repeat;
  cursor: pointer;
}

footer .container-footer-links a.active {
  background-color: var(--white);
  border-radius: var(--radius-m);
  padding: 5px 8px;
}

footer p {
  padding: 0px 0px var(--item-space-m) var(--item-space-g);
  font: var(--detail);
  opacity: 0.6;
}

/* Interna de post */

.breadcrumb {
  display: flex;
  width: 100%;
  justify-content: start;
  align-items: center;
  gap: 10px;
  padding-bottom: var(--item-space-g);
}

.breadcrumb a {
  white-space: nowrap;
}

.breadcrumb a,
.breadcrumb span {
  opacity: 0.6;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.breadcrumb span {
  background-image: url("../assets/icones/arrow-breadcrumb.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 5px 10px;
  width: 5px;
  height: 10px;
  flex-shrink: 0;
}

.internal-post-main {
  gap: var(--item-space-g);
}

.internal-post-main figure {
  border-radius: var(--radius-g);
  overflow: hidden;
  height: 526px;
  background-color: var(--primary);
}

.internal-post-main figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.internal-post-main-infos {
  display: flex;
  flex-direction: column;
  align-items: start;
  gap: 10px;
  justify-content: center;
}

.internal-post-main-infos h1 {
  font: var(--title-max);
  font-weight: bold;
}

.internal-post-main-infos span {
  font: var(--detail);
  opacity: 0.6;
  margin-top: 5px;
}

.internal-related-content-list h2 {
  font: var(--title);
  font-weight: bold;
  padding-bottom: var(--item-space-g);
}

.internal-related-content-list .post-card .tag-card {
  display: none;
}

section.categories .post-card figure,
section.tags .post-card figure,
.internal-related-content-list figure {
  margin-bottom: var(--item-space-m);
}

.internal-related-content-list .button {
  display: block;
  width: fit-content;
  margin: var(--item-space-g) auto 0px auto;
}

.container-content-post {
  padding-bottom: var(--section-padding-bottom);
}

.container-text {
  max-width: 696px;
  margin: 0px auto;
  display: grid;
  grid-template-columns: 36px 1fr;
  gap: 40px;
}

strong {
  font-weight: bold;
}

.container-text p:not(:last-of-type) {
  padding-bottom: var(--item-space-m);
}

.container-text p {
  overflow-wrap: break-word;
  word-break: break-word;
  font: var(--body-single);
}

.container-text h2 {
  padding: var(--item-space-m) 0px;
  font: var(--title);
  font-weight: bold;
}

.container-text h3 {
  padding: var(--item-space-m) 0px;
  font: var(--title-min);
  font-weight: bold;
}

.container-text mark {
  color: var(--black) !important;
  background-color: #addef5 !important;
  padding-top: 3px;
}

.container-text figure.wp-block-image {
  width: 100%;
  margin-bottom: 20px !important;
}

.container-text figure.wp-block-image img {
  object-fit: cover;
  width: 100%;
  height: 340px;
  border-radius: 10px;
  overflow: hidden;
}

.container-text figure.wp-block-image figcaption {
  text-align: start;
  color: var(--black) !important;
  font-size: 14px;
  padding-top: 20px;
  margin: 0px;
}

.container-text .content a {
  text-decoration: underline;
  transition: var(--super-fast);
}

.container-text .content a:hover {
  color: var(--secondary);
}

.container-text .content blockquote.wp-block-quote {
  border-left: none;
  margin: 0px;
  padding: 20px var(--item-space-g) 20px var(--item-space-g);
}

.container-text .content blockquote.wp-block-quote:before {
  display: block;
  width: 29px;
  height: 23px;
  content: "";
  background-image: url("../assets/icones/aspas.svg");
  background-repeat: no-repeat;
  margin-bottom: var(--item-space-m);
}

.container-text .content blockquote.wp-block-quote > p {
  font-weight: bold;
  padding-bottom: 20px;
  margin: 0px;
}

.container-text .content blockquote.wp-block-quote cite,
.container-text
  .content
  blockquote.wp-block-quote:has(> p + p)
  > p:last-of-type {
  font-size: 14px;
  font-weight: normal;
  padding-bottom: 20px;
  margin: 0;
}

.menu-sticky {
  position: sticky;
  top: calc(var(--header-height) + 40px);
  align-self: start;
}

.menu-sticky ul {
  display: flex;
  list-style: none;
  flex-direction: column;
  gap: var(--item-space-m);
}

.menu-sticky button,
.menu-sticky a {
  display: block;
  width: 36px;
  height: 36px;
  background-color: var(--primary);
  border-radius: 5px;
  text-align: center;
  position: relative;
  border: none;
  cursor: pointer;
  transition: var(--super-fast);
}

.menu-sticky button:hover,
.menu-sticky a:hover {
  background-color: var(--secondary);
}

.menu-sticky button img,
.menu-sticky a img {
  height: 18px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.menu-sticky button {
  position: relative;
}

.menu-sticky button.copied::after {
  content: "Link copiado!";
  position: absolute;
  top: -52px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--secondary);
  color: var(--black);
  font-size: 14px;
  padding: 10px 15px;
  border-radius: 10px;
  white-space: nowrap;
  z-index: 10;
}

.menu-sticky button.copied::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid var(--secondary);
  z-index: 9;
}

.single-container-tags {
  padding-top: 30px;
  border-top: 2px solid var(--primary);
  margin-top: var(--item-space-g);
}

.single-container-tags ul {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.single-container-tags ul a {
  background-color: var(--primary);
  border-radius: 5px;
  padding: 7px 15px;
  transition: var(--super-fast) !important;
  display: block;
  text-decoration: none !important;
}

.single-container-tags ul a:hover {
  background-color: #d9d9d9;
}

/* Página de categorias e tags*/
section.tags:not(:has(.current-page)),
section.categories:not(:has(.current-page)) {
  background-image:
    url("../assets/bg/categoria-bg-esquerda.svg"),
    url("../assets/bg/catgeoria-bg-direita.svg");
  background-repeat: no-repeat, no-repeat;
  background-position:
    left var(--header-height),
    right var(--header-height);
  background-size: auto, auto;
}

section.search-section h1,
section.tags h1,
section.categories h1 {
  font: var(--title-max);
  margin-top: -10px;
  font-weight: bold;
}

section.tags
  .container-post-list
  figure
  section.categories
  .container-post-list
  figure {
  margin-bottom: 20px;
}

section.categories .container-post-list .tag-card {
  display: none;
}

/* Página de busca */

.not-found-search {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

.not-found-search figure {
  margin-bottom: 40px;
}

.not-found-search figure img {
  width: 100%;
  height: 100%;
}

.not-found-search h3 {
  font: var(--title-min);
  font-weight: bold;
  padding-bottom: 20px;
  text-align: center;
}

.not-found-search p {
  text-align: center;
}

@media (max-width: 1400px) {
  :root {
    --margin-lateral: 60px;
  }

  .container-max {
    margin: 0 var(--margin-lateral);
  }
}

@media (max-width: 1023px) {
  :root {
    --margin-lateral: 20px;
    --title-max: 600 36px/46.8px var(--articulat);
    --title: 600 24px/36px var(--articulat);
    --title-min: 600 19px/28.5px var(--articulat);
    --body: 400 16px/24px var(--articulat);
    --body-single: 400 16px/24px var(--articulat);
    --detail: 400 12px/21px var(--articulat);
    --item-space-m: 15px;
    --section-padding-top: 80px;
    --section-padding-bottom: 80px;
    --header-height: 132px;
    --footer-height: 72px;
  }

  #wpadminbar {
    position: fixed;
  }

  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }

  .container-max {
    margin: 0 var(--margin-lateral);
  }

  .domino {
    grid-template-columns: repeat(1, 1fr) !important;
  }

  header .header-top {
    padding: 10px 10px 10px 20px;
  }

  header .header-top img {
    width: 103px;
    height: 24px;
  }

  header .header-top ul li:not(.button) {
    display: none;
  }

  header .header-bottom {
    padding: 15px 20px;
    gap: 10px;
  }

  header .header-bottom .open-search-form-button {
    font-size: 0px;
  }

  .container-dropdown-categories-options p {
    display: none;
  }

  .toggle-categories {
    background-color: transparent;
  }

  .toggle-categories::before {
    width: 18px;
    height: 2px;
  }

  .toggle-categories::after {
    width: 2px;
    height: 18px;
  }

  .search-form-header.open {
    width: 100%;
    padding: 0px 20px;
  }

  .search-form-header label {
    width: 100%;
  }

  .search-form-header input {
    width: 100%;
  }

  .search-form-header button {
    flex-shrink: 0px;
  }

  .close-search {
    right: 91px;
  }

  section.first-section {
    padding-top: calc(var(--header-height) + 10px);
    padding-bottom: var(--section-padding-bottom);
  }

  body.paged section.post-list {
    padding-top: calc(var(--header-height) + 10px);
  }

  section.home {
    background-image: none;
  }

  .tag-card {
    padding: 6px 10px;
  }

  .highlighted-post-card {
    border-radius: 0px;
    box-shadow: none;
    padding: 0px;
    gap: 15px;
  }

  .highlighted-post-card figure {
    height: 300px;
  }

  .highlighted-post-card-infos h1 {
    font: var(--title-max);
    padding: var(--item-space-m) 0px var(--item-space-m) 0px;
    font-weight: bold;
  }

  .highlighted-post-card-infos a {
    width: 100%;
    text-align: center;
  }

  .container-title-and-page {
    flex-direction: column;
    padding-bottom: 40px;
  }

  .container-title-and-page:has(.current-page) h1 {
    padding-bottom: 0px !important;
  }

  main:has(.first-section.home) .container-title-and-page {
    padding-bottom: 20px;
  }

  .post-card a {
    display: flex;
    width: 100%;
    gap: 10px;
  }

  .post-card figure {
    flex-shrink: 0;
    padding-top: 0%;
    height: 102px;
    width: 136px;
    border-radius: 5px;
  }

  .post-card .container-post-card-info .tag-card {
    margin: 0px 0px 10px 0px;
  }

  .post-card .container-post-card-info h3 {
    padding-bottom: 3px;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .post-card .container-post-card-info span {
    display: block;
    margin-top: -5px;
  }

  .container-pagination {
    margin-top: 40px;
  }

  .container-pagination figure {
    background-color: var(--primary);
  }

  .container-footer-links div {
    display: none;
  }

  .container-footer-links {
    justify-content: center;
    padding: 25px;
  }

  .container-footer-links img {
    width: 95px;
    height: 22px;
  }

  footer p {
    display: none;
  }

  /* Página interna do post */

  .internal-post {
    padding-bottom: 20px !important;
  }

  .breadcrumb {
    padding-bottom: 20px;
  }

  .breadcrumb p {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    min-width: 0;
  }

  .internal-post-main {
    gap: 20px;
  }

  .internal-post-main figure {
    height: 300px;
    border-radius: 0px;
    width: calc(100% + var(--margin-lateral) + var(--margin-lateral));
    margin-left: calc(var(--margin-lateral) * -1);
  }

  .internal-post-main .internal-post-main-infos p {
    font: var(--title-min);
    font-weight: normal;
  }

  .container-text {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .container-text .content blockquote.wp-block-quote {
    padding: 5px 40px 0px 40px;
  }

  .container-text figure.wp-block-image img {
    height: 190px;
  }

  .container-text figure.wp-block-image figcaption {
    padding-top: 10px;
  }

  .menu-sticky {
    position: static;
  }

  .menu-sticky button.copied::after {
    left: 0;
    right: auto;
    transform: translateX(0);
  }

  .menu-sticky button.copied::before {
    left: 10px;
    right: auto;
    transform: none;
  }

  .menu-sticky ul {
    flex-direction: row;
    gap: 20px;
  }

  .internal-related-content-list h2 {
    display: block !important;
    padding-bottom: 30px;
  }

  .internal-related-content-list .button {
    width: 100%;
    text-align: center;
  }

  .single-container-tags {
    padding-bottom: 40px;
    border-bottom: 2px solid var(--primary);
    padding-top: 20px;
  }

  section.tags:not(:has(.current-page)),
  section.categories:not(:has(.current-page)) {
    background-image: url("../assets/bg/categoria-mobile.svg");
    background-repeat: no-repeat;
    background-position: right 110px;
    background-size: auto;
  }

  .not-found-search figure {
    width: 206px;
    height: 157px;
  }
}

@media (max-width: 767px) {
  .container-pagination {
    justify-content: space-between;
  }

  .container-pagination figure {
    flex-shrink: 0;
  }
}

@media (max-width: 360px) {
  .container-pagination {
    gap: 10px;
  }

  .container-pagination ul {
    gap: 10px;
  }
}
