/* Страница «Студии» */

.studios-city-selector {
    margin-bottom: 24px;
}

.studios-nav {
    margin-bottom: 28px;
    opacity: 0;
    animation: fadeInUp 1s ease forwards;
    animation-delay: 0.15s;
}

.studios-nav .back-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #77F601;
    text-decoration: none;
    font-weight: 500;
    padding: 8px 0;
    border: none;
    border-radius: 0;
    background: none;
    box-shadow: none;
    backdrop-filter: none;
    transition: color 0.2s ease;
    font-size: 0.9rem;
}

.studios-nav .back-btn:hover {
    color: rgba(255, 255, 255, 0.95);
}

.studios-nav .back-btn svg {
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

/* Карточка города — показывается при выборе города */
.city-card {
    display: none;
    opacity: 0;
    animation: fadeInUp 0.5s ease forwards;
}

.city-card.is-active {
    display: block;
    opacity: 1;
}

.city-card[aria-hidden="false"] {
    display: block;
}

.studios-city-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 20px 0;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Блок карты — в стиле приложения (стекло, неон #77F601) */
.studios-map-wrap {
    margin-bottom: 28px;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(119, 246, 1, 0.25);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 0, 0, 0.2),
        0 0 24px rgba(119, 246, 1, 0.08);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(0, 0, 0, 0.25);
}

.studios-map-yandex {
    width: 100%;
    height: 240px;
    min-height: 200px;
    background: linear-gradient(135deg, #0a0a12 0%, #1a1a2e 50%, #0f0f18 100%);
    position: relative;
}


.studios-map-fallback {
    display: none;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
    text-align: center;
    padding: 0 20px;
}

.studios-map-yandex.studios-map-fallback-visible .studios-map-fallback {
    display: block;
}

/* Кнопки управления картой (зум, полноэкран) — тёмная тема и отступы, чтобы не перекрывались */
.studios-map-wrap [class*="zoom"],
.studios-map-wrap [class*="fullscreen"],
.studios-map-wrap [class*="control"] {
    filter: none !important;
}
/* Контейнер зума: отступ снизу, чтобы кнопка «−» не перекрывала иконку карты ниже */
.studios-map-wrap [class*="zoom"] {
    margin-bottom: 14px !important;
    gap: 2px !important;
}
/* Отступ между группой зума и следующей кнопкой (иконка карты) */
.studios-map-wrap [class*="zoom"] + div,
.studios-map-wrap [class*="Zoom"] + div {
    margin-top: 10px !important;
}
.studios-map-wrap [class*="zoom"] button,
.studios-map-wrap [class*="fullscreen"] button,
.studios-map-wrap [class*="control"] button,
.studios-map-wrap a[class*="control"] {
    background: rgba(10, 10, 15, 0.92) !important;
    color: rgba(255, 255, 255, 0.9) !important;
    border: 1px solid rgba(119, 246, 1, 0.3) !important;
    border-radius: 8px !important;
}
.studios-map-wrap [class*="zoom"] button:hover,
.studios-map-wrap [class*="fullscreen"] button:hover,
.studios-map-wrap [class*="control"] button:hover {
    background: rgba(119, 246, 1, 0.15) !important;
    border-color: rgba(119, 246, 1, 0.5) !important;
    color: #77F601 !important;
}

/* Баллун — тёмная тема и акцент #77F601 */
.studios-map-wrap .ymaps-2-1-balloon__content,
.studios-map-wrap [class*="balloon__content"] {
    background: rgba(10, 10, 15, 0.97) !important;
    color: #fff !important;
    border: 1px solid rgba(119, 246, 1, 0.25) !important;
    border-radius: 12px !important;
    padding: 12px 16px !important;
    font-family: 'Benzin', -apple-system, sans-serif !important;
}
.studios-map-wrap .ymaps-2-1-balloon__tail::after,
.studios-map-wrap [class*="balloon__tail"]::after {
    background: rgba(10, 10, 15, 0.97) !important;
    border-color: rgba(119, 246, 1, 0.25) !important;
}
.studios-map-wrap .ymaps-2-1-balloon__close-button,
.studios-map-wrap [class*="balloon__close"] {
    color: rgba(255, 255, 255, 0.7) !important;
}
.studios-map-wrap .ymaps-2-1-balloon__close-button:hover,
.studios-map-wrap [class*="balloon__close"]:hover {
    color: #77F601 !important;
}

/* Список студий */
.studios-list-wrap {
    margin-bottom: 48px;
}

.studios-list-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0 0 16px 0;
}

.studios-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.studio-item {
    margin: 0;
    padding: 0;
}

/* Карточка студии: превью слева + стекло (glassmorphism) */
.studio-item-btn {
    width: 100%;
    text-align: left;
    padding: 0;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 16px;
    color: #ffffff;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    display: flex;
    align-items: stretch;
    gap: 0;
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.studio-item-btn:hover {
    background: rgba(255, 255, 255, 0.14);
    border-color: rgba(119, 246, 1, 0.35);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25), 0 0 0 1px rgba(119, 246, 1, 0.1);
}

.studio-item-btn:focus {
    outline: none;
    border-color: rgba(119, 246, 1, 0.5);
}

/* Контейнер фото — тянется по высоте карточки (min-height), чтобы не отставать при загрузке шрифтов */
.studio-item-thumb {
    flex-shrink: 0;
    align-self: stretch;
    position: relative;
    width: 88px;
    min-width: 88px;
    min-height: 72px;
    overflow: hidden;
    background-color: rgba(0, 0, 0, 0.4);
}

.studio-item-thumb-img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.studio-item-thumb--no-photo {
    align-self: stretch;
    min-height: 72px;
    background-color: rgba(119, 246, 1, 0.08);
}

.studio-item-thumb--error .studio-item-thumb-img {
    display: none;
}

.studio-item-thumb--error {
    background-color: rgba(119, 246, 1, 0.08);
}

.studio-item-content {
    flex: 1;
    min-width: 0;
    padding: 14px 16px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    justify-content: center;
}

.studio-item-name {
    color: #ffffff;
    font-weight: 600;
    font-size: 1rem;
}

.studio-item-address {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
    font-weight: 400;
}

/* Детали студии (панель/модалка) */
/* При открытой модалке студии — один скролл только внутри, фон страницы не скроллится */
body.studio-detail-open {
    overflow: hidden;
    touch-action: none;
}

/* Скрываем навигацию при открытой модалке, чтобы не перекрывала карточки звукарей */
body.studio-detail-open .bottom-nav {
    visibility: hidden;
    pointer-events: none;
}

.studio-detail {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.studio-detail.is-open {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* Яркие размытые круги #77F601 по фону модалки */
.studio-detail-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.studio-detail-bg-circle {
    position: absolute;
    border-radius: 50%;
    background: rgba(119, 246, 1, 0.35);
    filter: blur(100px);
    -webkit-filter: blur(100px);
}

.studio-detail-bg-circle--1 {
    width: 55vmax;
    height: 55vmax;
    top: -15%;
    left: -10%;
}

.studio-detail-bg-circle--2 {
    width: 45vmax;
    height: 45vmax;
    top: 30%;
    right: -15%;
}

.studio-detail-bg-circle--3 {
    width: 40vmax;
    height: 40vmax;
    bottom: -10%;
    left: 20%;
}

.studio-detail-bg-circle--4 {
    width: 35vmax;
    height: 35vmax;
    top: 5%;
    right: 25%;
}

.studio-detail-bg-circle--5 {
    width: 50vmax;
    height: 50vmax;
    bottom: 20%;
    right: -20%;
}

.studio-detail-inner {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    -webkit-overflow-scrolling: touch;
    background: linear-gradient(180deg, rgba(10, 10, 12, 0.97) 0%, rgba(6, 6, 8, 0.98) 100%);
    border: none;
    border-radius: 0;
    padding: 24px 20px 100px;
    box-shadow: none;
    max-width: none;
    margin: 0;
}

/* Шапка как в модалке заказа */
.studio-detail-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin: -24px -20px 24px -20px;
    padding: 26px 28px 24px;
    border-bottom: 1px solid rgba(119, 246, 1, 0.12);
    background: linear-gradient(180deg, rgba(119, 246, 1, 0.03) 0%, transparent 100%);
    border-radius: 0 0 50px 50px;
}

.studio-detail-header-content {
    flex: 1;
    min-width: 0;
}

.studio-detail-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-family: 'Benzin', sans-serif;
    text-shadow: 0 0 20px rgba(119, 246, 1, 0.2);
}

.studio-detail-close {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border: 1px solid rgba(119, 246, 1, 0.2);
    background: rgba(255, 255, 255, 0.05);
    border-radius: 33px;
    color: rgba(255, 255, 255, 0.7);
    cursor: pointer;
    transition: color 0.25s ease, background 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.studio-detail-close:hover {
    background: rgba(119, 246, 1, 0.08);
    border-color: rgba(119, 246, 1, 0.4);
    color: #77F601;
    transform: scale(1.05);
}

.studio-detail-address {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.9rem;
    margin: 0;
    font-weight: 400;
}

/* Галерея в модалке студии: основное фото + миниатюры */
.studio-detail-gallery-wrap {
    margin-bottom: 24px;
}

.studio-detail-gallery-main {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.4);
    margin-bottom: 12px;
}

.studio-detail-gallery-main-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.studio-detail-gallery-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 4px 0;
    scrollbar-width: thin;
    scroll-snap-type: x mandatory;
}

.studio-detail-gallery-thumbs::-webkit-scrollbar {
    height: 6px;
}

.studio-detail-gallery-thumb-btn {
    flex-shrink: 0;
    width: 72px;
    height: 48px;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    overflow: hidden;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.4);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    scroll-snap-align: start;
}

.studio-detail-gallery-thumb-btn:hover {
    border-color: rgba(119, 246, 1, 0.4);
}

.studio-detail-gallery-thumb-btn.active {
    border-color: rgba(119, 246, 1, 0.8);
    box-shadow: 0 0 0 1px rgba(119, 246, 1, 0.3);
}

.studio-detail-gallery-thumb-btn img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

.studio-detail-subtitle {
    font-size: 1rem;
    font-weight: 600;
    color: #77F601;
    margin: 0 0 10px 0;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Карточки внутри модалки студии — выраженное стекло, не сливаются с фоном */
.studio-detail-description-wrap,
.studio-detail-equipment-wrap,
.studio-detail-engineers-wrap {
    margin-bottom: 24px;
    padding: 20px 22px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(28px);
    -webkit-backdrop-filter: blur(28px);
    border-radius: 24px;
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow:
        0 4px 24px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(0, 0, 0, 0.2) inset;
}

.studio-detail-engineers-wrap {
    margin-bottom: 0;
}

.studio-detail-description-wrap .studio-detail-subtitle,
.studio-detail-equipment-wrap .studio-detail-subtitle,
.studio-detail-engineers-wrap .studio-detail-subtitle {
    margin-top: 0;
}

.studio-detail-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.95rem;
    line-height: 1.55;
    margin: 0;
}

.studio-detail-equipment {
    list-style: none;
    padding: 0;
    margin: 0;
}

.studio-detail-equipment li {
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.studio-detail-equipment li:last-child {
    border-bottom: none;
}

.studio-detail-equipment li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #77F601;
    font-weight: bold;
}

.studio-detail-engineers {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.studio-detail-engineers li {
    margin: 0;
    padding: 0;
}

/* Карточка звукорежиссёра в модалке студии — компактнее, макс. скругление (pill), тёмный фон + blur */
.engineer-card {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 12px 8px 8px;
    background: rgba(0, 0, 0, 0.72);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.25s ease;
    min-height: 48px;
}

.engineer-card:hover {
    background: rgba(0, 0, 0, 0.82);
    border-color: rgba(119, 246, 1, 0.4);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
}

.engineer-card__avatar {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-color: rgba(119, 246, 1, 0.15);
    border: 2px solid rgba(119, 246, 1, 0.3);
}

.engineer-card__avatar--no-photo {
    background-image: none;
}

.engineer-card__body {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.engineer-card__name {
    font-weight: 700;
    color: #ffffff;
    font-size: 0.95rem;
}

.engineer-card__nickname {
    color: #77F601;
    font-weight: 500;
    font-size: 0.82rem;
}

.engineer-card__role {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    font-weight: 400;
}

.engineer-card__arrow {
    flex-shrink: 0;
    color: #77F601;
    font-size: 2.25rem;
    opacity: 0.9;
    transition: transform 0.2s ease;
    margin-right: 4px;
    margin-left: 8px;
}

.engineer-card:hover .engineer-card__arrow {
    transform: translateX(2px);
}

.engineer-card--empty {
    display: block;
    padding: 14px 16px;
    pointer-events: none;
    opacity: 0.7;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px dashed rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Страница карточки звукорежиссёра */
.sound-engineer-card {
    max-width: 560px;
    margin: 0 auto 48px;
    padding: 24px 0;
}

.sound-engineer-hero {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 24px;
}

.sound-engineer-photo-wrap {
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid rgba(119, 246, 1, 0.25);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4);
}

.sound-engineer-photo {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 1;
    object-fit: cover;
}

.sound-engineer-header {
    margin-bottom: 0;
}

.sound-engineer-name {
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px 0;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.sound-engineer-nickname {
    font-size: 1rem;
    color: #77F601;
    margin: 0 0 6px 0;
    font-weight: 500;
}

.sound-engineer-role {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    font-weight: 500;
}

.sound-engineer-description-wrap {
    margin-bottom: 28px;
    padding: 24px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
}

.sound-engineer-description-wrap .sound-engineer-description {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.65;
    margin: 0 0 1em 0;
}

.sound-engineer-description-wrap .sound-engineer-description:last-child {
    margin-bottom: 0;
}

.sound-engineer-description-heading {
    font-size: 0.95rem;
    font-weight: 700;
    color: #77F601;
    margin: 1.25em 0 0.5em 0;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.sound-engineer-description-heading:first-child {
    margin-top: 0;
}

.sound-engineer-description-bullet {
    color: rgba(255, 255, 255, 0.88);
    font-size: 0.98rem;
    line-height: 1.55;
    margin: 0 0 0 1.25em;
    padding-left: 0.5em;
    position: relative;
    margin-bottom: 0.5em;
}

.sound-engineer-description-bullet::before {
    content: '';
    position: absolute;
    left: -1em;
    top: 0.55em;
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: #77F601;
}

.sound-engineer-description--pre {
    white-space: pre-line;
}

/* Карточка услуги на странице звукаря — компактная, с фото */
.sound-engineer-works-wrap {
    margin-bottom: 24px;
}

.sound-engineer-works-link {
    display: inline-block;
    font-size: 1rem;
    font-weight: 600;
    color: #77F601;
    text-decoration: none;
    padding: 12px 20px;
    border: 1px solid rgba(119, 246, 1, 0.4);
    border-radius: 12px;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.sound-engineer-works-link:hover {
    background: rgba(119, 246, 1, 0.12);
    border-color: rgba(119, 246, 1, 0.6);
}

.sound-engineer-service-wrap {
    margin-bottom: 28px;
}

.sound-engineer-service-card {
    display: flex;
    align-items: stretch;
    gap: 0;
    padding: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(119, 246, 1, 0.35);
    border-radius: 20px;
    color: #fff;
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
    overflow: hidden;
}

.sound-engineer-service-card:hover {
    border-color: rgba(119, 246, 1, 0.6);
    box-shadow: 0 0 20px rgba(119, 246, 1, 0.12);
    transform: translateY(-2px);
}

.sound-engineer-service-card__img-wrap {
    flex-shrink: 0;
    width: 100px;
    min-height: 72px;
    background: rgba(0, 0, 0, 0.3);
}

.sound-engineer-service-card__img {
    width: 100%;
    height: 100%;
    min-height: 72px;
    object-fit: cover;
    display: block;
}

.sound-engineer-service-card__body {
    flex: 1;
    min-width: 0;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 2px;
}

.sound-engineer-service-card__label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #77F601;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.sound-engineer-service-card__meta {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.65);
}

.sound-engineer-service-card__cta {
    font-size: 0.85rem;
    font-weight: 600;
    color: #77F601;
    margin-top: 4px;
}

.sound-engineer-service-card:hover .sound-engineer-service-card__cta {
    text-decoration: underline;
}

.sound-engineer-studios-wrap {
    margin-bottom: 0;
}

.sound-engineer-studios {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.sound-engineer-studio-item {
    margin: 0;
    padding: 0;
}

.sound-engineer-studio-link {
    display: flex;
    flex-direction: column;
    gap: 4px;
    padding: 16px 20px;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    color: #ffffff;
    text-decoration: none;
    transition: all 0.3s ease;
}

.sound-engineer-studio-link:hover {
    background: rgba(0, 0, 0, 0.78);
    border-color: rgba(119, 246, 1, 0.3);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.sound-engineer-studio-name {
    font-weight: 600;
    color: #ffffff;
}

.sound-engineer-studio-address {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
}

.sound-engineer-no-studios {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.95rem;
    margin: 0;
}

/* Адаптивность */
@media (max-width: 768px) {
    .studios-map-yandex {
        height: 200px;
        min-height: 180px;
    }

    .studio-detail-inner {
        padding: 20px;
    }

    .studio-detail-title {
        font-size: 1.2rem;
    }

    .sound-engineer-name {
        font-size: 1.4rem;
    }

    .sound-engineer-photo-wrap {
        max-width: 220px;
    }

    .sound-engineer-description-wrap {
        padding: 16px;
    }
}

@media (max-width: 480px) {
    .studios-map-yandex {
        height: 180px;
        min-height: 160px;
    }

    .studio-item-thumb {
        width: 72px;
        min-width: 72px;
        min-height: 60px;
    }

    .studio-item-content {
        padding: 12px 14px;
    }

    .studio-detail-inner {
        padding: 16px;
    }

    .studio-detail-gallery-thumb-btn {
        width: 64px;
        height: 42px;
    }

    .sound-engineer-card {
        padding: 16px 0;
    }

    .sound-engineer-name {
        font-size: 1.25rem;
    }

    .sound-engineer-photo-wrap {
        max-width: 180px;
    }

    .sound-engineer-description-wrap {
        padding: 14px;
        margin-bottom: 20px;
    }

    .sound-engineer-studio-link {
        padding: 14px 16px;
    }
}
