﻿.c-ftr-offices {
    --color-primary: #002952;
    --color-secondary: #ff9e18;

    color: #fff;
    display: grid;
    grid-template-columns: 1fr;
    row-gap: 2rem;
}

.c-ftr-offices__state h5 {
    font-size: 22px;
    margin-block-end: .5rem;
    text-transform: uppercase;
}

.c-ftr-offices__state h5:not(:first-child) {
    margin-block-start: 2rem;
}

.c-ftr-offices__state ul {
    font-family: 'Raleway', serif;
    list-style: none;
    margin: 0;
    padding: 0;
}

.c-ftr-offices__state ul:not(:last-child) {
    margin-block-end: 1.25rem;
}

.c-ftr-offices__state li:first-child {
    text-transform: uppercase;
}

.c-ftr-offices__state a {
    color: #fff;
    text-decoration: none;
}

@media screen and (min-width:1024px) {
    .c-ftr-offices {
        grid-template-columns: repeat(3, 1fr);
    }

    .c-ftr-offices__state:not(:last-child) {
        border-right: 1px solid var(--color-secondary);
        margin-right: 2rem;
        padding-right: 2rem;
    }
}