:root {
  --easeOutQuint: cubic-bezier(0.22, 1, 0.36, 1);
}

.dark-mode {
  /* --background: #0a0a0a; */
  --background: #13151b;
  --foreground: #f1f1f1;

  --background-secondary: #1d2027;
  /* --background-tertiary: #2a334b; */
  --background-tertiary: #292d37;

  --background-comment-author: #1f1b17;
  --background-comment-author-secondary: #332922;

  --foreground-outside-line: #70778a;

  --blog-article-rect: #312820;

  --link: #9A8973;

  --filter-default-icon:  invert();

  --color-success: #154d15;
  --color-failure: #681e1e;
}

.light-mode {
  --background: #eee5d7;
  --foreground: #171717;

  --background-secondary: #b4aca4;
  /* --background-tertiary: #2a334b; */
  --background-tertiary: #918b83;

  --background-comment-author: #b3a898;
  --background-comment-author-secondary: #a39074;

  --foreground-outside-line: #8a7f70;

  --blog-article-rect: #b3a898;

  --link: #9c7846;

  --filter-default-icon: none;

  --color-success: #154d15;
  --color-failure: #681e1e;
}


html,
body {
  max-width: 100vw;
  max-height: 100vh;
  overflow-x: auto;
  overflow: hidden;
  
  /* font-size: 13px; */
}

body {
  color: var(--foreground);
  background: var(--background);
  font-family: Poppins,sans-serif, Arial, Helvetica, sans-serif;
  /* -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; */
}

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

a {
  color: var(--link);
  text-decoration: none;
}


.v-box {
  display: flex;
  flex-flow: column;
  height: 100%;
}

.h-box {
  display: flex;
  flex-flow: row;
  width: 100%;
}

.flex-center {
  /* justify-content: center;
  align-items: center; */
  margin: auto;
}

.h-center {
  margin: 0 auto;
}

.v-center {
  margin: auto 0;
}


.center-items {
  /* align-items: center; */
  margin: auto;
}

.v-flex {
  display: flex;
  flex-flow: column;
}

.h-flex {
  display: flex;
  flex-flow: row;
}



.v-flex-center {
  display: flex;
  flex-flow: column;

  /* justify-content: center;
  align-items: center; */
  margin: auto;
}

.h-flex-center {
  display: flex;
  flex-flow: row;

  /* justify-content: center;
  align-items: center; */
  margin: auto;
}

.sized-content {
  flex: 0 1 auto;
}

.sized-remaining {
  flex: 1 1 auto;
}

.sized-fixed {
  flex: 0 1 var(--fixed-size);
}

/* perpendicular center (to the direction of the flex el) */
.p-center {
  align-items: center;
}

/* direct center (to the direction of the flex el) */
.d-center {
  justify-content: center;
}


.radius-container {
  border-radius: 10px;
}




.cancel-button {
  border-radius: 10px 0px 0px 10px;
  background-color: var(--color-failure);
}

.confirm-button {
  border-radius: 0px 10px 10px 0px;
  background-color: var(--color-success);
}


.main-body-scroll {
  /* align-items: center; */
  /* margin-left: auto;
  margin-right: auto; */
  width: 100%;
  margin: 0 auto;
  overflow: auto;
  padding: 10px;
}

.main-body-div {
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
}

.main-header {
  /* position: absolute;
  top: 0;
  gap: 10px; */
  gap: 10px;
  padding: 5px;
  min-height: 60px;
  overflow-x: auto;
}

.header-btn {
  color: var(--foreground);
  border: 0px;
  background-color: transparent;
  padding: 10px;
  font-weight: bold;
  font-size: medium;
}

.header-btn:hover {
  background-color: var(--background-secondary);
  padding: 10px;
  border-radius: 10px;
}



.footer {
  grid-row-start: 3;
  display: flex;
  gap: 24px;
}

.footer a {
  display: flex;
  /* align-items: center; */
  margin-left: auto;
  margin-right: auto;
  gap: 8px;
}

.footer img {
  flex-shrink: 0;
}

.icon-default-filter {
  /*filter: invert(79%) sepia(14%) saturate(184%) hue-rotate(359deg) brightness(87%) contrast(86%);*/
  filter: var(--filter-default-icon);
}

button {
  cursor: pointer;
  color: var(--foreground);
  background-color: var(--background-secondary);
  border: 0px;
  border-radius: 10px;
  padding: 10px;
  justify-content: center;
  align-items: center;
}

input {
  color: var(--foreground);
  background-color: var(--background-secondary);
  border: 0px;
  border-radius: 10px;
  padding: 10px;
}

textarea {
  color: var(--foreground);
  background-color: var(--background-secondary);
  border: 0px;
  border-radius: 10px;
  padding: 10px;
  outline: none;      /* removes the dotted ring */
  box-shadow: none;   /* removes the inner glow/shadow */
}

select {
  background-color: var(--background-secondary);
  border: 0px;
  border-radius: 10px;
  padding: 10px;
  color: var(--foreground);

}

.fade-in-element {
  opacity: 0;
  transform: translateX(-100px);
  visibility: hidden;
  transition: opacity 0.45s var(--easeOutQuint), transform 0.45s  var(--easeOutQuint);
  will-change: opacity, visibility;
}

.fade-in-element.is-visible {
  opacity: 1;
  transform: none;
  visibility: visible;
}

.stretch-element {
  align-self: stretch;  
}

/* ----------------------- ROOT ----------------------- */

.main-head-welcome {
  font-weight: bold;
  font-size: xx-large;
}

.main-head-welcome-subtitle {
  font-style: italic;
  opacity: 70%;
}

.main-head-paragraph {
  font-size: medium;
}

.layout-icon {
  width: 20px;
}

.line-splitter span {
  min-height: 10px;
}

/* -------------------- LINK TREE -------------------- */

.link-tree-main-page {
  gap: 50px;
}

.link-tree-container {
  flex-wrap: wrap;
  max-width: 600px;
  width: 100%;
  gap: 20px;
  align-items: flex-start;
}

.link-tree-link {
  gap: 10px;
}

.main-head-container {
  height: 500px;
  gap: 20px;
}

.main-head-image {
  width: 300px;
  height: 300px;
  border-radius: 50%;
}

.main-page-container {
  /* gap: 700px; */
  margin-bottom: 400px;
  gap: 80px;
}

.section-spacer-container {
  /* min-height: 150vh; */
  position: relative;
}

.section-main-container{
  max-width: 1100px;
  width: 100%;
  gap: 20px;
}

.section-title{
  font-weight: bold;
  font-size: x-large;
}

.outside-line-container {
  /* height: 400px; */
  position: relative;
}

.outside-line-circle {
  position: absolute;

  border-radius: 50%;
  border: 2px solid #70778a;
  background-color: var(--background);

  width: 10px;
  height: 10px;
}

.section-line {
  position: absolute;
  border-left: 2px dashed #70778a;
  /* height: 400px; */
}


.section-line-external-circle {
  position: absolute;
  border-radius: 50%;
  border: 2px solid #70778a;
  background-color: transparent;
  display: inline-block;
  content: "";
  
  width: 20px;
  height: 20px;
}

.text-section {
  max-width: 800px;
  width: 100%;
  text-align: justify;
}

.text-section > span {
  margin-bottom: 10px;
}

.experience-section-container {
  gap: 25px;
}

.job-description-container {
  max-width: 900px;
  width: 100%;
  gap: 10px;
}

.job-description-line-container {
  gap: 5px;
}

.job-description-circle {
  border-radius: 50%;
  background-color: var(--foreground);
  width: 15px;
  height: 15px;
}

.job-description-line {
  border-radius: 2px;
  background-color: var(--foreground);
  width: 5px;
  height: 1px;
}

.job-description-main {
  gap: 10px; 
}

.job-description-metadata {
  gap: 2px;
}

.job-description-title {
  font-weight: bold;
  font-size: large;
}

.job-description-company {
  font-style: italic;
  font-size: small;
}

.job-description-date {
  font-style: italic;
  font-size: small;
  opacity: 70%;
}

.job-description-location {
  font-style: italic;
  font-size: small;
  opacity: 70%;
}

.projects-main-container {
  gap: 60px;
}

.projects-main-container .line-splitter > span {
  margin-bottom: 10px;
}

.project-header-container {
  gap: 5px;
}

.projects-projects-container {
  gap: 10px;
}

.project-container {
  background-color: var(--background-secondary);
  padding: 10px;
  border-radius: 10px;
  gap: 5px;
  align-self: stretch;
}

/* .project-container span {
  color: white;
} */

.project-name {
  font-weight: bold;
  font-size: large;
}

.project-link {
  width: 10px;
}

.project-description {
  
}

.project-description span {
  min-height: 10px;
  /* white-space: pre; */
}

.project-image {
  max-width: 900px;
  width: 100%;
}

.support-me-btn-area {
  padding: 10px;
  gap: 10px;
}

.support-me-btn {
  border-radius: 10px;
  /* background-color: #0e0e0e; */
  background-color: var(--background-secondary);
  padding: 10px;
  gap: 10px;
}

/* ---------------------------BLOG-------------------------- */

.blog-card-container {
  padding: 10px;
  gap: 10px;
}

.blog-card {
  max-width: 700px;
  width: 100%;
  min-height: 150px;
  padding: 10px;
  background-color: var(--background-secondary);
  color: var(--foreground);
  gap: 10px;
}

.blog-card-title {
  font-size: large;
  font-weight: bold;
}

.blog-card-thumbnail-container {
  height: 150px;
  width: 240px;
  /* min-width: 240px; */
  object-fit: contain;
}

.blog-card-thumbnail {
  object-fit: contain;
  height: 150px;
  width: 240px;
  /* height: 150px; */
}

.blog-card-stats {
  font-size: small;
  opacity: 50%;
  font-style: italic;
}

.blog-post-container {
  /* overflow: auto; */
  align-items: flex-start;
  max-width: 100%;
}

.blog-post-line {
  min-height: 1rem;
}

.blog-article {
  max-width: 700px;
  width: 100%;
  gap: 10px;
}

.blog-article .rect {
  background-color: var(--blog-article-rect);
  padding: 5px;
  border-radius: 5px;
}

.blog-article-image, .blog-article-video, .blog-article-video-preview {
  border-radius: 10px;
  width: 100%;
  height: 100%;
}

.blog-article-video-preview{
  position: relative;
}

.blog-article-video-preview-thumbnail {
  border-radius: 10px;
  top: 100%;
  left: 100%;
  width: 100%;
  height: 100%;
}

.blog-article-video-preview-play-icon {
  position: absolute;
  top: calc(50% - 22.5px);
  left: calc(50% - 22.5px);
  width: 45px;
  height: 45px;
  filter: invert() drop-shadow( 2px 2px 5px rgb(0, 0, 0));
}

.blog-post-back-btn {
  margin-bottom: 50px;
}

.blog-article {
  position: relative;
  /* font-size: 19px;
  line-height: 34px; */

  line-height: 22px;
  
  text-justify: auto;
  text-align: justify;
}

.blog-article > h1 {
  /* align-items: center;
  justify-content: center; */
  margin: auto;
}

.blog-article > img {
  /* align-items: center;
  justify-content: center; */
  /* margin: auto; */
}

.blog-article details {
  padding: 10px;
  border-radius: 10px;
  background-color: var(--background-secondary);
}

.blog-article details > .collapsible-body {
  margin-top: 10px;
  margin-left: 15px;
}

.blog-article ul {
  margin-left: 25px;
  gap: 10px;
  /* align-items: center;
  justify-content: center; */
  /* margin: auto; */
}

.blog-article ul > li{
  margin: 15px 0;
  /* align-items: center;
  justify-content: center; */
  /* margin: auto; */
}

.blog-article-container {
  position: relative;
  max-width: 100%;
  margin: auto;
  transition: all 0.2s ease-out;
  translate: 0px;
}

.blog-article-container:has(.blog-chapters-toggle.opened) {
  translate: -55px;

}

[custom-param="note"] {
  background-color: var(--blog-article-rect);
  padding: 5px;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
}

.floating-note {
  position: absolute;
  width: 200px;
  opacity: 0%;
  transition: opacity .1s ease-in-out;
  z-index: 10000;
  box-shadow: 1px 1px 25px black;
  text-justify:auto;
  text-align: left;
}

.floating-note.shown {
  opacity: 100%;
}

.blog-chapters-container {
  position: absolute;
  top: 0px;
  left: -250px;
  height: 90vh;
  gap: 20px;
  text-justify:auto;
  text-align: left;
}

.blog-chapter {
  background-color: var(--background-secondary);
  padding: 10px;
  border-radius: 10px;
}

.blog-chapter.hidden {
  display: none;
}

/* styles/globals.css (or your module/css) */

/* 1) Container: two columns */
.blog-article-container {
  display: flex;
  align-items: flex-start;
}

.blog-chapters-container {
  position: sticky;
  margin-right: 10px;
}

/* 2) Chapters pane */
.blog-chapters {
  overflow: hidden;
  left: 2000px;
  transition: all .2s ease-out;
  padding: 0px;
  gap: 10px;
  width: 0px;
  padding: 1rem;
  opacity: 0%;
  pointer-events: none;
}

.blog-chapters.opened {
  width: 180px;
  opacity: 100%;
  pointer-events: all;
}

.blog-chapters-search-bar {

}

.blog-chapters-area {
  overflow-y: auto;         /* scroll when content is taller */
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* stack at top */
  gap: 1rem;                /* space between links */
  height: 90vh;            /* full viewport height */
  margin-right: 10px;
  top: 0;
  width: 180px;
}

.blog-chapters a {
  color: white;
}

/* style for each link */
.blog-chapter-link {
  text-decoration: none;
  font-size: 0.9rem;
  /* you can tweak hover state, active, etc. */
  width: 145px;
}

/* 3) Article content flex-1 so it fills remaining space */
.blog-article-content {
  flex: 1;
  padding: 1rem 2rem;
}

.blog-chapters-toggle {
  opacity: 0%;
  transition: opacity .5s ease-out;
  position: relative;
  cursor: pointer;
  z-index: 15;
}

.blog-chapters-toggle:hover {
  opacity: 100%;
}

.blog-chapters-toggle.opened {
  opacity: 100%;
}

.blog-chapters-toggle.showed {
  opacity: 100%;
}

.blog-chapters-toggle-show-area {
  position: absolute;
  width: 400px;
  height: 400px;
  z-index: 10;
  cursor:default;
}

.blog-chapters-toggle-icon {
  pointer-events: none;
  width: 15px;
  height: 15px;
  transition: rotate .2s ease-out;
  rotate: 180deg;
}

.blog-chapters-toggle-icon.opened {
  rotate: 0deg;
}

.comments-area {
  max-width: 500px;
}

.post-comment-area {
  /* width: 300px; */
  background-color: var(--background-tertiary);
  border-radius: 10px;
}

.post-comment-area-text {
  border-radius: 0px 0px 10px 10px;
  background-color: var(--background-tertiary);
  max-width: 100%;
}

.post-comment-area-controls {
  gap: 5px;
  padding: 5px;
  border-radius: 10px 10px 0px 0px;
}

.post-comment-area-preview {
  overflow: hidden;
  /* min-width: 300px; */
  background-color: var(--background-tertiary);
  border-radius: 10px;
  opacity: 0%;
  min-height: 0px;
  height: 0px;

  transition: all .2s ease-out;
}

.comment-post-reply-area {
  padding: 10px;
  background-color: var(--background-secondary);
  border-radius: 10px;
}

.comment-post-reply-area:has(.post-comment-area:focus-within) .post-comment-area-preview,
.post-comment-area-preview.writing {
  min-height: 7rem;
  opacity: 100%;
  padding: 10px;
  overflow: auto;
}

.post-comment-area-preview span {
  opacity: 50%;
}

.post-comment-area-preview.writing span {
  opacity: 100%;
}

.post-comment-area-preview p {
  min-height: 1rem;
}
.post-comment-text-area p {
  min-height: 1rem;
}

.post-comment-container {
  padding: 10px;
  background-color: var(--background-secondary);
  border-radius: 10px;
}

.post-comment-container.author {
  background-color: var(--background-comment-author);
}

.post-comment-container-btn {
  background-color: var(--background-tertiary);
}

.post-comment-container.author .post-comment-container-btn {
  background-color: var(--background-comment-author-secondary);
}

.post-comment-reply.disabled {
  opacity: 50%;
  pointer-events: none;
}

.post-comment-like.disabled {
  opacity: 50%;
  pointer-events: none;
}

.post-comment-like img.disabled {
  opacity: 50%;
  pointer-events: none;
}

.post-comment-like img.liked {
  opacity: 50%;
  pointer-events: none;
  color: #8a1313;
  filter: invert(17%) sepia(73%) saturate(5123%) hue-rotate(356deg) brightness() contrast(102%);
}

.post-comment-replies-vertical-line {
  margin-left: 15px;
  margin-right: 15px;
    border-left: 2px solid var(--background-tertiary);
    margin-bottom: 10px;
}

/* PrismJS OVERRIDES */
.token.string.prompt-prefix { color: #6aad6a; }
.token.symbol.prompt-path   { color: #d9903d; }
.token.comment.output       { color: white; }

.toolbar {
  height: 30px;
}

/* 1. Target the copy button */
.toolbar .copy-to-clipboard-button {
  position: relative;
  top: 10px;
  width: 25px;               /* make it a square */
  height: 25px;
  padding: 0;
  border: none;
  background: none;
  cursor: pointer;
}

/* 2. Use an SVG as the “icon” */
.toolbar .copy-to-clipboard-button::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  /* background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path d='M19 21H8a2 2 0 0 1-2-2V7h2v12h11v2zm3-16h-8l-2-2H5a22 0 0 0-2 2v14a2 2 0 0 0 2 2h14a2 2 0 0 0 2-2V5z'/></svg>"); */
  background-image: url("/icons/duplicates.svg");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 10px 10px;
}

/* 3. Hide the text but keep it for screen‑readers */
.toolbar .copy-to-clipboard-button span {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.toolbar .copy-to-clipboard-button {
  transition: transform 0.1s ease, filter 0.1s ease;
}

.toolbar .copy-to-clipboard-button:hover,
.toolbar .copy-to-clipboard-button:focus {
  transform: scale(1.1);
  filter: brightness(1.2);
}

figure.code-block {
  /* margin: 1.5em 0; */
  border: 1px solid var(--background-secondary);
  border-radius: 4px;
  overflow: hidden;
}

figure.code-block .code-toolbar pre {
  border-radius: 0px;
}

figure.code-block figcaption.code-path {
  background: var(--background-secondary);
  color: var(--foreground);
  font-family: monospace;
  padding: 0.5em 1em;
  font-size: 0.9em;
}

figure.code-block pre {
  margin: 0;
  padding: 1em;
  background: #2d2d2d;     /* if using a dark theme */
}

.blog-header {
  max-width: 900px;
  /* width: 100%; */
  gap: 10px;
  margin: auto;
  margin-bottom: 50px;
  margin-top: 40px;
}

.blog-header-info-container {
  gap: 10px;
}

.blog-header-info-title {
  font-size: xx-large;
  font-weight: bold;
  text-justify: auto;
  text-align: justify;
}

.blog-header-info-date {
  font-style: italic;
  opacity: 50%;
}

.login-area-context-menu {
  position: absolute;
  left: -60px;
  top: 100%;
  margin-top: 8px;
  width: 200px;
  background-color: var(--background-secondary);
  border-radius: 4px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 1000;
}

.login-area-btn {
  width: 100%;
  text-align: left;
  padding: 8px;
  background: transparent;
  border: none;
  cursor: pointer;
}

.login-btn {
  width: 100%;
  padding: 8px;
  background-color: #0070f3;
  color: #fff;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

.auth-login-button {
  background-color: #0070f3;
}

.delete-account-btn { 
  color: red;
}

.dialog-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2000;
}

.dialog-modal {
  background-color: var(--background-secondary);
  padding: 24px;
  border-radius: 8px;
  width: 320px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.dialog-title {
  margin-top: 0;
  margin-bottom: 8px;
}

.dialog-message {
  margin: 0 0 16px;
}

.dialog-buttons {
  text-align: right;
}

.dialog-button {
  background-color: var(--background-tertiary);
  margin-left: 8px;
  padding: 8px 16px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

/* src/context/NotificationContext.css */

.notification-container {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  z-index: 3000;
}

.notification-toast {
  display: flex;
  align-items: center;
  min-width: 200px;
  max-width: 360px;
  padding: 10px 10px;
  border-radius: 10px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  background: var(--background-tertiary);
  color: var(--foreground);
  position: relative;
  align-self: stretch;
}

.toast-icon {
  margin-right: 8px;
  font-size: 1.2em;
}

.toast-message {
  flex: 1;
}

.toast-close {
  background: none;
  border: none;
  font-size: 1.2em;
  line-height: 1;
  cursor: pointer;
  padding: 0 4px;
}

/* Type modifiers */

.toast--error {
  background: var(--background-tertiary);
  /* border: 1px solid #f88; */
}

.toast--error .toast-icon {
  color: #c00;
}

.toast--ok {
  background: var(--background-tertiary);
  /* border: 1px solid #8f8; */
}

.toast--ok .toast-icon {
  color: #080;
}

.toast--info {
  background: var(--background-tertiary);
  /* border: 1px solid #88f; */
}

.toast--info .toast-icon {
  color: #008;
}



.text-post {
  filter: invert(13%) sepia(30%) saturate(410%) hue-rotate(184deg) brightness(95%) contrast(88%);
}

.blog-chapters-mobile-open-button {
  top: 0px;
  opacity: 0%;
  pointer-events: none;
  transition: all .2s ease-out;
}

.blog-chapters-mobile-open-button.is-sticky {
  pointer-events: all;
  opacity: 100%;
}

.blog-mobile-chapters-menu {
  display: none;
  height: 0px;
  position: sticky;
  top: 0px;
  z-index: 1000;
}

.blog-mobile-chapters-sidebar-container {
  display: none;
  width: 100vw;
  height: 100vh;
  position: absolute;
  left: 0px;
  top: 0px;
  z-index: 2000;
  background-color: #00000000;
  pointer-events: none;
  transition: all .2s ease-out;
}

.blog-mobile-chapters-sidebar-container.open {
  background-color: #00000048;
  pointer-events: all;
  left: 0px;
}

.blog-mobile-chapters-sidebar {
  width: 200px;
  height: 100vh;
  position: absolute;
  left: -200px;
  top: 0px;
  z-index: 3000;
  background-color: var(--background-secondary);
  transition: left .2s ease-out;
}

.blog-mobile-chapters-sidebar-container.open .blog-mobile-chapters-sidebar {
  left: 0px;
}

.blog-chapters-container.blog-chapters-mobile .blog-chapters-toggle {
  display: none;
}

/* Enable hover only on non-touch devices */
@media (hover: hover) and (pointer: fine) {
  .footer a:hover {
    text-decoration: underline;
    text-underline-offset: 4px;
  }
}

@media (max-width: 600px) {
  .footer {
    flex-wrap: wrap;
    /* align-items: center;
    justify-content: center; */
    margin:auto;
  }

  .blog-chapters-container.blog-chapters-main {
    display: none;
  }

  .blog-card-thumbnail-container {
    height: 90px;
    width: 130px;
    /* min-width: 240px; */
    object-fit: contain;
  }

  .blog-card-thumbnail {
    object-fit: contain;
    height: 90px;
    width: 130px;
    /* height: 150px; */
  }

  .blog-mobile-chapters-menu {
    display: flex;
  }

  .blog-mobile-chapters-sidebar-container {
    display: flex;
  }
}

.commenta-frame {
  border: 0px;
  width: 100%;
  max-width: 700px;
  height: 100vh;
  margin: 0 auto;
}
