.footer {
  padding: 140px 0 60px;
}

.footer-bar {
  max-width: var(--max-width);
  margin: 0 auto;
  background: #1D3FC7;
  border-radius: 16px;
  padding: 24px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-name {
  text-decoration: none;
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-links a {
  font-family: 'Roboto Mono', monospace;
  font-weight: 400;
  font-size: 14px;
  color: #FFFFFF;
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 0.7;
}

.footer-dot {
  font-family: 'Roboto Mono', monospace;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
}

.footer-name {
  font-family: 'DM Serif Display', serif;
  font-weight: 400;
  font-size: 26px;
  color: #FFFFFF;
}

@media (max-width: 600px) {
  .footer-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}
