﻿.contact_wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 8px 0;
}

.contact_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.contact_header {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact_header_title {
    width: 100%;
}

.contact_body {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 16px;
}

.contact_card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact_card_header {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    gap: 4px;
    padding: 8px;
}

.contact_card_header_icon {
    width: 36px;
    height: 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

    .contact_card_header_icon svg {
        width: 24px;
        height: 24px;
        display: block;
    }

.contact_card_body {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: var(--surface-1);
    border-radius: 8px;
}

.contact_card_section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px;
}

.contact_card_section_description {
    width: 100%;
}

.contact_card_section_list {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-left: 36px;
    list-style: disc;
}

    .contact_card_section_list li {
        width: 100%;
    }


@media only screen and (min-width: 960px) {
    .contact_card:nth-child(2), .contact_card:nth-child(3) {
        width: calc(50% - 8px);
    }

        .contact_card:nth-child(2) .contact_card_section,
        .contact_card:nth-child(3) .contact_card_section {
            min-height: 200px;
            justify-content: initial;
        }
}
