

.news-footer {
  background-color: #800000; /* Maroon base */
  color: #f5f5f5;
  position: relative;
  overflow: hidden;
}

.news-footer::before {
  content: "";
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle at top left, rgba(255, 0, 0, 0.2), transparent 70%);
  z-index: 0;
}

.news-footer .container {
  position: relative;
  z-index: 2;
}

.news-footer .footer-logo {
  max-width: 180px;
}

.footer-links li {
  margin-bottom: 8px;
}

.footer-links a {
  color: #f0dede;
  text-decoration: none;
  transition: all 0.3s;
}

.footer-links a:hover {
  color: #ff4d4d;
  padding-left: 6px;
}

.social-icons a {
  display: inline-block;
  color: #fff;
  background: #660000;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
  margin-right: 8px;
  transition: all 0.3s ease;
  box-shadow: 0 0 5px rgba(255, 0, 0, 0.2);
}

.social-icons a:hover {
  background: #ff0000;
  transform: translateY(-4px);
  box-shadow: 0 0 12px rgba(255, 0, 0, 0.5);
}

.newsletter-form input {
  border-radius: 20px;
  padding: 8px 14px;
  border: none;
  outline: none;
}

.newsletter-form button {
  border-radius: 50%;
  width: 42px;
  height: 42px;
  transition: all 0.3s ease;
}

.newsletter-form button:hover {
  background-color: #ff4d4d;
}

.footer-bottom-links a {
  color: #f0dede;
  text-decoration: none;
  font-size: 0.9rem;
  transition: 0.3s;
}

.footer-bottom-links a:hover {
  color: #ff4d4d;
}

@media (max-width: 767px) {
  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input {
    margin-bottom: 10px;
    width: 100%;
  }

  .newsletter-form button {
    width: 100%;
    border-radius: 20px;
  }
}

