.blog-header {
  width: 100%;
  border-bottom: 1px solid rgba(26, 166, 166, 0.25);
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 111, 116, 0.08);
}

.blog-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: min(1120px, calc(100% - 2rem));
  min-height: 104px;
  margin-inline: auto;
}

.blog-brand {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  color: #263238;
  text-decoration: none;
}

.blog-brand img {
  width: 76px;
  height: 76px;
  object-fit: contain;
}

.blog-brand span {
  display: grid;
}

.blog-brand strong {
  color: #0f6f74;
  font-family: "Fraunces", serif;
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
}

.blog-brand small {
  color: #65767a;
  font-family: Arial, sans-serif;
}

.blog-nav a,
.blog-footer a {
  color: #0f6f74;
  font-family: Arial, sans-serif;
  font-weight: 700;
  text-decoration: none;
}

.blog-nav a:hover,
.blog-footer a:hover {
  color: #f27d72;
}

.font-page {
  padding: 40px;
}

.blog-footer {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  margin-top: 3rem;
  padding: 1.5rem max(1rem, calc((100% - 1120px) / 2));
  background: #263238;
  color: #fff;
  font-family: Arial, sans-serif;
}

.blog-footer p {
  margin: 0;
}

.blog-footer a {
  color: #8ce0dc;
}

@media (max-width: 700px) {
  .blog-header-inner,
  .blog-footer {
    align-items: center;
    flex-direction: column;
    text-align: center;
  }

  .blog-header-inner {
    padding-block: 1rem;
  }

  .blog-brand {
    flex-direction: column;
    text-align: center;
  }

  .font-page {
    padding: 20px;
  }
}
