:root {
  --footer-bg: #c7c7bf;
  --footer-text: #232323;
  --footer-border: #b0b0a8;
}

.site-footer {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 1.5rem;
  background-color: var(--footer-bg);
  color: var(--footer-text);
  padding: 1.5rem 2rem;
  border: 1px solid var(--footer-border);
  border-radius: 18px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  margin: 2rem auto 0;
  width: min(1100px, 100%);
  box-sizing: border-box;
}

.site-footer .footer-branding {
  flex-shrink: 0;
  display: flex;
  align-items: center;
}

.site-footer .footer-image {
  display: block;
  max-width: 180px;
  height: auto;
}

.site-footer .footer-content {
  flex: 1 1 0;
  display: flex;
  align-items: stretch;
  min-width: 0;
}

.site-footer .footer-text-box {
  flex: 1 1 auto;
  width: 100%;
  min-height: 100%;
  padding: 1rem 1.25rem;
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid var(--footer-border);
  border-radius: 12px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}

.site-footer .footer-text-box p {
  margin: 0;
  line-height: 1.6;
  font-size: clamp(1.1rem, 2.8vw, 2.2rem);
  font-weight: 700;
  font-style: italic;
  overflow-wrap: anywhere;
}

.site-footer a {
  color: var(--footer-text);
  text-decoration: none;
}

.site-footer a:hover {
  color: #2b53b3;
  text-decoration: underline;
}

@media (max-width: 900px) {
  .site-footer {
    gap: 1rem;
    padding: 1rem;
    border-radius: 14px;
  }

  .site-footer .footer-image {
    max-width: 150px;
  }

  .site-footer .footer-text-box {
    padding: 0.85rem 1rem;
  }

  .site-footer .footer-text-box p {
    line-height: 1.45;
  }
}

@media (max-width: 600px) {
  .site-footer {
    flex-direction: column;
    align-items: stretch;
  }

  .site-footer .footer-branding {
    justify-content: center;
  }

  .site-footer .footer-content {
    width: 100%;
  }

  .site-footer .footer-image {
    max-width: 140px;
  }

  .site-footer .footer-text-box p {
    line-height: 1.4;
    text-align: center;
  }
}
