

/* Start:/contacts/contacts.css?17707304082369*/
/* ===== Общие ===== */
.transport,
.staff-table-wrapper {
    margin: 40px 0;
}

.transport p {
    max-width: 900px;
    line-height: 1.6;
}

/* ===== Как добраться ===== */

#destinasion-1 {
    font-size: 19px;
    color: black;
    background: #03871263;
    padding: 10px;
    border-radius: 10px;
}
#destinasion-2 {
    font-size: 19px;
    color: black;
    background: #03871263;
    padding: 10px;
    border-radius: 10px;
}

.transport__lists {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 24px;
    margin-top: 24px;
}

.transport__item {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 20px 24px;
    box-shadow: 0 4px 12px rgba(0,0,0,.06);
}

.transport__item strong {
    display: flex;
    align-items: center;
    font-size: 18px;
    margin-bottom: 12px;
}

.transport__item strong::before {
    content: "🚋";
    margin-right: 8px;
}

.transport__item:last-child strong::before {
    content: "🚌";
}

.transport__item ul {
    margin: 0;
    padding-left: 18px;
}

.transport__item li {
    margin-bottom: 6px;
}

/* ===== Заголовок ===== */
.page-title {
    font-size: 32px;
    margin: 60px 0 24px;
}

/* ===== Таблица ===== */
.staff-table-wrapper {
    overflow-x: auto;
    border-radius: 12px;
}

.staff-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}

.staff-table th {
    background: #2f3542;
    color: #fff;
    padding: 14px;
    font-weight: 600;
    text-align: center;
}

.staff-table td {
    padding: 14px;
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid #eee;
}

/* зебра */
.staff-table tbody tr:nth-child(even) {
    background: #f8f9fb;
}

/* hover */
.staff-table tbody tr:hover {
    background: #eef3ff;
    transition: background .2s;
}

/* контакты */
.staff-table a {
    color: #1a73e8;
    text-decoration: none;
    font-weight: 500;
}

.staff-table a:hover {
    text-decoration: underline;
}

/* ===== Мобилка ===== */
@media (max-width: 768px) {
    .page-title {
        font-size: 26px;
    }

    .staff-table th,
    .staff-table td {
        padding: 10px;
        font-size: 14px;
    }
}

/* End */
/* /contacts/contacts.css?17707304082369 */
