/* ========== LOCATION ========== */
.screen-location {
    padding: 20px 0 40px;
    text-align: center;
}

.loc-card {
    margin: 20px 0;
}

.loc-icon {
    font-size: 32px;
    margin-bottom: 6px;
}

.loc-title {
    font-family: var(--hand);
    font-size: 24px;
    color: var(--ink);
    margin-bottom: 2px;
}

.loc-time {
    font-family: var(--body);
    font-size: 15px;
    color: var(--accent, #c0392b);
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 6px;
}

.loc-name {
    font-family: var(--body);
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 4px;
}

.loc-address {
    font-family: var(--body);
    font-size: 16px;
    color: #666;
    line-height: 1.5;
    margin-bottom: 14px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transform: rotate(-1deg);
}

.map-container iframe {
    display: block;
    width: 100%;
    height: 200px;
    border: none;
}

/* Трансфер между локациями */
.loc-transfer {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 4px 0;
}

.loc-transfer span {
    font-family: var(--body);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--accent, #c0392b);
    font-weight: 500;
    margin-top: 2px;
}

@media (max-width: 360px) {
    .loc-title { font-size: 20px; }
    .loc-name { font-size: 17px; }
    .loc-address { font-size: 14px; }
    .map-container iframe { height: 170px; }
}

@media (min-width: 768px) {
    .screen-location { padding: 30px 0 50px; }
    .loc-icon { font-size: 38px; }
    .loc-title { font-size: 28px; }
    .loc-name { font-size: 22px; }
    .loc-address { font-size: 18px; }
    .map-container iframe { height: 250px; }
}

@media (min-width: 1024px) {
    .screen-location { padding: 40px 0 60px; }
    .loc-title { font-size: 32px; }
    .loc-name { font-size: 24px; }
    .loc-address { font-size: 19px; }
    .map-container iframe { height: 280px; }
}

@media (min-width: 1400px) {
    .loc-title { font-size: 36px; }
    .loc-name { font-size: 26px; }
    .map-container iframe { height: 320px; }
}