html {
	scrollbar-color: #ab4664 #ffe3ee;
}
a {
  color: #a94467;
  text-decoration: none;
  border-bottom: 1px dotted #a94467;
}

a:hover {
  background-color: #ffe3ee;
}
body {
  background-color: #ffeef5;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffcbe1' fill-opacity='0.52' fill-rule='evenodd'%3E%3Ccircle cx='3' cy='3' r='3'/%3E%3Ccircle cx='13' cy='13' r='3'/%3E%3C/g%3E%3C/svg%3E");
  color: #3c2a2a;
  font-family: "Georgia", serif;
  font-size: 16px;
  line-height: 1.7;
  margin: 0;
}
#container {
  max-width: 1100px;
  margin: 40px auto 80px auto;
  padding: 0 20px;
}

#header {
  padding: 0;
  overflow: hidden;
  border-radius: 14px;
  box-shadow: 4px 4px 0 #ffe3ee;
  height: 250px;
}

.header-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
#header .title {
  font-family: "Gaegu", sans-serif;
  font-size: 2.6em;
  color: #a94467;
  letter-spacing: 1px;
  margin: 0;
}
.content {
  background-color: #fff9fb;
  border-radius: 14px;
  padding: 25px 30px;
  box-shadow: 4px 4px 0 #ffe3ee;
  flex-grow: 1;
  max-width: 700px;
}

.content img {
  max-width: 100%;
  border-radius: 10px;
}

h1 {
  font-size: 2em;
  letter-spacing: 1px;
}
.wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
.back-button {
  position: fixed;
  top: 15px;
  left: 15px;
  z-index: 1000;
  display: inline-block;
  background: none !important;
  padding: 0 !important;
  border: none !important;
  text-decoration: none !important;
}

.back-button img {
  width: 80px;
  height: auto;
  border-radius: 10px;
  transition: transform 0.3s ease;
  display: block;
}

.back-button:hover img {
  transform: scale(1.1);
  background: none !important;
}

.tooltip-text {
  visibility: hidden;
  background-color: #e398b2;
  color: #fff;
  border: 2px dashed #fcd4e2;
  font-size: 14px;
  font-family: "Gaegu", sans-serif;
  text-align: center;
  border-radius: 8px;
  padding: 5px 10px;
  position: absolute;
  top: 80px;
  left: 0;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
}

.back-button:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}
.sidebar {
  width: 220px;
  padding: 15px;
  font-family: "Gaegu", sans-serif;
  font-size: 20px;
  text-align: center;
  position: sticky;
  top: 30px;
  height: fit-content;
  position: relative;
  border: 3px double #f5a9c4;
  box-shadow: 4px 4px 0 #ffd6e6;
  overflow: hidden;
}

.sidebar::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url("img/fondos/aside.jpg");
  background-repeat: repeat;
  opacity: 0.7;
  z-index: 0;
}

.sidebar > * {
  position: relative;
  z-index: 1;
}

.sidebar .sticker {
  position: absolute;
  top: -14px;
  right: -10px;
  font-size: 28px;
  color: #f5a9c4;
  transform: rotate(15deg);
}
#right-sidebar {
  width: 220px;
  padding: 15px;
  font-family: "Gaegu", sans-serif;
  font-size: 16px;
  text-align: center;
  border: 3px double #f5a9c4;
  box-shadow: 4px 4px 0 #ffd6e6;
  background-color: #fff9fb;
  height: fit-content;
}
.ribbon-header {
  background-color: #f5a9c4;
  border-radius: 8px 8px 0 0;
  padding: 6px 0;
  margin-bottom: -2px;
}
.ribbon-header h2 {
  color: #fff;
  margin: 0;
  font-size: 1.1em;
  text-shadow: 1px 1px 0 #d98ca2;
}
.posts .ribbon-header h2 { font-size: 1.4em; }

.widget-box {
  background-color: #fff;
  border: 2px dashed #f5a9c4;
  border-radius: 10px;
  padding: 10px;
  margin: 12px 0;
  text-align: left;
  font-size: 15px;
}
.widget-title {
  margin: 0 0 4px 0;
  font-weight: bold;
  color: #a94467;
}
.widget-content {
  margin: 0;
  color: #7a5460;
}

.divider {
  color: #d98ca2;
  letter-spacing: 2px;
  margin: 10px 0;
  font-size: 14px;
}
@media only screen and (max-width: 850px) {
  .wrapper {
    flex-direction: column;
    align-items: center;
  }
  .sidebar, #right-sidebar {
    width: 300px;
    padding: 15px;
    font-family: "Gaegu", sans-serif;
    font-size: 16px;
    text-align: center;
    border: 3px double #f5a9c4;
    box-shadow: 4px 4px 0 #ffd6e6;
    background-color: #fff9fb;
    height: fit-content;
}
  .content {
    max-width: 100%;
  }