/* ===== FOOTER EDITORIAL ===== */

.footer {
  border-top: 1px solid #eee;
  margin-top: 160px;
  padding: 100px 0 40px;
}

/* ===== GRID ===== */
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}

/* ===== LEFT (TEXT) ===== */
.footer-left {
  max-width: 500px;
}

.footer-title {
  font-family: 'Playfair Display', serif;
  font-size: 24px;
  margin-bottom: 15px;
  color: #C1121F; /* CI Rot */
}

.footer-text {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
}

/* ===== RIGHT (LINKS) ===== */
.footer-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-end;
}

.footer-right a {
  font-size: 14px;
  color: #555;
  position: relative;
  transition: color 0.25s ease;
}

/* SUBTILE UNDERLINE */
.footer-right a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 0;
  height: 1px;
  background: #C1121F;
  transition: width 0.25s ease;
}

.footer-right a:hover {
  color: #111;
}

.footer-right a:hover::after {
  width: 100%;
}

/* ===== BOTTOM ===== */
.footer-bottom {
  margin-top: 80px;
}

.footer-bottom p {
  font-size: 12px;
  color: #999;
  letter-spacing: 0.3px;
}

/* ===== OPTIONAL BACKGROUND ===== */
/* uncomment if you want softer contrast */
/*
.footer {
  background: #fafafa;
}
*/

/* ===== MOBILE ===== */
@media (max-width: 768px) {

  .footer-grid {
    flex-direction: column;
    gap: 40px;
  }

  .footer-right {
    align-items: flex-start;
  }

}