﻿/* =========================
   Home - Contacts
   (Contacts view)
   ========================= */

.botc-contacts {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.botc-contacts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.botc-contact-card {
    background: #f6f0ff;
    border-radius: 1rem;
    padding: 1.5rem;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.35);
}

.botc-contact-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.botc-contact-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .botc-contact-list li {
        margin-bottom: 0.4rem;
    }

.botc-contact-label {
    font-weight: 500;
    margin-right: 0.35rem;
}

.botc-contact-link {
    text-decoration: none;
}

    .botc-contact-link:hover {
        text-decoration: underline;
    }

.botc-contact-note {
    font-size: 0.95rem;
    opacity: 0.85;
}

/*добавка*/
.botc-social-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.botc-social-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.botc-social-icon {
    width: 28px;
    height: 28px;
}

