.footer-mc {
  color: var(--color-text-footer);
  padding: 6rem var(--large-margin) 3rem;
  font-family: 'DM Sans', sans-serif;
}

.logo-footer {
  display: flex;
  fill: var(--color-text-primary);
  transition: fill 0.3s ease;
  margin-bottom: 0.8rem;
  width: 32px;
}

.footer-content {
  margin: 0 auto;
  gap: 3rem;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer-column-left,
.footer-column-center,
.footer-column-right {
  flex: 1;
  min-width: 200px;
}

.footer-column-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-column-center {
  display: flex;
  justify-content: center;
}

.footer-nav a {
  text-decoration: none;
  text-align: center;
  display: flex;
  justify-content: center;
  margin-bottom: 1.5rem;
  color: var(--color-text-secondary);
}

.footer-nav a:hover {
  color: var(--color-text-primary);
}

.footer-desc {
  font-size: 0.9rem;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  color: var(--color-text-secondary);
}

.footer-column-left {
  align-items: center;
  display: flex;
  flex-direction: column;
}

.footer-socials {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
}

.footer-socials a {
  fill: var(--color-text-secondary);
  align-items: center;
  display: flex;
  justify-content: center;
  width: 40px;
  height: 40px;
  background-color: var(--color-accent-secondary-bg);
  padding: 0.6rem;
  border-radius: 8px;
  transition: background-color 0.3s;
}

.footer-socials a:hover {
  background-color: var(--color-accent-secondary-bg-hover);
  fill: var(--color-text-primary);
}


.cv-download {
  display: inline-flex;
  background-color: var(--color-accent-secondary-bg);
  padding: 0.9rem 1.2rem;
  color: var(--color-text-primary);
  border-radius: 4rem;
  font-size: 0.85rem;
  text-decoration: none;
  transition: background-color 0.3s;
  justify-content: center;
  gap: 0.6rem;
  align-items: center;
}

.cv-download:hover {
  background-color: var(--color-accent-secondary-bg-hover);
}

.footer-bottom {
  margin: 3rem auto 0;
  border-top: 1px solid var(--color-border-light);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  font-size: 0.8rem;
  text-align: center;
  color: var(--color-text-tertiary);
  flex-direction: column;
  gap: 1rem;
}

.footer-bottom p{
  font-size: 1rem;
}

.footer-legal {
  color: var(--color-text-tertiary);
  text-decoration: none;
}

.footer-legal:hover {
  color: var(--color-text-primary);
}


@media (pointer: fine) {
  .grid-item:hover>.glow-section__top-layer {
    background: var(--color-bg-secondary-hover);
  }
}