 /* ==========================================================================
       Footer Styles
       ========================================================================== */

 .dcv-footer {
     background-color: black;
     margin-top: auto;
 }

 .dcv-footer__container {
     max-width: 1440px;
     margin: 0 auto;
     padding: 2.5rem 1.5rem 1.5rem 1.5rem;
 }

 .dcv-footer__top {
     display: flex;
     justify-content: space-between;
     align-items: flex-start;
 }

 .dcv-footer__brand {
     display: flex;
     flex-direction: column;
     gap: 1rem;
 }

 .dcv-footer__logo {
     width: 80px;
     height: 40px;
 }

 .dcv-footer__social {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 32px;
     height: 32px;
     color: white;
     background-color: #333;
     border-radius: var(--radius);
     transition: background-color 0.15s ease;
     text-decoration: none;
 }

 .dcv-footer__social:hover {
     background-color: #444;
 }

 .dcv-footer__contact {
     display: flex;
     flex-direction: column;
     align-items: flex-end;
     gap: 0.75rem;
 }

 .dcv-footer__contact-text {
     font-size: 1rem;
     color: white;
     text-align: left;
     margin: 0;
     line-height: 1.5;
 }

 .dcv-footer__contact-btn {
     display: inline-flex;
     align-items: center;
     gap: 0.5rem;
     padding: 0.625rem 1.25rem;
     font-size: 0.875rem;
     font-weight: 500;
     color: white;
     background-color: transparent;
     border: 1px solid white;
     border-radius: 18px;
     text-decoration: none;
     transition: all 0.15s ease;
 }

 .dcv-footer__contact-btn:hover {
     background-color: white;
     color: #1f1f1f;
    border: 1px solid black;
 }

 .dcv-footer__divider {
     height: 1px;
     background-color: #444;
     margin: 2rem 0 1.5rem 0;
 }

 .dcv-footer__bottom {
     display: flex;
     justify-content: space-between;
     align-items: center;
 }

 .dcv-footer__copyright {
     font-size: 0.8125rem;
     color: #ffffff;
     margin: 0;
     font-weight: 600;
 }

 .dcv-footer__links {
     display: flex;
     gap: 2rem;
 }

 .dcv-footer__link {
     font-size: 0.8125rem;
     color: white;
     text-decoration: underline;
     transition: color 0.15s ease;
 }

 .dcv-footer__link:hover {
     color: #ccc;
 }
 body.buddypress.activate.login-split-page .activate-section-logo, body.buddypress.activate.login-split-page .register-section-logo, body.buddypress.register.login-split-page .activate-section-logo, body.buddypress.register.login-split-page .register-section-logo{
    font-size: 34px;
    font-weight: bold;
    font-family: system-ui;
 }
 /* ==========================================================================
       Responsive Design - Footer Only
       ========================================================================== */

 @media (max-width: 1024px) {
     .dcv-footer__container {
         padding: 2rem 1rem;
     }

     .dcv-footer__bottom {
         flex-direction: column;
         gap: 1rem;
         text-align: center;
     }

     .dcv-footer__links {
         gap: 1.5rem;
     }
 }

 @media (max-width: 640px) {
     .dcv-footer__top {
         flex-direction: column;
         gap: 1.5rem;
     }

     .dcv-footer__contact {
         align-items: flex-start;
     }

     .dcv-footer__contact-text {
         text-align: left;
     }

     .dcv-footer__links {
         flex-direction: column;
         gap: 0.75rem;
     }
 }
