@charset "UTF-8";

/* Shared footer (matches index2.php) */

html {
    height: 100%;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.gr2-footer {
    --footer2-brand: #0d9fb5;
    --footer2-ink: #10233b;
    --footer2-ink-soft: #33465c;
    --footer2-line: rgba(16, 35, 59, 0.09);
    --footer2-line-strong: rgba(16, 35, 59, 0.14);
    --footer2-shadow-sm: 0 2px 10px rgba(16, 35, 59, 0.06);
    --footer2-ease: cubic-bezier(0.22, 1, 0.36, 1);
    --footer2-container: 1200px;

    clear: both;
    float: none;
    display: block;
    width: 100%;
    max-width: none;
    margin-top: auto;
    margin-left: 0;
    margin-right: 0;
    box-sizing: border-box;
    background: linear-gradient(180deg, #f3f5f8 0%, #eceff3 100%);
    color: var(--footer2-ink);
    padding: 0;
    border-top: 1px solid var(--footer2-line);
    flex-shrink: 0;
    align-self: stretch;
}

.gr2-footer .container,
.gr2-footer__compact.container {
    width: min(92%, var(--footer2-container));
    margin: 0 auto;
    max-width: 100%;
    box-sizing: border-box;
}

.gr2-footer__compact {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 18px 0 14px;
    gap: 10px;
}

.gr2-footer__socials {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
}

.gr2-footer__socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    border: 1px solid var(--footer2-line-strong);
    background: #fff;
    box-shadow: var(--footer2-shadow-sm);
    transition: transform 0.25s var(--footer2-ease), border-color 0.25s, box-shadow 0.25s;
}

.gr2-footer__socials a:hover {
    transform: translateY(-2px);
    border-color: var(--footer2-brand);
    box-shadow: 0 8px 20px rgba(13, 159, 181, 0.14);
}

.gr2-footer__socials img {
    width: 22px;
    height: auto;
    display: block;
}

.gr2-footer__legal {
    max-width: 920px;
}

.gr2-footer__legal p {
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.45;
    padding: 2px 0;
    color: var(--footer2-ink-soft);
    margin: 0;
}

.gr2-footer__copy {
    clear: both;
    float: none;
    display: block;
    width: 100%;
    max-width: none;
    margin: 0;
    box-sizing: border-box;
    background: #1a2332;
    text-align: center;
    padding: 8px 0;
}

.gr2-footer__copy p {
    width: min(92%, 920px);
    margin: 0 auto;
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.72);
    box-sizing: border-box;
}

.gr2-footer__copy a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.gr2-footer__copy a:hover {
    text-decoration: underline;
}
