.pgr-footer {
    max-width: 1400px;
    margin: 18px auto 0;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 4px;
    box-shadow: 0 8px 24px rgb(15 23 42 / 6%);
    overflow: hidden;
}

.pgr-footerGrid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 1px minmax(0, 1fr) 1px minmax(0, 1fr);
    gap: 28px;
    padding: 22px 26px;
    align-items: stretch;
}

.pgr-footerCol {
    min-width: 0;
}

.pgr-footerCol h2,
.pgr-footerBrandTitle {
    display: inline-block;
    margin: 0 0 12px;
    padding-bottom: 7px;
    border-bottom: 1px solid #dfe3e8;
    color: #111827;
    font-size: 16px;
    font-weight: 700;
}

.pgr-footerBrandTitle span {
    font-size: 12px;
    font-weight: 500;
    color: #6b7280;
}

.pgr-footerCol p {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 7px 0;
    color: #374151;
    font-size: 13px;
    line-height: 1.45;
}

.pgr-footerCol p i,
.pgr-footerLinks a i {
    width: 16px;
    color: #111827;
    text-align: center;
    font-size: 13px;
    flex-shrink: 0;
}

.pgr-footerCol strong {
    color: #111827;
    font-weight: 700;
}

.pgr-footerStatSep {
    margin: 0 4px;
    color: #9ca3af;
    font-weight: 300;
}

.pgr-footerCol a,
.pgr-footerCol a:visited {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--pgr-red-dark, #AD1F21);
    text-decoration: none;
    font-weight: 700;
    transition: color .15s ease;
}

.pgr-footerCol a:hover,
.pgr-footerCol a:focus {
    color: var(--pgr-red, #D02528);
    text-decoration: none;
}

.pgr-footerCol a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .18s ease;
}

.pgr-footerCol a:hover::after,
.pgr-footerCol a:focus::after {
    transform: scaleX(1);
}

.pgr-footerDivider {
    width: 1px;
    min-height: 100%;
    background: linear-gradient(
        to bottom,
        transparent 0%,
        #d9dde4 22%,
        #d9dde4 78%,
        transparent 100%
    );
}

.pgr-footerLinks {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 14px;
    align-items: flex-start;
}

.pgr-footerLinks a {
    color: var(--pgr-red-dark, #AD1F21);
    font-size: 13px;
}

.pgr-footerLinks a i {
    color: #111827 !important;
}

.pgr-footerLinks a:hover i,
.pgr-footerLinks a:focus i {
    color: #111827 !important;
}

.pgr-footerLinks a::after {
    display: none;
}

.pgr-footerLinks a,
.pgr-footerLinks a:visited,
.pgr-footerLinks a:hover,
.pgr-footerLinks a:focus,
.pgr-footerLinks a:active {
    text-decoration: none !important;
}

.pgr-footerLinks a span {
    position: relative;
}

.pgr-footerLinks a span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 2px;
    background: currentColor;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform .18s ease;
}

.pgr-footerLinks a:hover span::after {
    transform: scaleX(1);
}

.pgr-footerLinks a:focus-visible span::after {
    transform: scaleX(1);
}

.pgr-footerBottom {
    padding: 10px 18px;
    background: #f9fafb;
    border-top: 1px solid #e5e7eb;
    color: #4b5563;
    font-size: 13px;
    text-align: center;
}

@media (max-width: 900px) {
    .pgr-footerGrid {
        grid-template-columns: 1fr;
        gap: 18px;
    }

    .pgr-footerDivider {
        width: 100%;
        height: 1px;
        min-height: 1px;
        background: linear-gradient(
            to right,
            transparent,
            #d9dde4,
            transparent
        );
    }
}