.site-footer {
  background: #0a0a0a;
  color: #fff;
  font-family: 'Poppins', sans-serif;
}

.footer-top {
  padding: 80px 20px 60px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-top-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
}

.footer-col-1 {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-podcast {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer-podcast img {
  width: 28px;
  height: 28px;
}

.footer-col-title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
}

.footer-podcast-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.5);
  line-height: 1.6;
  margin: 0;
}

.footer-learn-more {
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: opacity 0.15s;
}

.footer-learn-more:hover {
  opacity: 1;
  color: rgb(255, 220, 94);
}

.footer-socials {
  display: flex;
  gap: 12px;
}

.footer-social-link {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.15s;
}

.footer-social-link:hover {
  background: rgba(255, 255, 255, 0.16);
}

.footer-social-link svg {
  width: 18px;
  height: 18px;
  color: #fff;
}

/* LINK COLS */
.footer-col-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer-col-links .footer-col-title {
  margin-bottom: 4px;
}

.footer-link {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-link:hover {
  color: #fff;
}

/* BOTTOM */
.footer-bottom {
  padding: 28px 20px;
}

.footer-bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer-bottom-logo {
  height: 32px;
  width: auto;
}

.footer-bottom-right {
  display: flex;
  align-items: center;
  gap: 24px;
}

.footer-email {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-email svg {
  color: rgba(255, 255, 255, 0.6);
  flex-shrink: 0;
}

.footer-email:hover {
  color: #fff;
}

.footer-copyright {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.4);
}

/* RESPONSIVE */
@media (max-width: 1024px) {
  .footer-top-inner {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 640px) {
  .footer-top-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom-inner {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-bottom-right {
    flex-direction: column;
    gap: 8px;
  }
}