/*
 * Hand-built footer styles (replaces the WP theme's footer.css).
 * Matches the site's design language: Figtree, #0D0E10 headings,
 * #676879 body text, #433CE7/#5C3EF4 purple accents.
 */

.cmk-footer{
  background:#fff;
  border-top:1px solid rgba(86,95,118,.12);
  padding-top:70px;
  font-family:"Figtree",sans-serif;
}

.cmk-footer-grid{
  display:grid;
  grid-template-columns:1.5fr 1fr 1fr;
  gap:48px;
  padding-bottom:56px;
}

/* Brand column */
.cmk-footer-logo{max-width:220px;height:auto;}
.cmk-footer-address{
  font-style:normal;
  margin-top:20px;
  display:flex;
  flex-direction:column;
  gap:4px;
}
.cmk-footer-address a,
.cmk-footer-address span{
  color:#676879;
  font-size:15px;
  line-height:1.7;
  text-decoration:none;
}
.cmk-footer-address a:hover{color:#433CE7;}

.cmk-footer-social{
  list-style:none;
  display:flex;
  gap:12px;
  margin:22px 0 0;
  padding:0;
}
.cmk-footer-social a{
  display:flex;
  align-items:center;
  justify-content:center;
  width:38px;
  height:38px;
  border-radius:50%;
  background:#F0E9FF;
  color:#433CE7;
  font-size:15px;
  transition:all .3s ease;
}
.cmk-footer-social a:hover{background:#433CE7;color:#fff;transform:translateY(-2px);}

/* Link columns */
.cmk-footer-col h3{
  color:#0D0E10;
  font-size:18px;
  font-weight:700;
  margin-bottom:18px;
}
.cmk-footer-links{list-style:none;margin:0;padding:0;}
.cmk-footer-links li{margin-bottom:10px;}
.cmk-footer-links a{
  color:#676879;
  font-size:15px;
  text-decoration:none;
  transition:color .3s ease;
}
.cmk-footer-links a:hover{color:#433CE7;}

.cmk-footer-post{
  display:block;
  color:#0D0E10;
  font-size:15px;
  font-weight:600;
  line-height:1.5;
  text-decoration:none;
  transition:color .3s ease;
}
.cmk-footer-post:hover{color:#433CE7;}
.cmk-footer-post-meta{
  color:#9a9fae;
  font-size:13px;
  margin-top:6px;
}

/* Bottom bar */
.cmk-footer-bottom{
  border-top:1px solid rgba(86,95,118,.12);
  padding:20px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:16px;
  flex-wrap:wrap;
}
.cmk-footer-bottom p{color:#676879;font-size:14px;margin:0;}
.cmk-footer-bottom-links{
  list-style:none;
  display:flex;
  gap:24px;
  margin:0;
  padding:0;
}
.cmk-footer-bottom-links a{
  color:#676879;
  font-size:14px;
  text-decoration:none;
  transition:color .3s ease;
}
.cmk-footer-bottom-links a:hover{color:#433CE7;}

@media (max-width:991px){
  .cmk-footer{padding-top:50px;}
  .cmk-footer-grid{grid-template-columns:1fr 1fr;gap:36px;padding-bottom:40px;}
}
@media (max-width:600px){
  .cmk-footer-grid{grid-template-columns:1fr;}
  .cmk-footer-bottom{flex-direction:column;justify-content:center;text-align:center;}
}
