:root {
  /* Colores principales */
  --first-color: #1a6093;
  --first-color-alt: #144a73;

  --second-color: #5bc0eb; /* azul */
  --second-color-alt: #4cb6e4;

  --third-color: #169873; /* verde */
  --third-color-alt: #0e8f6a;

  --fourth-color: #da2c38; /* rojo */
  --fourth-color-alt: #cc1a26;

  --accent-color: #ffbd00;
  --accent-color-alt: #e0b404;

  /* Neutros */
  --body-bg: #ffffff;
  --body-bg-grey: #f9f9f9;
  --heading-color: #333333;
  --text-color: #252525;
  --text-grey: #555555;
  --text-color-white: #fdf7f7;
  --link-color: #235aff;
  --border-color: #d4d4d4;
  --shadow-color: #bbb;

  --dark-color: #1f2a30;
  --dark-color-alt: #2f3c44;

  /* colores botones */
  --btn-menu-color: var(--first-color);
  --btn-background: var(--first-color);
  --btn-color: var(--text-color-white);
  --go-up-bg: var(--first-color-alt);
  --border-blockquote-color: var(--first-color);

  /* state colors */
  --success-color: #287b28;
  --warning-color: #f39e00;
  --danger-color: #fc002a;

  --color-green-light: #d8f5d0;

  /* tags */
  --tag-background: var(--body-bg-grey);
  --tag-color: var(--text-color);
  --tag-background-hover: var(--first-color);
  --tag-color-hover: var(--text-color-white);

  /* filters for Icons SVG */
  --icon-white: invert(100%) sepia(0%) saturate(2%) hue-rotate(214deg) brightness(118%) contrast(100%);
  --icon-black: invert(12%) sepia(1%) saturate(0%) hue-rotate(339deg) brightness(98%) contrast(93%);
  --icon-green: invert(34%) sepia(92%) saturate(408%) hue-rotate(71deg) brightness(91%) contrast(89%);
  --icon-gold: invert(82%) sepia(26%) saturate(6471%) hue-rotate(359deg) brightness(102%) contrast(105%);
  --icon-red: invert(14%) sepia(98%) saturate(7495%) hue-rotate(346deg) brightness(96%) contrast(105%);
  --icon-brown: invert(9%) sepia(22%) saturate(4839%) hue-rotate(338deg) brightness(93%) contrast(116%);

  --icon-recipe-titles: var(--icon-black);
  --icon-go-up-color: var(--icon-white);

  --bigger-font-size: calc(1.8rem + -0vw);
  --h1-font-size: calc(1.6rem + -0.1vw);
  --h2-font-size: calc(1.55rem + -0.1vw);
  --h3-font-size: calc(1.33rem + -0vw);
  --h4-font-size: calc(1.1rem + -0.032vw);
  --normal-font-size: calc(1rem + -0.032vw);
  --small-font-size: calc(0.95rem + -0vw);
  --smaller-font-size: calc(0.8rem + -0.015vw);
  --heading-line-height: 1.4;
  --body-line-height: 1.5;

  --heading-text-transform: normal;
  --heading-letter-spacing: 0.025rem;
  --body-letter-spacing: 0.012rem;
  --normal-weight: 400;
  --semibold-weight: 500;
  --bold-weight: 700;

  /* ancho contenedores */
  --container-mobile-width: 90%;
  --container-tablet-width: 95%;
  --container-pc-width: 100%;
  --max-width-content: 1100px;
  --max-width-header: 1100px;
  --max-width-footer: 1100px;

  --margin-y: 1.8rem;
  --margin-x: 1.5rem;
  --padding-y: 1.8rem;
  --padding-x: 1.5rem;

  /* tipography */
  --heading-font: "Montserrat", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display", "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji",
    "Segoe UI Symbol";

  --body-font: "Open Sans", ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI Variable Display", "Segoe UI", Helvetica, "Apple Color Emoji", Arial, sans-serif, "Segoe UI Emoji",
    "Segoe UI Symbol";
}

/* Modo oscuro */
body.dark-mode {
  --text-color: #e5e5e5;
  --body-bg: #0f0f0f;
  --link-color: #f39e00;
  --body-bg-grey: var(--body-bg);

  --first-color: var(--body-bg);
  --first-color-alt: var(--body-bg);
  --second-color: var(--body-bg);
  --second-color-alt: var(--body-bg);
  --third-color: var(--text-color);
  --third-color-alt: var(--text-color);
  --fourth-color: var(--body-bg);
  --fourth-color-alt: var(--body-bg);
  --accent-color: var(--body-bg);
  --accent-color-alt: var(--body-bg);

  --success-color: var(--text-color);
  --warning-color: var(--text-color);
  --danger-color: var(--text-color);

  --text-grey: var(--text-color);
  --heading-color: var(--text-color);
  --text-color-white: var(--body-bg);

  --icon-black: var(--icon-white);
  --btn-menu-color: var(--text-color);
  --btn-background: var(--text-color);
  --btn-color: var(--body-bg);

  --go-up-bg: var(--text-color);
  --border-blockquote-color: var(--border-color);

  --tag-background: var(--body-bg-grey);
  --tag-color: var(--text-color);
  --tag-background-hover: var(--text-color);
  --tag-color-hover: var(--body-bg);

  --color-green-light: var(--body-bg);
  --icon-recipe-titles: var(--icon-white);

  --icon-go-up-color: invert(35%) sepia(1%) saturate(362%) hue-rotate(340deg) brightness(91%) contrast(90%);

  .header {
    box-shadow: none;
    border-bottom: 0.0625rem solid #777;
  }

  *::selection {
    background: var(--text-color);
    color: var(--body-bg);
  }
  *::-moz-selection {
    background: var(--text-color);
    color: var(--body-bg);
  }
}

/* fonts*/
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/open-sans-v35-latin-regular.woff2") format("woff2");
}
@font-face {
  font-family: "Open Sans";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/open-sans-v35-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/lato-v24-latin-700.woff2") format("woff2");
}
@font-face {
  font-family: "Lato";
  font-style: normal;
  font-weight: 900;
  font-display: swap;
  src: url("../fonts/lato-v24-latin-900.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url("../fonts/montserrat-v25-latin-600.woff2") format("woff2");
}
@font-face {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/montserrat-v25-latin-700.woff2") format("woff2");
}
@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/ubuntu-v19-latin-500.woff2") format("woff2");
}
@font-face {
  font-family: "Ubuntu";
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url("../fonts/ubuntu-v19-latin-700.woff2") format("woff2");
}
/* roboto-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/roboto-v48-latin-regular.woff2") format("woff2");
}
/* roboto-500 - latin */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/roboto-v48-latin-500.woff2") format("woff2");
}
/* roboto-600 - latin */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/roboto-v48-latin-600.woff2") format("woff2");
}
/* merriweather-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Merriweather";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/merriweather-v32-latin-regular.woff2") format("woff2");
}
/* merriweather-500 - latin */
@font-face {
  font-display: swap;
  font-family: "Merriweather";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/merriweather-v32-latin-500.woff2") format("woff2");
}
/* merriweather-600 - latin */
@font-face {
  font-display: swap;
  font-family: "Merriweather";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/merriweather-v32-latin-600.woff2") format("woff2");
}
/* merriweather-700 - latin */
@font-face {
  font-display: swap;
  font-family: "Merriweather";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/merriweather-v32-latin-700.woff2") format("woff2");
}
/* roboto-slab-500 - latin */
@font-face {
  font-display: swap;
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/roboto-slab-v35-latin-500.woff2") format("woff2");
}
/* roboto-slab-600 - latin */
@font-face {
  font-display: swap;
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 600;
  src: url("../fonts/roboto-slab-v35-latin-600.woff2") format("woff2");
}
/* roboto-slab-700 - latin */
@font-face {
  font-display: swap;
  font-family: "Roboto Slab";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/roboto-slab-v35-latin-700.woff2") format("woff2");
}
/* / fonts */

/* general */
/* reset estilos del navegador */
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline-style: none;
  box-sizing: border-box;
  text-decoration: none;
  word-break: break-word;
  overflow-wrap: break-word;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  font-family: var(--body-font);
}

/* colores al seleccionar texto */
*::selection {
  background: var(--first-color-alt);
  color: var(--text-color-white);
}
*::-moz-selection {
  background: var(--first-color);
  color: var(--text-color-white);
}

img {
  display: block;
  margin: auto;
  padding: 0;
  width: auto;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

button {
  background: inherit;
  cursor: pointer;
}

figcaption {
  margin-top: 0.313rem;
  font-size: var(--small-font-size);
  text-align: center;
  color: var(--first-color-light);
}

code,
math,
pre {
  display: inline-block;
  background-color: #ffd9d9;
  color: var(--text-color);
  font-size: var(--small-font-size);
  padding: 0.25rem 0.5rem;
  border-radius: 0.25rem;
  font-family: monospace;
}

h1,
h2,
h3,
h4,
h1 span {
  font-family: var(--heading-font);
  line-height: var(--heading-line-height);
  text-transform: var(--heading-text-transform);
  letter-spacing: var(--heading-letter-spacing);
  color: var(--heading-color);
  scroll-margin-top: var(--margin-y);
}

h2 strong,
h3 strong,
h4 strong {
  font-family: var(--heading-font);
}

h1 {
  margin: 1.5rem 0 1.5rem;
  font-size: var(--h1-font-size);
}

h2 {
  margin: 1.75rem 0 1rem;
  font-size: var(--h2-font-size);
}

h3 {
  margin: 1.75rem 0 1rem;
  font-size: var(--h3-font-size);
}

h4 {
  margin: 1rem 0 1rem;
  font-size: var(--h4-font-size);
}

body {
  font-size: var(--normal-font-size);
  line-height: var(--body-line-height);
  letter-spacing: var(--body-letter-spacing);
  background-color: var(--body-bg);
  color: var(--text-color);
}

a {
  color: var(--link-color);
}

hr {
  margin-top: var(--margin-y);
  margin-bottom: var(--margin-y);
  height: 0.0625rem;
  background-color: var(--border-color);
}

/* tabla y blockquote */
table {
  width: 100%;
  margin: var(--margin-y) 0;
  border-collapse: collapse;
  font-size: 0.95rem;
  border: 0.0625rem solid var(--border-color);
}
table th,
table td {
  padding: 0.5rem 0.8rem;
  text-align: left;
  color: var(--text-color);
}
table th {
  background-color: var(--body-bg-grey);
  font-family: var(--heading-font);
}
table tr:nth-child(even) {
  background-color: var(--body-bg-grey);
}
table tr:nth-child(odd) {
  background-color: var(--body-bg);
}

blockquote,
.disclaimer-text,
.callout {
  position: relative;
  margin-top: var(--margin-y);
  margin-bottom: var(--margin-y);
  background-color: var(--body-bg-grey);
  color: var(--text-color);
  border: 0.0625rem solid var(--border-color);
  border-radius: 0.3125rem;
  font-size: var(--small-font-size);
}
blockquote {
  padding: 0.25rem 0.25rem 0.25rem 0.75rem;
  font-style: italic;
  border-left: 0.35rem solid var(--border-color);
}
p.callout {
  padding: 1.2rem 1rem;
}
div.callout {
  padding: 0.5rem 1rem;
}
.disclaimer-text {
  padding: 0.5rem 1rem 0.5rem 2.2rem;
}
/* .callout::before, */
.disclaimer-text::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.5rem;
  width: 1.3rem;
  height: 1.3rem;
  background-image: url("/assets/icons/lightbulb.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transform: translateY(-50%);
  filter: var(--icon-gold);
}
/* /tabla y blockquote */

.biggest {
  font-size: var(--h1-font-size);
}
.bigger {
  font-size: var(--h2-font-size);
}
.big {
  font-size: var(--h3-font-size);
}
.normal {
  font-size: var(--normal-font-size);
}
.small {
  font-size: var(--small-font-size);
}
.smaller {
  font-size: var(--smaller-font-size);
}
.post-content p {
  margin: 0.7rem 0;
}

.post-content li,
.post-content li {
  margin: 0.7rem 0;
  margin-left: 1.4rem;
  line-height: 1.4;
}

/* Enlaces personalizados */
.post-content a,
.breadcrumbs a,
.toc a {
  color: var(--link-color);
  text-decoration: none;
  padding-bottom: 0.13rem;
  background-image: linear-gradient(currentColor, currentColor);
  background-repeat: no-repeat;
  background-size: 0% 0.1rem;
  background-position: 50% 100%;
  opacity: 1;
  transition: background-size 0.35s ease, opacity 0.35s ease, color 0.35s ease;
}
.post-content a:hover,
.breadcrumbs a:hover,
.toc a:hover {
  background-size: 100% 0.1rem;
  opacity: 1;
  color: var(--link-color);
}
/* /general */

/* general colors */
.background-link {
  background-color: var(--first-color);
}
.background-green {
  background-color: var(--success-color);
}
.background-yellow {
  background-color: var(--warning-color);
}
.background-red {
  background-color: var(--danger-color);
}
.color-link {
  color: var(--link-color);
}
.color-green {
  color: var(--success-color);
}
.color-orange {
  color: var(--warning-color);
}
.color-red {
  color: var(--danger-color);
}
/* /general colors */

/* botones */
.btn {
  width: max-content;
  padding: 0.5rem 1rem;
  display: flex;
  justify-content: center;
  border-radius: 0.25rem;
  cursor: pointer;
  font-size: var(--smaller-font-size);
  background-color: var(--btn-background);
  color: var(--btn-color);
  transition: opacity 0.2s linear, color 0.2s linear;
}
.btn:hover {
  opacity: 0.95;
}
.btn--success {
  background-color: var(--success-color);
  color: var(--text-color-white);
}
.btn--warning {
  background-color: var(--warning-color);
  color: var(--text-color-white);
}
.btn--danger {
  background-color: var(--danger-color);
  color: var(--text-color-white);
}
.btn__icon {
  width: 0.75rem;
  margin-right: 0.25rem;
  filter: var(--filter-for-white-color);
}
.btn--full {
  width: 100%;
  margin: 0 auto;
}
.btn--sidebar {
  margin-top: var(--margin-y);
}
.btn--reply {
  margin-top: 0.8rem;
}
/* / botones */

/* top bar */
.top-bar {
  display: block;
  background-color: var(--first-color);
  color: var(--text-color-white);
  border-bottom: 0.0625rem solid #777;
}
.top-bar__container {
  width: var(--container-mobile-width);
  height: 38px;
  margin: 0 auto;
  max-width: var(--max-width-header);
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.top-bar__social {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  list-style: none;
}
.top-bar__social li {
  margin: 0;
}
.top-bar__social-icon {
  width: 1.5rem;
}
.top-bar__contact {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  list-style: none;
}
.top-bar__contact li {
  margin: 0;
}
.top-bar__contact a {
  text-decoration: none;
}
.top-bar__contact-item {
  display: flex;
  flex-flow: row nowrap;
  align-items: center;
  gap: 0.3rem;
  font-size: var(--small-font-size);
  color: var(--text-color-white);
  transition: filter 0.2s linear;
}
.top-bar__contact-icon-phone {
  width: 1.125rem;
}
.top-bar__contact-icon-mail {
  width: 1.125rem;
}
.top-bar__contact-icon-phone,
.top-bar__contact-icon-mail {
  filter: var(--icon-white);
}
.top-bar-contact-text {
  display: none;
}
@media screen and (min-width: 768px) {
  .top-bar {
    display: flex;
  }
  .top-bar__container {
    width: var(--container-tablet-width);
  }
  .top-bar-contact-text {
    display: block;
  }
  .top-bar__contact-icon-phone {
    width: 0.95rem;
  }
  .top-bar__contact-icon-mail {
    width: 0.95rem;
  }
}
@media screen and (min-width: 1080px) {
  .top-bar__container {
    width: var(--container-pc-width);
  }
}
/* /top bar */

/* header*/
.header {
  display: flex;
  align-items: center;
  position: relative;
  box-shadow: 0.125rem 0.35rem 0.625rem -0.4375rem var(--border-color);
  z-index: 9999;
  background-color: var(--body-bg);
  color: var(--link-color);
}
.header__container {
  position: relative;
  width: var(--container-mobile-width);
  max-width: var(--max-width-header);
  margin: auto;
}
.header__bar {
  position: relative;
  display: flex;
  flex-flow: row nowrap;
  justify-content: space-between;
  align-items: center;
  align-content: center;
}
.header__logo {
  width: 220px;
  padding: 0.85rem 0;
  margin-left: -0.3125rem;
}
@media screen and (min-width: 768px) {
  .header__container {
    width: var(--container-tablet-width);
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
  }
  .header__logo {
    width: 280px;
    padding: 0.25rem 0;
  }
}
@media screen and (min-width: 1080px) {
  .header {
    position: relative;
    top: 0;
  }
  .header__logo {
    width: 190px;
    padding: 0.5rem 0;
  }
  .header__container {
    width: 100%;
  }
}
/* /header */

/* header menu */
.header__nav {
  background-color: inherit;
  color: inherit;
}
.header__menu {
  position: relative;
  list-style-type: none;
  visibility: hidden;
  height: 0;
  opacity: 0;
  line-height: 0;
  font-size: 0;
  transition: all 0.4s linear;
}
.header__menu-visible {
  visibility: visible;
  height: 100%;
  opacity: 1;
  line-height: 4;
  font-size: var(--normal-font-size);
}
.header__menu-item {
  display: block;
  margin: 0;
}
.header__menu-link {
  display: flex;
  flex-direction: row;
  padding: 0;
  border-radius: 0.1rem;
  border-top: solid 0.033rem var(--border-color);
  font-family: var(--heading-font);
  font-weight: var(--bold-weight);
  color: var(--heading-color);
  text-transform: uppercase;
  letter-spacing: var(--heading-letter-spacing);
  transition: color 0.3s linear;
  text-decoration: none;
}
.header__menu-link:hover {
  color: var(--link-color);
  text-decoration: none;
}
.header__menu-current {
  color: var(--link-color);
}
@media screen and (min-width: 768px) {
  .header__menu {
    display: flex;
    visibility: visible;
    line-height: 1.5;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    height: 100%;
    opacity: 1;
  }
  .header__menu-item {
    border-top: none;
  }
  .header__menu-link {
    margin: 0 0.625rem;
    padding: 1.56rem 0rem;
    border-top: 0;
    border-radius: 0rem;
    font-size: var(--smaller-font-size);
    line-height: 1.3;
  }
  .header__menu-item:last-child {
    padding-right: 0;
  }
  /* efectos links menú */
  .header__menu-link {
    position: relative;
    display: block;
    text-decoration: none;
    transition: color 0.25s linear;
  }
  .header__menu-link:hover {
    color: var(--link-color);
  }
  .header__menu-link::before {
    content: "";
    position: absolute;
    bottom: 1.3rem;
    left: 0;
    width: 100%;
    height: 0.1rem; /* custom */
    background: var(--link-color); /* custom */
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease-in-out;
    z-index: 1;
  }
  .header__menu-link:hover::before {
    transform: scaleX(1);
  }
  /* animación */
  .header__menu[data-animation="center"] .header__menu-link::before {
    transform-origin: center;
  }
  /* /efectos link menú */
}
@media screen and (min-width: 1080px) {
  .header__menu {
    padding: 0.75rem 0;
    line-height: 1.4; /*aumenta la altura del header */
  }
  .header__menu-link {
    margin: 0 0.8rem;
    padding: 1rem 0rem;
    font-size: var(--smaller-font-size);
  }
  .header__menu-link:hover {
    margin: 0 0.8rem;
    padding: 1rem 0rem;
  }
  .header__menu-link::before {
    bottom: 0.8rem;
  }
  .header__menu-current {
    margin: 0 0.8rem;
    padding: 1rem 0rem;
  }
}
/* /header menu*/

/* menu button */
.menu-btn {
  position: relative;
  width: 2rem;
  height: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 0.35rem;
  cursor: pointer;
}
.menu-btn__item {
  position: relative;
  width: 1.75rem;
  height: 0.1875rem;
  background-color: var(--btn-menu-color);
  transition: transform 0.35s ease-out;
  border-radius: 0.1rem;
}
.menuBtnX {
  position: absolute;
  top: 0.8rem;
  transform: rotate(40deg);
}
.menuBtnY {
  width: 1.2rem;
  display: none;
}
.menuBtnZ {
  position: absolute;
  top: 0.8rem;
  transform: rotate(-40deg);
}
@media screen and (min-width: 768px) {
  .menu-btn {
    display: none;
  }
}
/* /menu button */

/* buscador small */
.search {
  margin-top: 0;
  padding: 0.6rem 0 0.6rem;
  border-top: 0.0625rem solid var(--border-color);
  color: var(--text-color);
}
.search__container {
  display: flex;
  flex-direction: row;
}
.search__input {
  width: 100%;
  padding: 0.625rem 0rem;
  font-size: var(--normal-font-size);
  background-color: var(--body-bg);
  color: var(--text-color);
}
.search__input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 50px var(--body-bg) inset;
  -webkit-text-fill-color: var(--text-color);
  caret-color: var(--text-color);
}

.search__input:-webkit-autofill:hover,
.search__input-webkit-autofill:focus {
  -webkit-box-shadow: 0 0 0 50px var(--body-bg) inset;
  -webkit-text-fill-color: var(--text-color);
}
.search__btn {
  padding: 1rem;
}
.search__icon-btn {
  width: 1.3rem;
  filter: var(--icon-black);
}
.search-full {
  display: none;
}
.search__btn-menu {
  display: none;
}
.search__btn-menu-container {
  display: none;
}
/* /buscador small */

/* buscador full */
@media screen and (min-width: 768px) {
  .search {
    position: absolute;
    top: -7rem;
    right: 1.25rem;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.2s linear, top 0.35s ease-in-out;
    border: 0.03rem solid var(--border-color);
    box-shadow: 0 0.0625rem 0.1875rem rgba(0, 0, 0, 0.05), 0 0.25rem 0.375rem rgba(0, 0, 0, 0.1), 0 0.375rem 0.375rem rgba(0, 0, 0, 0.1);
    background-color: var(--body-bg);
    z-index: -9999999;
    display: none;
  }
  /* clase para JS */
  .search-visible {
    top: 108%;
    opacity: 1;
    z-index: 0;
  }
  .search__container {
    width: 25rem;
    height: 2.5rem;
    display: flex;
    align-items: center;
    border-bottom: solid 0.033rem var(--border-color);
  }
  .search__input {
    padding: 0.25rem;
    font-size: var(--small-font-size);
  }
  .search__btn {
    width: 7rem;
    padding: 0.72rem;
    margin-right: -1rem;
    display: flex;
    align-items: center;
    font-size: var(--small-font-size);
    font-weight: var(--bold-weight);
    color: var(--text-color);
  }
  .search__icon-btn {
    width: 0.7rem;
    height: 0.7rem;
  }
  .search__btn-menu-container {
    display: block;
    padding: 0.75rem 0 0.75rem 0.5rem;
  }
  .search__btn-menu {
    display: block;
    cursor: pointer;
    width: 1.1rem;
    height: 1.1rem;
    filter: var(--icon-black);
  }
  .search-full {
    display: block;
  }
}
/* /buscador full */

/* estructura para el contenido de páginas, categorías y posts */
.page {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  gap: 1.5rem;
}
.content {
  position: relative;
}
.sidebar {
  position: relative;
}
.sidebar-container {
  position: relative;
  width: var(--container-mobile-width);
  margin: auto;
}
.container-content {
  position: relative;
  width: var(--container-mobile-width);
  margin: auto;
}
.sidebar__title {
  margin: var(--margin-y) 0 0rem;
  font-size: var(--small-font-size);
  text-transform: uppercase;
}
.ads,
.adsbygoogle {
  position: relative;
  width: auto;
  height: auto;
  margin: 0 auto;
  overflow: hidden;
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
  text-align: center;
  background-color: var(--body-bg-grey);
}
@media screen and (min-width: 768px) {
  .page {
    grid-template-columns: 62% 38%;
    width: var(--container-tablet-width);
    max-width: var(--max-width-content);
    margin: auto;
  }
  .sidebar {
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: flex;
    display: block;
    position: sticky;
    align-self: start;
    top: 0rem;
  }
  .container-content {
    width: 100%;
  }
  .ads,
  .adsbygoogle {
    width: 100%;
    overflow: hidden;
  }
  .sidebar .ads,
  .sidebar .adsbygoogle {
    margin-top: 0.75rem;
  }
}
/* estructura para el contenido de páginas, categorías y posts */

/* /container */

/* breadcrumbs */
.breadcrumbs {
  position: relative;
  width: var(--container-mobile-width);
  margin: auto;
  margin-top: 1.5rem;
  margin-bottom: -0.5rem;
}
.breadcrumbs-list {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
}
.breadcrumbs-item {
  font-size: var(--smaller-font-size);
  color: var(--text-color);
  margin: 0;
}
.breadcrumbs__row {
  font-size: var(--smaller-font-size);
  margin: 0 0.25rem;
}
.breadcrumbs a {
  text-decoration: none;
  font-size: var(--smaller-font-size);
}
.breadcrumbs a:hover {
  text-decoration: none;
}
/* /breadcrumbs */

/* paginador */
.pager {
  margin-top: var(--margin-y);
  margin-bottom: var(--margin-y);
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.pager__item {
  width: 1.75rem;
  height: 1.75rem;
  margin: 0.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
}
.pager__link {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 0.0625rem solid var(--btn-background);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  background-color: var(--btn-color);
  color: var(--btn-background);
  transition: opacity 0.25s linear, color 0.2s linear;
  text-decoration: none;
}
.pager__link:hover {
  border: none;
  background: var(--btn-background);
  color: var(--btn-color);
  opacity: 0.95;
  text-decoration: none;
}
.pager__link-active {
  border: none;
  background: var(--btn-background);
  color: var(--btn-color);
}
.pager__row {
  font-size: 1rem;
}
/* /paginador */

/* TOC */
.toc {
  /* no utilizar display-inline */
  display: block;
  margin-top: var(--margin-y);
  margin-bottom: var(--margin-y);
  border-radius: 0.1875rem;
  min-height: 3rem;
  background-color: var(--body-bg);
  border: 0.0625rem solid var(--border-color);
  background-color: var(--body-bg-grey);
}
.toc-title {
  margin: 0;
  padding: 0 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: var(--heading-font);
  font-size: var(--smaller-font-size);
  font-weight: var(--bold-weight);
  line-height: 3rem;
  color: var(--heading-color);
  cursor: pointer;
  text-transform: uppercase;
}
.toc-icon {
  width: 0.9rem;
  filter: var(--icon-black);
  transition: transform 0.3s linear;
}
.toc-list {
  margin-top: -0.25rem;
  padding-left: 0.5rem;
}
.active-icon .toc-icon {
  transform: rotate(180deg);
}
.toc .toc-item {
  margin-top: -0.9rem;
  visibility: hidden;
  opacity: 0;
  line-height: 0;
  transition: opacity 0.35s ease-out, line-height 0.35s ease-out;
}
.toc .toc-item a {
  font-size: var(--small-font-size);
  color: var(--link-color);
}
.active-toc .toc-item {
  margin-top: 0.5rem;
  list-style-type: square;
  opacity: 1;
  visibility: visible;
  line-height: 1.4;
}
.active-toc .toc-item:last-child {
  padding-bottom: 0.75rem;
}
.toc .toc-item_L1 {
  margin-left: 0.75rem;
}
.toc .toc-item_L2 {
  margin-left: 1.5rem;
}
.toc .toc-item_L3 {
  margin-left: 2.25rem;
}
.toc .toc-item_L4 {
  margin-left: 3rem;
}
/* /TOC */

/* info recipe */
.info-recipe {
  position: relative;
  margin-top: var(--margin-y);
  margin-bottom: var(--margin-y);
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 1.5rem;
  font-size: var(--normal-font-size);
}
.info-recipe__item {
  padding: 1rem 0.5rem;
  border-radius: 0.25rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 0.625rem 0 var(--shadow-color);
}
.info-recipe__item-row {
  display: flex;
  gap: 0.25rem;
}
.info-recipe__txt {
  font-size: var(--normal-font-size);
}
.info-recipe__icon {
  width: 1.2rem;
  height: 1.2rem;
}
@media screen and (min-width: 350px) {
  .info-recipe {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) {
  .info-recipe {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: repeat(1, 1fr);
  }
}
/* /info recipe */

/* ingredientes, preparación y tips */
.ingredients {
  margin-left: -0.8rem;
  list-style-type: none;
}
.ingredients li {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.ingredients__checkbox {
  position: relative;
  left: 0;
  top: 0.15rem;
  width: 1.1rem;
  height: 1.1rem;
  margin-right: 0.5rem;
}
.ingredients__line-through {
  text-decoration: line-through;
  color: gray;
  list-style-type: none;
  transition: color 0.2s ease-in, text-decoration 0.2s ease-in;
}
.steps {
  counter-reset: li;
  list-style-type: none;
  list-style-type: decimal;
  list-style-position: inside;
}
.steps li {
  position: relative;
  display: block;
  text-decoration: none;
  margin-top: 0rem;
  margin-left: 2.2rem;
  margin-bottom: 1rem;
}
.steps li:before {
  display: flex;
  justify-content: center;
  align-items: center;
  content: counter(li);
  counter-increment: li;
  position: absolute;
  top: 0.25rem;
  left: -2.2rem;
  background-color: var(--body-bg-grey);
  color: var(--text-color);
  border: 0.0625rem solid var(--border-color);
  height: 1.6rem;
  width: 1.6rem;
  text-align: center;
  font-size: var(--small-font-size);
  font-weight: 600;
  border-radius: 0.1875rem;
}
.tips-list {
  margin-left: 0.75rem;
  list-style-type: square;
}
.tips-list li {
  margin-bottom: 0.5rem;
}
.ingredients li,
.ingredients li input[type="checkbox"] {
  cursor: default;
}

/* icons sub titulos recetas */
.icon-ingredients {
  position: relative;
  padding-left: 1.9rem;
}
.icon-ingredients::before {
  width: 1.5rem;
  height: 1.5rem;
  background: url("../icons/ingredients.svg") no-repeat center center;
}
.icon-utensils {
  position: relative;
  padding-left: 1.6rem;
}
.icon-utensils::before {
  width: 1.5rem;
  height: 1.5rem;
  background: url("../icons/utensils.svg") no-repeat center center;
}
.icon-steps {
  position: relative;
  padding-left: 1.9rem;
}
.icon-steps::before {
  width: 1.5rem;
  height: 1.5rem;
  background: url("../icons/steps.svg") no-repeat center center;
}
.icon-tips {
  position: relative;
  padding-left: 1.9rem;
}
.icon-tips::before {
  width: 1.6rem;
  height: 1.6rem;
  background: url("../icons/tips.svg") no-repeat center center;
}
.icon-server {
  position: relative;
  padding-left: 1.8rem;
}
.icon-server::before {
  width: 1.5rem;
  height: 1.5rem;
  background: url("../icons/server.svg") no-repeat center center;
}
.icon-benefits {
  position: relative;
  padding-left: 2.1rem;
}
.icon-benefits::before {
  width: 1.8rem;
  height: 1.8rem;
  background: url("../icons/benefits.svg") no-repeat center center;
}
.icon-origin {
  position: relative;
  padding-left: 1.6rem;
}
.icon-origin::before {
  width: 1.4rem;
  height: 1.4rem;
  background: url("../icons/recipe-origin.svg") no-repeat center center;
}
.icon-faqs {
  position: relative;
  padding-left: 1.8rem;
}
.icon-faqs::before {
  width: 1.5rem;
  height: 1.5rem;
  background: url("../icons/faqs.svg") no-repeat center center;
}
.icon-info {
  position: relative;
  padding-left: 1.8rem;
}
.icon-info::before {
  width: 1.5rem;
  height: 1.5rem;
  background: url("../icons/info-recipe.svg") no-repeat center center;
}
.icon-ingredients::before,
.icon-utensils::before,
.icon-steps::before,
.icon-tips::before,
.icon-server::before,
.icon-benefits::before,
.icon-origin::before,
.icon-faqs::before,
.icon-info::before {
  content: "";
  position: absolute;
  transform: translateY(5%);
  background-size: cover;
  filter: var(--icon-recipe-titles);
  left: 0rem;
  top: 0.12rem;
}
/* / ingredientes, preparación y tips */

/* utilizado para mostrar rating stars y share */
.content-row {
  margin-top: var(--margin-y);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-content: flex-start;
  gap: 1.5rem;
}
@media screen and (min-width: 600px) {
  .content-row {
    flex-direction: row;
  }
}

/* stars rating */
.rating-stars {
  position: relative;
}
.rating-stars__container {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.rating-stars__title {
  margin: 0;
  margin-bottom: 0.1rem;
  font-size: var(--smaller-font-size);
  text-transform: uppercase;
  line-height: var(--heading-line-height);
  color: var(--heading-color);
}
.rating-stars__icons {
  display: flex;
  gap: 0.3rem;
}
.rating-stars__icon {
  width: 1.2rem;
  cursor: pointer;
  filter: var(--icon-gold);
}
.rating-stars__count,
.rating-stars__message {
  margin: 0;
  font-size: var(--small-font-size);
  line-height: 1.3;
}
.rating-stars__message {
  color: var(--success-color);
}
/* /stars rating */

/* botones de compartir */
.share {
  position: relative;
}
.share__container {
  position: relative;
}
.share__title {
  margin-top: 0;
  margin-bottom: -1rem;
  font-size: var(--smaller-font-size);
  text-transform: uppercase;
  line-height: var(--heading-line-height);
}
.share__buttons {
  margin-top: 1.5rem;
  display: flex;
  gap: 0.3rem;
  list-style-type: none;
}
.share__item {
  margin: 0;
  border-radius: 0.1875rem;
  transition: opacity 0.2s linear;
}
.share__item:hover {
  opacity: 0.88;
}
.share__button {
  padding: 0.5rem;
}
.share__icon {
  width: 1.3rem;
  height: 1.3rem;
  filter: var(--icon-white);
}
.fb {
  background-color: #1877f2;
}
.x {
  background-color: #353535;
}
.tg {
  background-color: #2aabee;
}
.wa {
  background-color: #1faf38;
}
.fm {
  background-color: #00b2ff;
  display: block;
}
.email {
  background-color: #505050;
}
.print {
  background-color: #4169e1;
}
@media screen and (min-width: 768px) {
  .fm {
    display: none;
  }
}
/* /botones de compartir */

/* caja del autor */
.author-box {
  margin-top: var(--margin-y);
  padding: 1.25rem;
  border: 0.0625rem solid var(--border-color);
  border-radius: 0.25rem;
  background-color: var(--body-bg-grey);
}
.author-box__container {
  display: flex;
  flex-direction: column;
  text-align: center;
  gap: 1rem;
}
.author-box__img {
  width: 6rem;
}
.author-box__text {
  font-size: var(--small-font-size);
  color: var(--text-color);
}
.author-box__name {
  margin-top: 0rem;
  margin-bottom: -0.15rem;
  font-size: var(--normal-font-size);
}
.author-box__rrss {
  margin-top: 0.7rem;
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 1rem;
}
.author-box__rrss-icon {
  width: 1.3125rem;
}
@media screen and (min-width: 768px) {
  .author-box__container {
    display: grid;
    grid-template-columns: 15% 75%;
    text-align: left;
  }
  .author-box__rrss {
    justify-content: flex-start;
  }
}
/* /caja del autor */

/* cards */
.cards {
  position: relative;
  margin-top: var(--margin-y);
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(auto);
  gap: var(--margin-x);
}
.card__item {
  min-width: 3rem;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}
.card__thumbnail {
  position: relative;
}
.card__img {
  filter: brightness(0.9);
  transition: filter 0.35s linear;
}
.card__text {
  display: flex;
  flex-direction: column;
  justify-content: center; /* Alinea el texto con la imagen en la card horizontal */
  gap: 0.25rem;
}
.card__title {
  margin: 0;
  font-size: var(--normal-font-size);
  font-family: var(--heading-font);
  font-weight: var(--semibold-weight);
  color: var(--heading-color);
  letter-spacing: var(--heading-letter-spacing);
  line-height: 1.3;
  transition: color 0.2s linear;
}
.card__description {
  margin: 0;
  display: none;
  font-size: var(--smaller-font-size);
  color: var(--text-color);
}
.card__date,
.card__update {
  display: flex;
  flex-wrap: nowrap;
  align-items: center; /* Pone en línea el icono y el texto */
  gap: 0.25rem;
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
  font-size: var(--smaller-font-size);
  line-height: 1;
  color: var(--text-grey);
}
.card__date-icon,
.card__update-icon {
  filter: var(--icon-black);
}
.card__date-icon {
  width: 0.65rem;
  height: 0.65rem;
  margin-top: -0.25rem;
}
.card__update-icon {
  width: 0.72rem;
  height: 0.72rem;
  margin-top: -0.15rem;
}
.card_category,
.card_featured,
.card_views {
  vertical-align: middle;
  position: absolute;
  color: var(--text-color-white);
  padding: 0.3rem;
  border-radius: 0.15rem;
  font-size: var(--smaller-font-size);
  line-height: 1;
  transition: background 0.25s linear;
}
.card_category {
  background-color: var(--first-color);
  color: #fdf7f7;
}
.card_featured {
  background-color: var(--accent-color);
  color: var(--text-color);
}
.card_views {
  background-color: var(--fourth-color);
  color: #fdf7f7;
}
.card__img:hover {
  filter: brightness(1);
}
.card__item:hover .card__title {
  color: var(--link-color);
}
.card_category:hover {
  background-color: var(--first-color-alt);
}
@media screen and (min-width: 350px) {
  .cards {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(auto);
  }
}
@media screen and (min-width: 768px) {
  .cards {
    width: 100%;
    margin: auto;
    margin-top: var(--margin-y);
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(auto);
  }
}
/* Modificdores */
.cards--one-column {
  grid-template-columns: 1fr;
  margin-top: 1.2rem;
}
.card--horizontal {
  position: relative;
  display: grid;
  grid-template-columns: 40% 60%;
  gap: 0.5rem;
}
.card__text-left {
  align-items: flex-start;
  text-align: left;
}
/* / cards */

/* post relacionados */
.related-posts {
  margin-top: var(--margin-y);
}
.related-posts__title {
  position: relative;
  font-size: var(--small-font-size);
  font-family: var(--heading-font);
  text-transform: uppercase;
  letter-spacing: var(--heading-letter-spacing);
  color: var(--heading-color);
}
/* /post relacionados */

/* envío de comentarios */
.submit-comments {
  margin-top: var(--margin-y);
  color: var(--heading-color);
}
.submit-comments__title {
  font-size: var(--small-font-size);
  text-transform: uppercase;
  color: var(--heading-color);
}
.submit-comments__form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1rem;
}
/* / envío de comentarios */

/* lista de comentarios */
.comments {
  margin-top: var(--margin-y);
}
.comments-list {
  margin-top: var(--margin-y);
}
.comments-list__title {
  font-size: var(--small-font-size);
  text-transform: uppercase;
  color: var(--heading-color);
  line-height: 1.6;
}
.comment__item {
  margin-top: var(--margin-y);
  margin: 0;
  padding-bottom: var(--padding-y);
  list-style-type: none;
}
.comment__reply {
  padding-left: 3rem;
}
.comment__user {
  padding-top: var(--padding-y);
  display: flex;
  gap: 0.75rem;
  border-top: 0.0625rem solid var(--border-color);
}
.comment__user-name {
  margin: 0;
  font-size: var(--small-font-size);
  color: var(--heading-color);
}
.comment_user_img {
  width: 42px;
}
.comment__date {
  margin: 0;
  margin-top: 0.25rem;
  font-size: var(--small-font-size);
  color: var(--text-grey);
}
.comment__user-comment {
  margin-top: 1rem;
  padding-bottom: 0.5rem;
  font-size: var(--small-font-size);
  color: var(--text-color);
}
/* /caja de comentarios */

/* post content */
.post__header {
  position: relative;
  width: var(--container-mobile-width);
  margin: auto;
  margin-top: var(--margin-y);
  margin-bottom: var(--margin-y);
}
.post__header_title {
  font-size: var(--h1-font-size);
}
.post__img {
  position: relative;
  width: var(--container-mobile-width);
  margin: auto;
  margin-top: var(--margin-y);
}
.post__views {
  position: absolute;
  padding: 0.25rem 0.5rem;
  border-radius: 0.15rem;
  font-size: var(--small-font-size);
  top: 0.5rem;
  left: -0.5rem;
  background-color: var(--fourth-color);
  color: #fdf7f7;
}
.post__update {
  display: flex;
  align-items: center;
  gap: 0.2rem;
  font-size: var(--small-font-size);
  margin-top: var(--margin-y);
}
.post__update-icon {
  margin-top: -0.1rem;
  width: 0.8rem;
  height: 0.8rem;
  filter: var(--icon-black);
}
@media screen and (min-width: 768px) {
  .post__header {
    width: 100%;
  }
  .post__img {
    width: 100%;
  }
  .breadcrumbs {
    width: 100%;
  }
}

/* página de etiquetas */
.tags-list {
  padding: 0;
}
.tags-cloud {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
  gap: 0.5rem;
}

/* etiquetas en el post */
.post-tags {
  margin-top: var(--margin-y);
  font-size: var(--small-font-size);
}
.post-tags-title {
  font-size: var(--smaller-font-size);
  text-transform: uppercase;
}
.post-tags-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  list-style: none;
}
.post-tags-item {
  list-style: none;
}

.tag-link {
  display: inline-block;
  background: var(--tag-background);
  color: var(--tag-color);
  border: 0.0625rem solid var(--border-color);
  border-radius: 1.25rem;
  padding: 0.375rem 0.75rem;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.2s ease;
}
.tag-link:hover {
  background: var(--tag-background-hover);
  color: var(--tag-color-hover);
}
.tag-link-recipe {
  background: var(--color-green-light);
  color: var(--success-color);
}
.tag-link-recipe:hover {
  background: var(--success-color);
  color: var(--color-green-light);
}
/* /post content */

/* para páginas con formularios, contacto, login, registrarse, etc */
.simple-page {
  margin-top: -0.15rem;
  margin-bottom: -1.5rem;
  background-color: var(--body-bg-grey);
}
.simple-page__container {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  height: 100vh;
}
@media screen and (min-width: 700px) {
  .simple-page__container {
    align-items: center;
  }
}
/* /para páginas con formularios, contacto, login, registrarse, etc */

/* formularios, incluído el de comentarios */
.form {
  position: relative;
  width: var(--container-mobile-width);
  max-width: 300px;
  padding: var(--padding-y);
  margin-top: 3.125rem;
  border-radius: 0.3125rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  font-size: var(--small-font-size);
  background-color: var(--body-bg);
  color: var(--text-color);
}
.form__logo {
  width: 160px;
}
.form__title {
  margin: 0;
  font-size: var(--small-font-size);
  text-transform: uppercase;
  text-align: center;
}
.form__item {
  margin: 0;
}
.form__item--center {
  text-align: center;
}
.form__label {
  font-weight: var(--semibold-weight);
  color: var(--heading-color);
}
.form__text {
  margin: 0;
  line-height: 1.4;
  font-size: var(--small-font-size);
}
.form__input {
  margin: 0;
  width: 100%;
  border: 0.0625rem solid var(--border-color);
  padding: 0.25rem 0.5rem;
  font-size: var(--small-font-size);
  background-color: var(--body-bg);
  color: var(--heading-color);
}
.form__input:focus {
  border-color: var(--link-color);
}
.form__row {
  display: grid;
  grid-template-columns: 1fr, 1fr;
  grid-template-rows: 1fr;
  grid-template-areas: "area-1 area-2";
  gap: 0.8rem;
}
@media screen and (min-width: 700px) {
  .form {
    margin-top: 0;
  }
}
.recaptcha-container {
  transform: scale(0.83);
  transform-origin: 0 0;
}
.recaptcha-container iframe {
  width: 100% !important;
}
/* /formularios, incluído el de comentarios */

/* cookies */
.cookies {
  padding: 1.5rem 0;
  visibility: visible;
  position: fixed;
  bottom: 0;
  right: 0;
  left: 0;
  font-size: var(--small-font-size);
  background-color: rgb(0, 0, 0, 0.77);
  color: #f9f9f9;
  z-index: 9999;
}
.cookies-hide {
  visibility: hidden;
}
.cookies__content {
  width: var(--container-mobile-width);
  max-width: var(--max-width-content);
  margin: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 1rem;
}
.cookies__button {
  width: 6.25rem;
  padding: 0.5rem;
  border-radius: 0.1875rem;
  display: inline;
  font-weight: var(--bold-weight);
  background-color: var(--body-bg);
  color: var(--text-color);
}
.cookies__link {
  color: #fdf7f7;
  text-decoration: underline;
}
@media screen and (min-width: 768px) {
  .cookies {
    padding: 1rem 0;
  }
  .cookies__content {
    flex-direction: row;
  }
}
/* /cookies */

/* go up button */
.go-up {
  position: fixed;
  bottom: 1rem;
  right: 1rem;
  padding: 0.8rem;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: var(--go-up-bg);
  transition: opacity 0.25s linear;
  cursor: pointer;
  z-index: 99;
}
.go-up__icon {
  filter: var(--icon-go-up-color);
  width: 0.875rem;
  height: 0.875rem;
}
.go-up.hidden {
  opacity: 0;
  pointer-events: none;
}
.go-up.visible {
  opacity: 1;
  pointer-events: all;
}
.go-up:hover {
  opacity: 0.9;
}
/* /go up button */

/* mensajes del sistema */
.system-messages {
  position: relative;
  padding-top: 0.75rem;
  line-height: 1.2;
  font-size: var(--small-font-size);
}
/* /mensajes del sistema */

/* footer */
.footer {
  margin-top: var(--margin-y);
  border-top: 0.0625rem solid #777;
  background-color: var(--first-color);
  color: #fdf7f7;
}
.footer__container {
  width: var(--container-mobile-width);
  max-width: var(--max-width-footer);
  margin: auto;
  background-color: inherit;
}
.footer__list {
  display: flex;
  padding: 1.5rem 0;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  list-style-type: none;
  font-size: var(--smaller-font-size);
  line-height: var(--body-line-height);
  gap: 0.5rem;
}
.footer__item {
  margin: 0 0rem;
}
.footer__sep {
  margin: 0 0rem;
}
.footer__item:first-child {
  padding-left: 0;
}
.footer__item:last-child {
  padding-right: 0;
}
.footer__link {
  color: inherit;
  text-decoration: none;
  font-size: var(--smaller-font-size);
  transition: color 0.25s linear;
}
.footer__link-site {
  margin: 1rem 0rem;
  color: inherit;
  text-decoration: none;
  font-size: var(--smaller-font-size);
}
.footer__link:visited {
  color: inherit;
}
.footer__list-sites {
  display: flex;
  padding: 0.75rem 0;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  list-style-type: none;
  font-size: var(--smaller-font-size);
  line-height: var(--body-line-height);
  background-color: #282828;
  color: var(--text-color-white);
  gap: 0.5rem;
}
.footer__copy-bar {
  text-align: center;
  font-size: var(--smaller-font-size);
  padding: 0.5rem 1rem 1rem 1rem;
}
@media screen and (min-width: 768px) {
  .footer__container {
    width: var(--container-tablet-width);
  }
}
@media screen and (min-width: 1080px) {
  .footer__container {
    width: 100%;
  }
}
/* /footer */

/* modo oscuro */
#dark-mode-toggle {
  background-color: transparent;
  border: none;
  width: 1.25rem;
  cursor: pointer;
}
#sun-icon,
#moon-icon {
  transition: opacity 0.25s linear;
  filter: var(--icon-white);
}
body.dark-mode #sun-icon {
  display: inline;
  filter: var(--icon-gold);
}
body.dark-mode #moon-icon {
  display: none;
}
/* /modo oscuro */

/* Fade + blur-up */
/* No aplicar estilos directamente a la clase lazy, loaded o blur-up */
.lazy img,
.img-sec,
.lazy-bg {
  opacity: 0;
  transition: opacity 0.35s ease, filter 0.45s ease;
  background-color: var(--body-bg-grey); /* color neutro por defecto */
  background-size: cover;
  background-position: center;
}
/* cuando carga, aparece suave */
.loaded img,
.img-sec,
.lazy-bg.loaded {
  opacity: 1;
}
/* blur-up: difumina hasta que se cargue */
.blur-up img,
.author-box__img,
.blur-up.img-sec,
.lazy-bg.blur-up {
  filter: blur(10px);
}
.loaded.blur-up,
.loaded.blur-up img,
.author-box__img,
.loaded.blur-up.img-sec,
.lazy-bg.blur-up.loaded {
  filter: blur(0);
}

/* en desuso aparentemente */
.clearfix::after {
  content: "";
  clear: both;
  display: table;
}
