.copy-right-wrapper {
    width: 100%;
    .copy-right.block {
        background-color: var(--primary-black);
        padding: 18px 60px;
        margin: 18px -15px 0px -15px;

        .copy-right-wrapper {
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 5px;

            @media (width >=768px) {
                flex-direction: row;
                align-items: start;
                gap: 0px;
            }

            .copy-right-text {
                flex: 1;
                text-transform: uppercase;
                font-family: var(--corp-fort-family);
                font-size: var(--heading-font-25-des);
                font-weight: var(--fw-500p);
                line-height: var(--heading-lh-24-mob-text-small);

                @media (width >=768px) {
                    font-size: var(--heading-font-11-mob-text-small);
                    line-height: var(--heading-lh-4--mob-text-medium);
                    font-weight: var(--fw-400p);
                }
            }

            .link-section {
                display: flex;
                gap: 0px;
                align-items: center;
                flex-direction: column;
                margin-bottom: 45px;

                @media (width >=768px) {
                    flex-direction: row;
                    align-items: start;
                    gap: 25px;
                    margin-bottom: 0px;
                }

                a {
                    font-family: var(--corp-fort-family);
                    text-transform: uppercase;
                    color: var(--tertiary-white);
                    font-size: var(--heading-font-25-des);
                    line-height: var(--heading-lh-24-mob-text-small);
                    font-weight: var(--fw-400p);

                    @media (width >=768px) {
                        font-size: var(--heading-font-11-mob-text-small);
                        line-height: var(--heading-lh-4--mob-text-medium);
                    }

                    &:hover {
                        text-decoration: none;
                    }
                }
            }
        }
    }
}

footer.corp-footer-wrapper {
    &:has(.copy-right.block) {
        padding-bottom: 15px;
    }
}