﻿.contact_wrapper {
    width: 100%;
    max-width: 960px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px;
}

.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%;
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
}

.contact_body {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
}

.contact_card {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 8px;
    background-color: var(--dark);
    border-radius: 8px;
}

.contact_card_header {
    width: 100%;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
}

.contact_card_header_title {
    font-size: 20px;
    font-weight: 600;
    line-height: 1.2;
    color: var(--light);
}

.contact_card_header_icon {
    width: 48px;
    height: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background-color: var(--light);
    border-radius: 50%;
}

.contact_card_body {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.contact_card_section {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
    padding: 16px;
    background-color: var(--light);
    border-radius: 4px;
}

.contact_card_section_description {
    width: 100%;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
}

    .contact_card_section_description a {
        font-size: 16px;
        font-weight: bold;
        line-height: 24px;
        text-decoration: underline;
        color: var(--dark);
    }

.contact_card_section_list {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-left: 36px;
}

    .contact_card_section_list li {
        width: 100%;
        font-size: 14px;
        font-weight: 400;
        line-height: 1.5;
        text-align: left;
    }

        .contact_card_section_list li a {
            font-size: 14px;
            font-weight: 600;
            line-height: 1.5;
            color: var(--dark);
        }

@media only screen and (min-width: 960px) {
    .contact_card:nth-child(2),
    .contact_card:nth-child(3) {
        width: calc(50% - 4px);
    }

        .contact_card:nth-child(2) .contact_card_section,
        .contact_card:nth-child(3) .contact_card_section {
            min-height: 184px;
            justify-content: initial;
        }
}
