/* code. travel. repeat. — custom theme */
:root {
  --fg: #2d2d2d;
  --muted: #6b6b6b;
  --bg: #ffffff;
  --accent: #c0392b;
  --tile-overlay: rgba(0, 0, 0, 0.35);
  --max-width: 1200px;
  --gap: 14px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  color: var(--fg);
  background: var(--bg);
  line-height: 1.55;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--accent); }

img { max-width: 100%; height: auto; }

.clearfix::after { content: ""; display: table; clear: both; }

/* ---------- Header ---------- */
.site-header {
  text-align: center;
  padding: 0;
  max-width: var(--max-width);
  margin: 0 auto;
}
.site-branding #logo { display: inline-block; }
.site-branding { padding: 60px 0; }
.site-header img { max-height: 100px; width: auto; }
.site-title {
  font-size: 24px;
  line-height: 24px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--fg);
  margin: 0;
}
.site-description {
  font: 0.8em "Open Sans", Helvetica, Arial, sans-serif;
  color: #2d2d2d;
  padding: 5px;
  font-style: italic;
  margin: 0;
}

/* Nav */
.main-navigation { margin: 0; border-top: solid 3px #333; position: relative; }
.menu-toggle-checkbox { display: none; }
.menu-toggle { display: none; }
.nav-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 22px;
}
.nav-menu .menu-item a {
  text-transform: uppercase;
  font-size: 0.78rem;
  letter-spacing: 1.4px;
  color: var(--fg);
  font-weight: 600;
  padding: 34px;
  border-bottom: 2px solid transparent;
  display: inline-block;
}
.nav-menu .menu-item.active a,
.nav-menu .menu-item a:hover { border-bottom-color: var(--accent); color: var(--accent); }

@media (max-width: 768px) {
  .main-navigation { padding: 0; }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    padding: 14px 16px;
    cursor: pointer;
    user-select: none;
  }
  .menu-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--fg);
    transition: transform 0.2s, opacity 0.2s;
  }
  .menu-toggle-checkbox:checked + .menu-toggle span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
  .menu-toggle-checkbox:checked + .menu-toggle span:nth-child(2) { opacity: 0; }
  .menu-toggle-checkbox:checked + .menu-toggle span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

  .nav-menu {
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 0 0 8px;
  }
  .menu-toggle-checkbox:checked ~ .nav-menu { display: flex; }
  .nav-menu .menu-item { width: 100%; text-align: center; }
  .nav-menu .menu-item a {
    padding: 12px 16px;
    border-bottom: 1px solid #eee;
    width: 100%;
  }
  .nav-menu .menu-item:last-child a { border-bottom: 0; }
  .nav-menu .menu-item.active a,
  .nav-menu .menu-item a:hover { border-bottom-color: var(--accent); }
}

/* ---------- Hero ---------- */
.hero {
  text-align: center;
  padding: 0;
}
.hero-banner {
  max-width: 1200px;
  margin: 0 auto;
}
.hero-banner img {
  width: 100%;
  max-width: 1200px;
  height: 400px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 2px;
}
.hero-title {
  font-size: 2rem;
  font-weight: 300;
  letter-spacing: 1px;
  margin: 0;
  color: var(--fg);
}

/* ---------- Square tile grid ---------- */
#squarePosts {
  max-width: var(--max-width);
  margin: 0 auto 40px;
  padding: 0;
}
#squareTiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}
.box { position: relative; }
.innerBox {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 400 / 363;
  background-color: #222;
  background-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  overflow: hidden;
  transition: transform 0.35s ease;
}
.innerBox::before {
  content: "";
  position: absolute;
  inset: 0;
  background: transparent;
  transition: background 0.3s ease;
}
.innerBox:hover { filter: grayscale(100%); }
.innerBox:hover::before { background: rgba(0, 0, 0, 0.5); }
.titleBox {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  text-align: center;
  z-index: 1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.innerBox:hover .titleBox { opacity: 1; }
.titleBox h3 {
  color: #fff;
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

/* ---------- Archive header ---------- */
.archive-header {
  text-align: center;
  padding: 20px 0;
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
}

.archive-title {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0;
  color: var(--fg);
}
.archive-count {
  text-align: center;
  color: var(--muted);
  font-size: 0.85rem;
  margin: 8px 0 30px;
}

/* ---------- Pagination ---------- */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  margin: 30px 0 60px;
  font-size: 0.9rem;
}
.pagination a { padding: 8px 14px; border: 1px solid #ddd; border-radius: 3px; }
.pagination a:hover { border-color: var(--accent); color: var(--accent); }
.pagination .page-info { color: var(--muted); }

/* ---------- Single-nav (prev/next under main nav) ---------- */
#single-nav {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  max-width: var(--max-width);
  margin: 0 auto;
  min-height: 38px;
  border-bottom: 1px solid #eee;
  border-top: 1px solid #eee;
  gap: 8px;
}
#single-nav-right,
#single-nav-left {
  flex: 1 1 0;
  min-width: 0;
  display: flex;
}
#single-nav-left { justify-content: flex-end; }
#single-nav a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  padding: 0 14px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.3px;
  line-height: 1.2;
  color: var(--muted);
  transition: color 0.2s;
  max-width: 100%;
}
#single-nav a:hover { color: var(--accent); }
#single-nav .nav-arrow { font-size: 1.4rem; line-height: 1; flex-shrink: 0; }
#single-nav .nav-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
@media (max-width: 600px) {
  #single-nav .nav-title { display: none; }
  #single-nav a { padding: 0 10px; }
}

/* Bottom post navigation */
.single-nav-below {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin: 36px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid #eee;
  font-size: 0.85rem;
  font-weight: 600;
}
.single-nav-below .nav-prev,
.single-nav-below .nav-next { flex: 1 1 0; min-width: 0; }
.single-nav-below .nav-next { text-align: right; }
.single-nav-below a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  padding: 14px 16px;
  border: 1px solid #eee;
  border-radius: 3px;
  color: var(--fg);
  transition: border-color 0.2s, color 0.2s;
  letter-spacing: 0.3px;
}
.single-nav-below a:hover { border-color: var(--accent); color: var(--accent); }
.single-nav-below .nav-arrow { font-size: 1.4rem; line-height: 1; flex-shrink: 0; }
.single-nav-below .nav-title {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* ---------- Post wrap (2-col w/ sidebar) ---------- */
#wrap-content { max-width: var(--max-width); margin: 0 auto; padding: 0 20px; }
#content {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 40px;
  margin: 28px 0 60px;
}

/* ---------- Single post ---------- */
.post.single { margin: 0; min-width: 0; }

.entry-header { margin: 0 0 28px; }
.entry-thumbnail { margin: 0; }
.entry-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 2px;
}

.entry-content {
  max-width: none;
  margin: 0;
  padding: 0;
  font-size: 1rem;
  line-height: 1.7;
  color: #333;
}
.page-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin: 18px 0 24px;
  text-align: left;
  line-height: 1.2;
}
.entry-content p { margin: 0 0 1.1em; }
.entry-content em, .entry-content i { font-style: italic; }
.entry-content a { color: var(--accent); border-bottom: 1px solid transparent; }
.entry-content a:hover { border-bottom-color: var(--accent); }
.entry-content blockquote {
  margin: 1.4em 0;
  padding: 6px 0 6px 18px;
  border-left: 3px solid var(--accent);
  color: var(--muted);
  font-style: italic;
}
.entry-content img {
  display: block;
  margin: 1.6em auto;
  border-radius: 2px;
  max-width: 100%;
  height: auto;
}

/* WP caption figures */
.entry-content figure,
.entry-content .wp-caption {
  margin: 1.8em auto;
  max-width: 100%;
  text-align: center;
  background: #fafafa;
  border: 1px solid #eee;
  padding: 8px 8px 0;
  border-radius: 2px;
}
.entry-content figure img,
.entry-content .wp-caption img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}
.entry-content figcaption,
.entry-content .wp-caption-text {
  display: block;
  text-align: center;
  font-size: 0.85rem;
  color: var(--muted);
  font-style: italic;
  padding: 10px 12px;
  margin: 0;
  letter-spacing: 0.2px;
  line-height: 1.45;
}

/* ---------- Map page ---------- */
#travel-map {
  width: 100%;
  height: 65vh;
  min-height: 420px;
  margin: 18px 0 12px;
  border: 1px solid #ddd;
  border-radius: 2px;
  background: #f4f4f4;
}
.map-count { text-align: center; color: var(--muted); font-size: 0.85rem; margin: 0 0 30px; }
.map-info { font-family: "Open Sans", Helvetica, Arial, sans-serif; font-size: 0.85rem; line-height: 1.4; min-width: 180px; }
.map-info strong { display: block; font-size: 0.95rem; color: var(--fg); margin-bottom: 4px; }
.map-info .map-place { color: var(--muted); margin-bottom: 6px; }
.map-info .map-link { color: var(--accent); font-weight: 600; }
.map-info .map-link:hover { text-decoration: underline; }

/* ---------- Static page ---------- */
.page { margin: 0; min-width: 0; }
.page-header h1 {
  font-size: 2rem;
  margin: 18px 0 24px;
  font-weight: 700;
  text-align: left;
  line-height: 1.2;
}
.page-content { font-size: 1rem; line-height: 1.7; color: #333; }
.page-content p { margin: 0 0 1.1em; }
.page-content img { display: block; margin: 1.4em auto; max-width: 100%; height: auto; }
.page-content blockquote {
  margin: 1.4em 0;
  padding: 6px 0 6px 18px;
  border-left: 3px solid var(--accent);
  color: var(--muted);
  font-style: italic;
}
.page-content a { color: var(--accent); border-bottom: 1px solid transparent; }
.page-content a:hover { border-bottom-color: var(--accent); }

/* ---------- Entry meta ---------- */
.entry-meta {
  margin: 36px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid #eee;
  font-size: 0.85rem;
  color: var(--muted);
  text-align: center;
}
.entry-meta .posted { margin-bottom: 8px; }
.entry-meta .extrameta a {
  color: var(--muted);
  border-bottom: 1px dotted var(--muted);
}
.entry-meta .extrameta a:hover { color: var(--accent); border-bottom-color: var(--accent); }
.entry-meta .cat-links { margin-right: 10px; }

/* ---------- Sidebar ---------- */
#secondary { font-size: 0.88rem; }
#secondary .widget {
  margin-bottom: 32px;
  padding-bottom: 22px;
  border-bottom: 1px solid #eee;
}
#secondary .widget:last-child { border-bottom: 0; }
#secondary .widget-title {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--fg);
  margin: 0 0 14px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--accent);
  display: inline-block;
}
#secondary .author-photo {
  text-align: center;
  margin: 0 0 12px;
}
#secondary .author-photo img {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.12);
  border: 4px solid white;
}
#secondary .author-bio {
  text-align: center;
  color: var(--muted);
  margin: 0;
  font-style: italic;
  line-height: 1.5;
}
#secondary .recent-thumbs {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
#secondary .recent-thumbs li { aspect-ratio: 1 / 1; }
#secondary .recent-thumbs a {
  display: block;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
#secondary .recent-thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: filter 0.25s;
}
#secondary .recent-thumbs a:hover img { filter: grayscale(100%); }
#secondary .recent-thumbs a[aria-current="page"] img { outline: 3px solid var(--accent); outline-offset: -3px; }
#secondary .category-image-link {
  display: block;
  margin-bottom: 8px;
  overflow: hidden;
}
#secondary .category-image-link img {
  width: 100%;
  height: auto;
  display: block;
  transition: filter 0.25s;
}
#secondary .category-image-link:hover img { filter: grayscale(100%); }

@media (max-width: 880px) {
  #content { grid-template-columns: 1fr; gap: 32px; }
  #secondary .recent-thumbs { grid-template-columns: repeat(6, 1fr); }
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid #eee;
  margin-top: 40px;
  padding: 22px 20px 28px;
  font-size: 0.82rem;
  color: var(--muted);
}
.site-info {
  max-width: var(--max-width);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}
.site-info .col.social { display: flex; gap: 14px; }
.site-info .col.social a {
  width: 32px; height: 32px;
  display: inline-flex; align-items: center; justify-content: center;
  border: 1px solid #ddd; border-radius: 50%;
  font-size: 0; /* hide label text; pseudo-element draws icon */
  position: relative;
}
.site-info .col.social a::before {
  content: ""; width: 14px; height: 14px;
  background: var(--muted); mask-size: contain; mask-repeat: no-repeat; mask-position: center;
  -webkit-mask-size: contain; -webkit-mask-repeat: no-repeat; -webkit-mask-position: center;
}
.site-info .col.social a:hover { border-color: var(--accent); }
.site-info .col.social a:hover::before { background: var(--accent); }
.ico-instagram::before { mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 2.16c3.2 0 3.58 0 4.85.07 1.17.05 1.8.25 2.23.41.56.22.96.48 1.38.9.42.42.68.82.9 1.38.16.42.36 1.06.41 2.23.06 1.27.07 1.65.07 4.85s0 3.58-.07 4.85c-.05 1.17-.25 1.8-.41 2.23-.22.56-.48.96-.9 1.38-.42.42-.82.68-1.38.9-.42.16-1.06.36-2.23.41-1.27.06-1.65.07-4.85.07s-3.58 0-4.85-.07c-1.17-.05-1.8-.25-2.23-.41a3.7 3.7 0 0 1-1.38-.9 3.7 3.7 0 0 1-.9-1.38c-.16-.42-.36-1.06-.41-2.23C2.17 15.58 2.16 15.2 2.16 12s0-3.58.07-4.85c.05-1.17.25-1.8.41-2.23.22-.56.48-.96.9-1.38.42-.42.82-.68 1.38-.9.42-.16 1.06-.36 2.23-.41C8.42 2.17 8.8 2.16 12 2.16M12 0C8.74 0 8.33.01 7.05.07 5.78.13 4.9.33 4.14.63a5.86 5.86 0 0 0-2.13 1.38A5.86 5.86 0 0 0 .63 4.14C.33 4.9.13 5.78.07 7.05.01 8.33 0 8.74 0 12s.01 3.67.07 4.95c.06 1.27.26 2.15.56 2.91a5.86 5.86 0 0 0 1.38 2.13c.66.66 1.33 1.07 2.13 1.38.76.3 1.64.5 2.91.56C8.33 23.99 8.74 24 12 24s3.67-.01 4.95-.07c1.27-.06 2.15-.26 2.91-.56a5.86 5.86 0 0 0 2.13-1.38c.66-.66 1.07-1.33 1.38-2.13.3-.76.5-1.64.56-2.91.06-1.28.07-1.69.07-4.95s-.01-3.67-.07-4.95c-.06-1.27-.26-2.15-.56-2.91a5.86 5.86 0 0 0-1.38-2.13A5.86 5.86 0 0 0 19.86.63C19.1.33 18.22.13 16.95.07 15.67.01 15.26 0 12 0Zm0 5.84a6.16 6.16 0 1 0 0 12.32A6.16 6.16 0 0 0 12 5.84Zm0 10.16A4 4 0 1 1 12 8a4 4 0 0 1 0 8Zm6.4-11.84a1.44 1.44 0 1 0 0 2.88 1.44 1.44 0 0 0 0-2.88Z'/></svg>"); -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M12 2.16c3.2 0 3.58 0 4.85.07 1.17.05 1.8.25 2.23.41.56.22.96.48 1.38.9.42.42.68.82.9 1.38.16.42.36 1.06.41 2.23.06 1.27.07 1.65.07 4.85s0 3.58-.07 4.85c-.05 1.17-.25 1.8-.41 2.23-.22.56-.48.96-.9 1.38-.42.42-.82.68-1.38.9-.42.16-1.06.36-2.23.41-1.27.06-1.65.07-4.85.07s-3.58 0-4.85-.07c-1.17-.05-1.8-.25-2.23-.41a3.7 3.7 0 0 1-1.38-.9 3.7 3.7 0 0 1-.9-1.38c-.16-.42-.36-1.06-.41-2.23C2.17 15.58 2.16 15.2 2.16 12s0-3.58.07-4.85c.05-1.17.25-1.8.41-2.23.22-.56.48-.96.9-1.38.42-.42.82-.68 1.38-.9.42-.16 1.06-.36 2.23-.41C8.42 2.17 8.8 2.16 12 2.16M12 0C8.74 0 8.33.01 7.05.07 5.78.13 4.9.33 4.14.63a5.86 5.86 0 0 0-2.13 1.38A5.86 5.86 0 0 0 .63 4.14C.33 4.9.13 5.78.07 7.05.01 8.33 0 8.74 0 12s.01 3.67.07 4.95c.06 1.27.26 2.15.56 2.91a5.86 5.86 0 0 0 1.38 2.13c.66.66 1.33 1.07 2.13 1.38.76.3 1.64.5 2.91.56C8.33 23.99 8.74 24 12 24s3.67-.01 4.95-.07c1.27-.06 2.15-.26 2.91-.56a5.86 5.86 0 0 0 2.13-1.38c.66-.66 1.07-1.33 1.38-2.13.3-.76.5-1.64.56-2.91.06-1.28.07-1.69.07-4.95s-.01-3.67-.07-4.95c-.06-1.27-.26-2.15-.56-2.91a5.86 5.86 0 0 0-1.38-2.13A5.86 5.86 0 0 0 19.86.63C19.1.33 18.22.13 16.95.07 15.67.01 15.26 0 12 0Zm0 5.84a6.16 6.16 0 1 0 0 12.32A6.16 6.16 0 0 0 12 5.84Zm0 10.16A4 4 0 1 1 12 8a4 4 0 0 1 0 8Zm6.4-11.84a1.44 1.44 0 1 0 0 2.88 1.44 1.44 0 0 0 0-2.88Z'/></svg>"); }
.ico-facebook::before { mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M22.68 0H1.32C.59 0 0 .59 0 1.32v21.36C0 23.41.59 24 1.32 24h11.5v-9.29H9.69v-3.62h3.13V8.41c0-3.1 1.89-4.79 4.66-4.79 1.32 0 2.46.1 2.79.14v3.24h-1.92c-1.5 0-1.79.71-1.79 1.76v2.31h3.59l-.47 3.62h-3.12V24h6.13c.73 0 1.32-.59 1.32-1.32V1.32C24 .59 23.41 0 22.68 0Z'/></svg>"); -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M22.68 0H1.32C.59 0 0 .59 0 1.32v21.36C0 23.41.59 24 1.32 24h11.5v-9.29H9.69v-3.62h3.13V8.41c0-3.1 1.89-4.79 4.66-4.79 1.32 0 2.46.1 2.79.14v3.24h-1.92c-1.5 0-1.79.71-1.79 1.76v2.31h3.59l-.47 3.62h-3.12V24h6.13c.73 0 1.32-.59 1.32-1.32V1.32C24 .59 23.41 0 22.68 0Z'/></svg>"); }
.ico-twitter::before { mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.836L1.254 2.25h8.84l4.713 6.231zm-1.16 17.52h1.833L7.084 4.126H5.117z'/></svg>"); -webkit-mask-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'><path fill='black' d='M18.244 2.25h3.308l-7.227 8.26 8.502 11.24H16.17l-5.214-6.817L4.99 21.75H1.68l7.73-8.836L1.254 2.25h8.84l4.713 6.231zm-1.16 17.52h1.833L7.084 4.126H5.117z'/></svg>"); }

#scroll-up {
  position: fixed;
  right: 18px; bottom: 18px;
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 1.2rem;
  opacity: 0.85;
  z-index: 50;
}
#scroll-up:hover { opacity: 1; color: #fff; }

/* ---------- Responsive ---------- */
@media (max-width: 880px) {
  #squareTiles { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  #squareTiles { grid-template-columns: 1fr; }
  .site-header { padding-top: 24px; }
  .nav-menu { gap: 14px; }
  .hero-title { font-size: 1.5rem; }
  .post-title { font-size: 1.5rem; }
  .site-info { justify-content: center; text-align: center; }
}
