.footer {
    background-color: #1f305c;
    padding: 6rem 0rem;
}

.footer .subtitle {
    margin: 0 auto 3rem auto;
    max-width: 672px;
    font-size: 1.25rem;
    line-height: calc(1.75 / 1.25);
    color: oklch(92.8% 0.006 264.531);
}

.footer .grid {
    display: grid;
    gap: 2rem;
    max-width: 1024px;
    margin: 0 auto;
}

.footer .contact-card {
    background-color: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 0.75rem;
    padding: 2rem;
}

.footer .contact-card:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.footer .contact-card .icon {
    width: 4rem;
    height: 4rem;
    background-color: #f39200;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem auto;
}

.footer .contact-card svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.footer .contact-card p,
.footer .bottom {
    font-size: 0.875rem;
    line-height: calc(1.25 / 0.875);
    color: oklch(87.2% 0.01 258.338);
}

.footer .separator {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.footer .bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.footer .bottom .hidden {
    display: none;
}

.footer .bottom .name {
    color: #f39200;
    font-weight: 600;
}

@media (min-width: 768px) {
    .footer .grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .footer .bottom {
        flex-direction: row;
    }

    .footer .bottom .hidden {
        display: inline;
    }
}