/*
 * Elysium Code additions to the Drake theme:
 * site footer (trading name / company details) and the /legal/ page.
 */

/* Footer */
.elysium-footer {
    margin-top: 60px;
    padding-bottom: 50px;
}
/* Homepage: the contact section above already provides the spacing */
.drake-main .elysium-footer {
    margin-top: 0;
}
.elysium-footer-inner {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px 40px;
    padding-top: 40px;
    border-top: 1px solid #565656;
    font-size: 14px;
    line-height: 1.7;
    color: #999999;
}
.elysium-footer p {
    margin: 0;
    padding: 0;
}
.elysium-footer-legal {
    flex: 1 1 360px;
    max-width: 560px;
}
.elysium-footer-legal .elysium-footer-copyright {
    color: #fff;
    margin-bottom: 4px;
}
.elysium-footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 24px;
}
.elysium-footer-links a {
    color: #fff;
    transition: .3s;
}
.elysium-footer-links a:hover {
    color: var(--primary_color);
}

/* Legal / company information page */
.elysium-legal-area {
    padding: 40px 0 40px;
}
.elysium-legal-area .elysium-legal-intro {
    font-size: 20px;
    color: #fff;
    font-weight: 300;
    margin-bottom: 50px;
    max-width: 770px;
}
.elysium-legal-details {
    margin: 0 0 50px;
    border-top: 1px solid #565656;
}
.elysium-legal-details > div {
    display: grid;
    grid-template-columns: 240px 1fr;
    gap: 4px 30px;
    padding: 20px 0;
    border-bottom: 1px solid #565656;
}
.elysium-legal-details dt {
    font-size: 12px;
    font-weight: 400;
    text-transform: uppercase;
    color: #999999;
    padding-top: 4px;
}
.elysium-legal-details dd {
    margin: 0;
    font-size: 18px;
    color: #fff;
    font-weight: 300;
}

@media (max-width: 767px) {
    .elysium-footer-inner {
        flex-direction: column;
        padding-top: 30px;
    }
    .elysium-footer-legal {
        flex-basis: auto;
    }
    .elysium-legal-area .elysium-legal-intro {
        font-size: 18px;
    }
    .elysium-legal-details > div {
        grid-template-columns: 1fr;
        padding: 16px 0;
    }
    .elysium-legal-details dd {
        font-size: 16px;
    }
    .elysium-legal-area .theme-btn {
        padding-left: 30px;
        padding-right: 30px;
    }
}
