.contacts__openingHours {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 24px;
    color: #fff;
    font-weight: 600;
}

.contacts__cards {
    display: grid;
    gap: 32px;
    width: 100%;
}

@media(min-width:769px) {
    .contacts__cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media(min-width:1280px) {
    .contacts__cards {
        grid-auto-flow: column;
        grid-auto-columns: minmax(0, 1fr);
    }
}

.contacts__card {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.10);
    padding: 24px;
    width: 100%;
    border-radius: 8px;
    gap: 8px;
    color: #fff;
    border: 1px solid #0cbb8a;
    transition: border-color 0.2s ease-out;
}

.contacts__card:hover {
    text-decoration: none;
    border-color: #63f2c3;
}

.contacts__card :is(h3, p, span){
    color: #fff;
}

.contacts__card h3 {
    margin: 0;
    font-size: 20px;
    line-height: 30px;
}

.contacts__card p {
    font-size: 14px;
    line-height: 20px;
    margin: 0;
    color: #C2FAE7
}

.contacts__card span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
}