.pdg-custom-footer,
.pdg-custom-footer * {
    box-sizing: border-box;
}

.pdg-custom-footer {
    width: 100%;
    margin: 0;
    background: var(--pdg-footer-bg, #262626);
    color: var(--pdg-footer-text, #fff);
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, Helvetica, sans-serif;
    line-height: 1.45;
    position: relative;
    z-index: 2;
}

.pdg-custom-footer .pdg-footer-inner {
    width: min(calc(100% - 80px), var(--pdg-footer-max, 1600px));
    margin: 0 auto;
}

.pdg-custom-footer .pdg-footer-main {
    padding: var(--pdg-footer-pad-top, 112px) 0 var(--pdg-footer-pad-bottom, 72px);
}

.pdg-custom-footer .pdg-footer-grid {
    display: grid;
    grid-template-columns: minmax(320px, 1.65fr) repeat(3, minmax(170px, .9fr));
    gap: clamp(42px, 5vw, 92px);
    align-items: start;
}

.pdg-custom-footer .pdg-footer-brand-title {
    margin: 0;
    color: var(--pdg-footer-text, #fff);
    font-size: clamp(34px, 3.15vw, 48px);
    line-height: 1.04;
    font-weight: 800;
    letter-spacing: -0.045em;
    text-transform: uppercase;
}

.pdg-custom-footer .pdg-footer-tagline {
    margin-top: 26px;
    color: var(--pdg-footer-muted, #f2f2f2);
    font-size: clamp(17px, 1.45vw, 21px);
    font-weight: 450;
}

.pdg-custom-footer .pdg-footer-heading {
    margin: 0 0 27px;
    padding: 0;
    color: var(--pdg-footer-text, #fff);
    font-size: clamp(21px, 1.7vw, 27px);
    line-height: 1.15;
    font-weight: 750;
    letter-spacing: -0.025em;
}

.pdg-custom-footer .pdg-footer-links {
    list-style: none;
    margin: 0;
    padding: 0;
}

.pdg-custom-footer .pdg-footer-links li {
    margin: 0 0 15px;
    padding: 0;
    line-height: 1.35;
}

.pdg-custom-footer .pdg-footer-links a,
.pdg-custom-footer .pdg-footer-links span {
    color: var(--pdg-footer-muted, #f2f2f2);
    font-size: clamp(16px, 1.33vw, 20px);
    font-weight: 450;
    text-decoration: none;
    border: 0;
    box-shadow: none;
    background: transparent;
}

.pdg-custom-footer .pdg-footer-links a:hover,
.pdg-custom-footer .pdg-footer-links a:focus-visible {
    color: var(--pdg-footer-text, #fff);
    text-decoration: underline;
    text-underline-offset: 4px;
}

.pdg-custom-footer .pdg-footer-bottom {
    border-top: 1px solid var(--pdg-footer-divider, #3a3a3a);
}

.pdg-custom-footer .pdg-footer-bottom-inner {
    min-height: 140px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
}

.pdg-custom-footer .pdg-footer-copyright {
    color: var(--pdg-footer-muted, #f2f2f2);
    font-size: clamp(15px, 1.25vw, 19px);
    font-weight: 450;
}

.pdg-custom-footer .pdg-footer-socials {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 25px;
}

.pdg-custom-footer .pdg-footer-socials a {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--pdg-footer-text, #fff);
    text-decoration: none;
    opacity: .95;
    transition: opacity .15s ease, transform .15s ease;
}

.pdg-custom-footer .pdg-footer-socials a:hover,
.pdg-custom-footer .pdg-footer-socials a:focus-visible {
    opacity: .7;
    transform: translateY(-1px);
}

.pdg-custom-footer .pdg-footer-socials svg {
    display: block;
    width: 100%;
    height: 100%;
    fill: currentColor;
}

@media (max-width: 1050px) {
    .pdg-custom-footer .pdg-footer-grid {
        grid-template-columns: minmax(280px, 1.35fr) repeat(3, minmax(145px, .8fr));
        gap: 35px;
    }

    .pdg-custom-footer .pdg-footer-inner {
        width: min(calc(100% - 48px), var(--pdg-footer-max, 1600px));
    }
}

@media (max-width: 820px) {
    .pdg-custom-footer .pdg-footer-main {
        padding-top: 68px;
        padding-bottom: 54px;
    }

    .pdg-custom-footer .pdg-footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 48px 34px;
    }

    .pdg-custom-footer .pdg-footer-brand {
        grid-column: 1 / -1;
    }

    .pdg-custom-footer .pdg-footer-bottom-inner {
        min-height: 112px;
    }
}

@media (max-width: 560px) {
    .pdg-custom-footer .pdg-footer-inner {
        width: min(calc(100% - 36px), var(--pdg-footer-max, 1600px));
    }

    .pdg-custom-footer .pdg-footer-grid {
        grid-template-columns: 1fr;
        gap: 38px;
    }

    .pdg-custom-footer .pdg-footer-brand {
        grid-column: auto;
    }

    .pdg-custom-footer .pdg-footer-heading {
        margin-bottom: 18px;
    }

    .pdg-custom-footer .pdg-footer-bottom-inner {
        min-height: 0;
        padding: 34px 0;
        flex-direction: column;
        align-items: flex-start;
    }

    .pdg-custom-footer .pdg-footer-socials {
        justify-content: flex-start;
        flex-wrap: wrap;
    }
}
