:root {
  --guest-book-green: #26734d;
  --guest-book-green-dark: #18563a;
  --guest-book-lime: #b7d86f;
  --guest-book-sand: #f3ead7;
  --guest-book-orange: #ee8b45;
  --guest-book-ink: #17231d;
  --radius-xl: 1.75rem;
  --shadow-soft: 0 1rem 3rem rgba(24, 86, 58, 0.12);
}

[data-bs-theme="dark"] {
  --guest-book-sand: #1c251f;
  --guest-book-ink: #edf7f0;
  --shadow-soft: 0 1rem 3rem rgba(0, 0, 0, 0.26);
}

.guestbook-hero {
  position: relative;
  min-height: 59vh;
  display: flex;
  align-items: end;
  isolation: isolate;
  background:
    linear-gradient(
      180deg,
      rgba(7, 26, 17, 0.12) 0%,
      rgba(7, 26, 17, 0.85) 100%
    ),
    url("../../../assets/images/1920/1280/canal-001-001.jpg") center / cover;
    background-repeat: no-repeat;
}

.guestbook-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    90deg,
    rgba(11, 36, 23, 0.82),
    rgba(11, 36, 23, 0.08)
  );
}

.guestbook-hero--title {
  max-width: 950px;
  font-size: clamp(3rem, 7vw, 6.4rem);
  line-height: 0.94;
  letter-spacing: -0.06em;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.55rem 0.85rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.meta-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.55rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.11);
  font-weight: 600;
  backdrop-filter: blur(10px);
}

.section-email {
  padding: 2rem 1rem;
  background: color-mix(
    in srgb,
    var(--guest-book-sand) 70%,
    var(--bs-body-bg)
  );
}

.section-kicker {
  color: var(--guest-book-green);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-title {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  line-height: 1;
  letter-spacing: -0.05em;
}

.main-intro-shell {
  position: relative;
  z-index: 3;
  margin-top: -4rem;
}

@media (max-width: 991.98px) {
  .main-intro-shell {
    margin-top: -3rem;
  }
}

.section-space {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.guestbook-hero {
  z-index: 1;
}

.guest-book-intro-content {
  padding: 1rem;
  background-color: var(--bs-body-bg);
  color: var(--bs-body-color);
  border: var(--bs-border-width) var(--bs-border-style) var(--bs-border-color);
  border-radius: var(--bs-border-radius-lg);
  box-shadow: var(--bs-box-shadow);
}

.content-card,
.aside-card {
  border-radius: var(--radius-xl);
  background: var(--bs-body-bg);
  box-shadow: var(--shadow-soft);
  border-top: 4px solid color-mix(in srgb, var(--bs-border-color) 70%, transparent);
  border-right: 1px solid color-mix(in srgb, var(--bs-border-color) 70%, transparent);
  border-bottom: 1px solid color-mix(in srgb, var(--bs-border-color) 70%, transparent);
  border-left: 1px solid color-mix(in srgb, var(--bs-border-color) 70%, transparent);   

}

.aside-card {
  background:
    radial-gradient(
      circle at top right,
      color-mix(in srgb, var(--bs-primary) 14%, transparent),
      transparent 45%
    ),
    linear-gradient(
      135deg,
      color-mix(in srgb, var(--bs-tertiary-bg) 85%, transparent),
      var(--bs-body-bg)
    );

  border-top: 4px solid var(--bs-border-color-translucent);
}

.content-card {
  padding: clamp(1.5rem, 4vw, 3.5rem);
}

.submission-panel {
  position: relative;
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(
      115deg,
      rgba(18, 75, 48, 0.98),
      rgba(38, 115, 77, 0.88)
    ),
    url("../../01-tractor-01.jpg")
      center / cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
}

.submission-panel::after {
  content: "";
  position: absolute;
  right: -80px;
  bottom: -100px;
  width: 300px;
  height: 300px;
  border-radius: 50%;
  background: rgba(183, 216, 111, 0.18);
}

.submission-panel > * {
  position: relative;
  z-index: 1;
}

.email-box {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.2rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 1.2rem;
  color: #fff;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.email-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 16px;
  color: var(--guest-book-green-dark);
  background: var(--guest-book-lime);
  font-size: 1.3rem;
}

.email-address {
  color: #fff;
  font-weight: 800;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.email-address:hover {
  color: var(--guest-book-lime);
}

.guest-entry {
  position: relative;
  height: 100%;
  overflow: hidden;
  padding: 1.75rem;

  color: var(--bs-body-color);

  border: 1px solid
    color-mix(
      in srgb,
      var(--guest-book-lime) 18%,
      var(--bs-border-color)
    );

  border-radius: 0.7rem;

  background-color: #fbfaf5;

  background-image:
    radial-gradient(
      circle at 15% 20%,
      rgba(255, 255, 255, 0.75) 0,
      transparent 28%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(214, 202, 176, 0.16) 0,
      transparent 32%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.7),
      rgba(245, 241, 228, 0.65)
    );

  box-shadow:
    0 1px 2px rgba(54, 48, 34, 0.05),
    0 0.35rem 1rem rgba(54, 48, 34, 0.07),
    0 1.2rem 2.8rem rgba(54, 48, 34, 0.06);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease,
    background-color 0.25s ease;
}

.guest-entry:hover {
  transform: translateY(-5px);

  border-color:
    color-mix(
      in srgb,
      var(--guest-book-lime) 32%,
      var(--bs-border-color)
    );

  box-shadow:
    0 2px 4px rgba(54, 48, 34, 0.06),
    0 0.7rem 1.8rem rgba(54, 48, 34, 0.1),
    0 1.6rem 3.5rem rgba(54, 48, 34, 0.08);
}

.guest-entry::before {
  content: "\f005";

  position: absolute;
  top: 1rem;
  right: 1.15rem;

  width: 3.65rem;
  height: 4.15rem;

  display: flex;
  align-items: center;
  justify-content: center;

  font-family:
    "Font Awesome 7 Free",
    "Font Awesome 6 Free",
    "Font Awesome 5 Free";

  font-weight: 900;
  font-size: 1.15rem;
  line-height: 1;

  color: #78956f;

  border: 2px dashed rgba(120, 149, 111, 0.5);

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.45),
      rgba(120, 149, 111, 0.06)
    );

  box-shadow:
    inset 0 0 0 1px rgba(120, 149, 111, 0.08);

  opacity: 0.82;

  pointer-events: none;
  user-select: none;

  transition:
    opacity 0.25s ease,
    box-shadow 0.25s ease;
}

.guest-entry:hover::before {
  opacity: 1;

  box-shadow:
    inset 0 0 0 1px rgba(120, 149, 111, 0.12),
    0 0.15rem 0.45rem rgba(54, 48, 34, 0.06);
}


/* Stamp 1 */

.col-12:nth-child(1) > .guest-entry::before {
  content: "\f005";
  color: #78956f;
  border-color: rgba(120, 149, 111, 0.5);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.5),
      rgba(120, 149, 111, 0.07)
    );
}


/* Stamp 2 */

.col-12:nth-child(2) > .guest-entry::before {
  content: "\f06c";
  color: #668f70;
  border-color: rgba(102, 143, 112, 0.5);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.5),
      rgba(102, 143, 112, 0.07)
    );
}


/* Stamp 3 */

.col-12:nth-child(3) > .guest-entry::before {
  content: "\f1bb";
  color: #9b7068;
  border-color: rgba(155, 112, 104, 0.5);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.5),
      rgba(155, 112, 104, 0.07)
    );
}


/* Stamp 4 */

.col-12:nth-child(4) > .guest-entry::before {
  content: "\f072";
  color: #66849b;
  border-color: rgba(102, 132, 155, 0.5);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.5),
      rgba(102, 132, 155, 0.07)
    );
}


/* Stamp 5 */

.col-12:nth-child(5) > .guest-entry::before {
  content: "\f004";
  color: #a56e68;
  border-color: rgba(165, 110, 104, 0.5);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.5),
      rgba(165, 110, 104, 0.07)
    );
}


/* Stamp 6 */

.col-12:nth-child(6) > .guest-entry::before {
  content: "\f1d8";
  color: #718a76;
  border-color: rgba(113, 138, 118, 0.5);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.5),
      rgba(113, 138, 118, 0.07)
    );
}


/* Stamp 7 */

.col-12:nth-child(7) > .guest-entry::before {
  content: "\f1fc";
  color: #a18a59;
  border-color: rgba(161, 138, 89, 0.5);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.5),
      rgba(161, 138, 89, 0.07)
    );
}


/* Stamp 8 */

.col-12:nth-child(8) > .guest-entry::before {
  content: "\f52d";
  color: #547b68;
  border-color: rgba(84, 123, 104, 0.5);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.5),
      rgba(84, 123, 104, 0.07)
    );
}


/* Stamp 9 */

.col-12:nth-child(9) > .guest-entry::before {
  content: "\f1d8";
  color: #71889a;
  border-color: rgba(113, 136, 154, 0.5);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.5),
      rgba(113, 136, 154, 0.07)
    );
}


/* Stamp 10 */

.col-12:nth-child(10) > .guest-entry::before {
  content: "\f06c";
  color: #6f9275;
  border-color: rgba(111, 146, 117, 0.5);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.5),
      rgba(111, 146, 117, 0.07)
    );
}


/* Stamp 11 */

.col-12:nth-child(11) > .guest-entry::before {
  content: "\f1bb";
  color: #a97878;
  border-color: rgba(169, 120, 120, 0.5);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.5),
      rgba(169, 120, 120, 0.07)
    );
}


/* Stamp 12 */

.col-12:nth-child(12) > .guest-entry::before {
  content: "\f072";
  color: #718fa7;
  border-color: rgba(113, 143, 167, 0.5);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.5),
      rgba(113, 143, 167, 0.07)
    );
}


/* Stamp 13 */

.col-12:nth-child(13) > .guest-entry::before {
  content: "\f005";
  color: #ad945a;
  border-color: rgba(173, 148, 90, 0.5);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.5),
      rgba(173, 148, 90, 0.07)
    );
}


/* Stamp 14 */

.col-12:nth-child(14) > .guest-entry::before {
  content: "\f1bb";
  color: #76917a;
  border-color: rgba(118, 145, 122, 0.5);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.5),
      rgba(118, 145, 122, 0.07)
    );
}


/* Stamp 15 */

.col-12:nth-child(15) > .guest-entry::before {
  content: "\f004";
  color: #ae7568;
  border-color: rgba(174, 117, 104, 0.5);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.5),
      rgba(174, 117, 104, 0.07)
    );
}


/* Stamp 16 */

.col-12:nth-child(16) > .guest-entry::before {
  content: "\f52d";
  color: #5d806d;
  border-color: rgba(93, 128, 109, 0.5);
  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.5),
      rgba(93, 128, 109, 0.07)
    );
}


/* Repeat */

.col-12:nth-child(16n + 1) > .guest-entry::before {
  content: "\f005";
  color: #78956f;
}

.col-12:nth-child(16n + 2) > .guest-entry::before {
  content: "\f06c";
  color: #668f70;
}

.col-12:nth-child(16n + 3) > .guest-entry::before {
  content: "\f1bb";
  color: #9b7068;
}

.col-12:nth-child(16n + 4) > .guest-entry::before {
  content: "\f072";
  color: #66849b;
}

.col-12:nth-child(16n + 5) > .guest-entry::before {
  content: "\f004";
  color: #a56e68;
}

.col-12:nth-child(16n + 6) > .guest-entry::before {
  content: "\f1d8";
  color: #718a76;
}

.col-12:nth-child(16n + 7) > .guest-entry::before {
  content: "\f1fc";
  color: #a18a59;
}

.col-12:nth-child(16n + 8) > .guest-entry::before {
  content: "\f52d";
  color: #547b68;
}

.col-12:nth-child(16n + 9) > .guest-entry::before {
  content: "\f1d8";
  color: #71889a;
}

.col-12:nth-child(16n + 10) > .guest-entry::before {
  content: "\f06c";
  color: #6f9275;
}

.col-12:nth-child(16n + 11) > .guest-entry::before {
  content: "\f1bb";
  color: #a97878;
}

.col-12:nth-child(16n + 12) > .guest-entry::before {
  content: "\f072";
  color: #718fa7;
}

.col-12:nth-child(16n + 13) > .guest-entry::before {
  content: "\f005";
  color: #ad945a;
}

.col-12:nth-child(16n + 14) > .guest-entry::before {
  content: "\f1bb";
  color: #76917a;
}

.col-12:nth-child(16n + 15) > .guest-entry::before {
  content: "\f004";
  color: #ae7568;
}

.col-12:nth-child(16n) > .guest-entry::before {
  content: "\f52d";
  color: #5d806d;
}


/* Dark mode */

[data-bs-theme="dark"] .guest-entry {
  color: var(--bs-body-color);

  border-color:
    color-mix(
      in srgb,
      var(--guest-book-lime) 24%,
      var(--bs-border-color)
    );

  background-color: #242923;

  background-image:
    radial-gradient(
      circle at 15% 20%,
      rgba(255, 255, 255, 0.035) 0,
      transparent 28%
    ),
    radial-gradient(
      circle at 85% 80%,
      rgba(139, 154, 121, 0.045) 0,
      transparent 32%
    ),
    linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.025),
      rgba(0, 0, 0, 0.12)
    );

  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.3),
    0 0.35rem 1rem rgba(0, 0, 0, 0.28),
    0 1.2rem 2.8rem rgba(0, 0, 0, 0.18);
}

[data-bs-theme="dark"] .guest-entry:hover {
  border-color:
    color-mix(
      in srgb,
      var(--guest-book-lime) 38%,
      var(--bs-border-color)
    );

  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.35),
    0 0.7rem 1.8rem rgba(0, 0, 0, 0.35),
    0 1.6rem 3.5rem rgba(0, 0, 0, 0.25);
}

[data-bs-theme="dark"] .guest-entry::before {
  opacity: 0.9;

  background:
    linear-gradient(
      145deg,
      rgba(255, 255, 255, 0.035),
      rgba(255, 255, 255, 0.01)
    );

  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}


/* Dark stamp colors */

[data-bs-theme="dark"] .col-12:nth-child(1) > .guest-entry::before,
[data-bs-theme="dark"] .col-12:nth-child(16n + 1) > .guest-entry::before {
  color: #9dbb91;
  border-color: rgba(157, 187, 145, 0.55);
}

[data-bs-theme="dark"] .col-12:nth-child(2) > .guest-entry::before,
[data-bs-theme="dark"] .col-12:nth-child(16n + 2) > .guest-entry::before {
  color: #91b99a;
  border-color: rgba(145, 185, 154, 0.55);
}

[data-bs-theme="dark"] .col-12:nth-child(3) > .guest-entry::before,
[data-bs-theme="dark"] .col-12:nth-child(16n + 3) > .guest-entry::before {
  color: #d09a91;
  border-color: rgba(208, 154, 145, 0.55);
}

[data-bs-theme="dark"] .col-12:nth-child(4) > .guest-entry::before,
[data-bs-theme="dark"] .col-12:nth-child(16n + 4) > .guest-entry::before {
  color: #8eacc5;
  border-color: rgba(142, 172, 197, 0.55);
}

[data-bs-theme="dark"] .col-12:nth-child(5) > .guest-entry::before,
[data-bs-theme="dark"] .col-12:nth-child(16n + 5) > .guest-entry::before {
  color: #d4958b;
  border-color: rgba(212, 149, 139, 0.55);
}

[data-bs-theme="dark"] .col-12:nth-child(6) > .guest-entry::before,
[data-bs-theme="dark"] .col-12:nth-child(16n + 6) > .guest-entry::before {
  color: #9fbaa2;
  border-color: rgba(159, 186, 162, 0.55);
}

[data-bs-theme="dark"] .col-12:nth-child(7) > .guest-entry::before,
[data-bs-theme="dark"] .col-12:nth-child(16n + 7) > .guest-entry::before {
  color: #c9ad72;
  border-color: rgba(201, 173, 114, 0.55);
}

[data-bs-theme="dark"] .col-12:nth-child(8) > .guest-entry::before,
[data-bs-theme="dark"] .col-12:nth-child(16n + 8) > .guest-entry::before {
  color: #82aa93;
  border-color: rgba(130, 170, 147, 0.55);
}

[data-bs-theme="dark"] .col-12:nth-child(9) > .guest-entry::before,
[data-bs-theme="dark"] .col-12:nth-child(16n + 9) > .guest-entry::before {
  color: #91aabd;
  border-color: rgba(145, 170, 189, 0.55);
}

[data-bs-theme="dark"] .col-12:nth-child(10) > .guest-entry::before,
[data-bs-theme="dark"] .col-12:nth-child(16n + 10) > .guest-entry::before {
  color: #9cbea1;
  border-color: rgba(156, 190, 161, 0.55);
}

[data-bs-theme="dark"] .col-12:nth-child(11) > .guest-entry::before,
[data-bs-theme="dark"] .col-12:nth-child(16n + 11) > .guest-entry::before {
  color: #cf9898;
  border-color: rgba(207, 152, 152, 0.55);
}

[data-bs-theme="dark"] .col-12:nth-child(12) > .guest-entry::before,
[data-bs-theme="dark"] .col-12:nth-child(16n + 12) > .guest-entry::before {
  color: #91b0c9;
  border-color: rgba(145, 176, 201, 0.55);
}

[data-bs-theme="dark"] .col-12:nth-child(13) > .guest-entry::before,
[data-bs-theme="dark"] .col-12:nth-child(16n + 13) > .guest-entry::before {
  color: #cdb777;
  border-color: rgba(205, 183, 119, 0.55);
}

[data-bs-theme="dark"] .col-12:nth-child(14) > .guest-entry::before,
[data-bs-theme="dark"] .col-12:nth-child(16n + 14) > .guest-entry::before {
  color: #9bb5a0;
  border-color: rgba(155, 181, 160, 0.55);
}

[data-bs-theme="dark"] .col-12:nth-child(15) > .guest-entry::before,
[data-bs-theme="dark"] .col-12:nth-child(16n + 15) > .guest-entry::before {
  color: #d29b8c;
  border-color: rgba(210, 155, 140, 0.55);
}

[data-bs-theme="dark"] .col-12:nth-child(16) > .guest-entry::before,
[data-bs-theme="dark"] .col-12:nth-child(16n) > .guest-entry::before {
  color: #8fb39c;
  border-color: rgba(143, 179, 156, 0.55);
}


@media (prefers-reduced-motion: reduce) {
  .guest-entry,
  .guest-entry::before {
    transition: none;
  }

  .guest-entry:hover {
    transform: none;
  }
}

.guest-avatar {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 17px;
  color: #fff;
  background: linear-gradient(
    135deg,
    var(--guest-book-green),
    var(--guest-book-lime)
  );
  font-weight: 800;
  box-shadow: 0 0.5rem 1.2rem rgba(38, 115, 77, 0.18);
}

.guest-message {
  position: relative;
  z-index: 1;
  min-height: 8rem;
  font-size: 1.05rem;
  line-height: 1.8;
}

.location-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.38rem 0.7rem;
  border-radius: 999px;
  color: var(--guest-book-green-dark);
  background: color-mix(
    in srgb,
    var(--guest-book-lime) 28%,
    var(--bs-body-bg)
  );
  font-size: 0.78rem;
  font-weight: 700;
}

[data-bs-theme="dark"] .location-chip {
  color: var(--guest-book-lime);
}

.aside-card {
  padding: 1.5rem;
}

.sticky-aside {
  position: sticky;
  top: 7.25rem;
}

.icon-tile {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 18px;
  color: var(--guest-book-green-dark);
  background: color-mix(
    in srgb,
    var(--guest-book-lime) 35%,
    var(--bs-body-bg)
  );
  font-size: 1.45rem;
}

[data-bs-theme="dark"] .icon-tile {
  color: var(--guest-book-lime);
}

.pagination {
  --bs-pagination-color: var(--guest-book-green);
  --bs-pagination-hover-color: var(--guest-book-green-dark);
  --bs-pagination-focus-color: var(--guest-book-green-dark);
  --bs-pagination-active-bg: var(--guest-book-green);
  --bs-pagination-active-border-color: var(--guest-book-green);
  --bs-pagination-border-radius: 999px;

  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 0;
}

.pagination .page-link {
  min-width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  padding: 0.5rem 0.8rem;
  border-radius: 999px !important;
  font-weight: 700;
  box-shadow: none;
}

.pagination .page-item.disabled .page-link {
  opacity: 0.55;
}

.pagination .pagination-ellipsis .page-link {
  border-color: transparent;
  background: transparent;
  cursor: default;
}

.pagination-summary {
  font-size: 0.95rem;
}

.mobile-page-indicator {
  display: none;
}

.archive-status {
  border-radius: 1.25rem;
  background: color-mix(
    in srgb,
    var(--guest-book-lime) 16%,
    var(--bs-body-bg)
  );
}

.cta-panel {
  overflow: hidden;
  color: #fff;
  background:
    linear-gradient(
      110deg,
      rgba(18, 75, 48, 0.96),
      rgba(38, 115, 77, 0.78)
    ),
    url("../../01-mailbox-01.jpg") center / cover;
  background-repeat: no-repeat;
  border-radius: 2.2rem;
}

.copy-feedback {
  min-height: 1.4rem;
}

@media (max-width: 991.98px) {
  .guestbook-hero {
    min-height: 740px;
  }

  .section-email {
    padding: 5rem 0;
  }

  .sticky-aside {
    position: static;
  }
}

@media (max-width: 575.98px) {
  .guestbook-hero {
    min-height: 700px;
  }

  .guest-message {
    min-height: auto;
  }

  .desktop-page-numbers {
    display: none;
  }

  .mobile-page-indicator {
    display: block;
  }

  .pagination {
    justify-content: space-between;
    width: 100%;
  }

  .pagination .page-link {
    min-width: 42px;
  }

  .email-box {
    align-items: flex-start;
  }
}

/* divider */

.section-divider {
  height: 1px;
  margin: 2rem 0;
  border: 0;

  background: linear-gradient(
    90deg,
    transparent 0%,
    var(--bs-border-color-translucent) 15%,
    var(--bs-border-color) 50%,
    var(--bs-border-color-translucent) 85%,
    transparent 100%
  );

  opacity: 0.7;
}

.guestbook-divider {
  display: flex;
  align-items: center;
  width: 100%;
}

.guestbook-divider::before,
.guestbook-divider::after {
  content: "";
  flex: 1;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent,
    var(--bs-border-color-translucent)
  );
}

.guestbook-divider::after {
  background: linear-gradient(
    90deg,
    var(--bs-border-color-translucent),
    transparent
  );
}

.guestbook-divider > span {
  width: 6px;
  height: 6px;
  margin: 0 12px;

  background: var(--bs-secondary-color);
  border-radius: 50%;

  opacity: 0.65;
}


/* =========================================================
   CONTACT SUCCESS TOAST
   ========================================================= */

.contact-toast {
    position: fixed;
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);

    z-index: 1085;

    display: flex;
    align-items: center;
    gap: 1.25rem;

    width: min(92%, 650px);
    padding: 1.4rem 1.6rem;

    color: var(--bs-success-text-emphasis);
    background-color: var(--bs-success-bg-subtle);

    border: 1px solid var(--bs-success-border-subtle);
    border-radius: 1rem;

    box-shadow:
        0 0.75rem 2rem rgba(0, 0, 0, 0.18);

    font-size: 1rem;
    line-height: 1.5;
}


.contact-toast-icon {
    flex: 0 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 4.5rem;
    height: 4.5rem;

    font-size: 3rem;
    line-height: 1;

    color: var(--bs-success);
}


.contact-toast-content {
    flex: 1;
    min-width: 0;
}

.contact-toast-title {
    margin-bottom: 0.2rem;

    font-size: 1.25rem;
    font-weight: 700;
    line-height: 1.25;
}

.contact-toast-message {
    font-size: 1rem;
    line-height: 1.5;
}


[data-bs-theme="light"] .contact-toast {
    color: var(--bs-success-text-emphasis);
    background-color: var(--bs-success-bg-subtle);
    border-color: var(--bs-success-border-subtle);

    box-shadow:
        0 0.75rem 2rem rgba(0, 0, 0, 0.16);
}

[data-bs-theme="dark"] .contact-toast {
    color: var(--bs-success-text-emphasis);
    background-color: var(--bs-success-bg-subtle);
    border-color: var(--bs-success-border-subtle);

    box-shadow:
        0 0.75rem 2.5rem rgba(0, 0, 0, 0.45);
}


@media (min-width: 1200px) {

    .contact-toast {
        width: min(90%, 720px);

        gap: 1.5rem;
        padding: 1.6rem 2rem;

        border-radius: 1.1rem;
    }

    .contact-toast-icon {
        width: 5.5rem;
        height: 5.5rem;

        font-size: 3.8rem;
    }

    .contact-toast-title {
        font-size: 1.4rem;
    }

    .contact-toast-message {
        font-size: 1.1rem;
    }
}


@media (min-width: 768px) and (max-width: 1199.98px) {

    .contact-toast {
        width: min(90%, 620px);

        gap: 1.25rem;
        padding: 1.35rem 1.5rem;
    }

    .contact-toast-icon {
        width: 4.5rem;
        height: 4.5rem;

        font-size: 3rem;
    }

    .contact-toast-title {
        font-size: 1.25rem;
    }

    .contact-toast-message {
        font-size: 1rem;
    }
}


@media (max-width: 767.98px) {

    .contact-toast {
        top: 1rem;

        width: calc(100% - 2rem);

        gap: 1rem;
        padding: 1.1rem 1.2rem;

        border-radius: 0.85rem;
    }

    .contact-toast-icon {
        width: 3.75rem;
        height: 3.75rem;

        font-size: 2.6rem;
    }

    .contact-toast-title {
        font-size: 1.15rem;
    }

    .contact-toast-message {
        font-size: 0.95rem;
    }
}


@media (max-width: 399.98px) {

    .contact-toast {
        top: 0.75rem;

        width: calc(100% - 1.25rem);

        gap: 0.8rem;
        padding: 1rem;

        border-radius: 0.75rem;
    }

    .contact-toast-icon {
        width: 3.1rem;
        height: 3.1rem;

        font-size: 2.2rem;
    }

    .contact-toast-title {
        font-size: 1.05rem;
    }

    .contact-toast-message {
        font-size: 0.9rem;
    }
}

/* hide contact toast */

.contact-toast {
    top: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    position: fixed;

    padding-right: 4rem;
}

.contact-toast-close {
    position: absolute;
    top: 0.75rem;
    right: 0.75rem;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 2.75rem;
    height: 2.75rem;

    padding: 0;

    color: currentColor;
    background: transparent;

    border: 0;
    border-radius: 50%;

    font-family: Arial, sans-serif;
    font-size: 2rem;
    font-weight: 300;
    line-height: 1;

    opacity: 0.7;
    cursor: pointer;

    transition:
        opacity 0.2s ease,
        background-color 0.2s ease,
        transform 0.2s ease;
}

.contact-toast-close:hover {
    opacity: 1;
    background-color: rgba(127, 127, 127, 0.15);
}

.contact-toast-close:active {
    transform: scale(0.9);
}

.contact-toast-close:focus-visible {
    outline: 2px solid currentColor;
    outline-offset: 2px;
}

@media (max-width: 767.98px) {
    .contact-toast {
        padding-right: 3.5rem;
    }

    .contact-toast-close {
        top: 0.5rem;
        right: 0.5rem;

        width: 2.4rem;
        height: 2.4rem;

        font-size: 1.75rem;
    }
}