* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Poppins", Arial, sans-serif;
    background-color: #ffffff;
    color: #1f2023;
    min-height: 100vh;
    display: block;
    padding: 0;
}

img {
    max-width: 100%;
    display: block;
}

.profile {
    width: 100%;
    min-height: 100vh;
}

.hero {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 1fr);
    gap: 48px;
    background: #ffffff;
    /*min-height: 100vh;*/
    padding: clamp(24px, 4vw, 48px);
}

.hero-media {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    background: #f2f3f5;
    min-height: 520px;
}

.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(100%);
}

.media-badge {
    position: absolute;
    left: 28px;
    top: 52%;
    display: flex;
    align-items: center;
    gap: 12px;
    color: #3786f0;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

.badge-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #3786f0;
    box-shadow: 0 0 10px rgba(47, 214, 208, 0.9);
}

.media-cta {
    position: absolute;
    left: 28px;
    bottom: 32px;
    display: flex;
    gap: 14px;
    align-items: flex-start;
    color: white;
    font-weight: 600;
    line-height: 1.5;
    font-size: 1rem;
}

.cta-line {
    width: 18px;
    height: 2px;
    background: #3786f0;
    margin-top: 8px;
}

.hero-content {
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding-top: 16px;
}

.intro {
    color: #4b5563;
    font-size: 0.95rem;
    letter-spacing: 0.3px;
}

h1 {
    font-size: clamp(2.8rem, 4vw, 3.8rem);
    color: #3786f0;
    letter-spacing: 1px;
    font-weight: 700;
}

.bio {
    color: #5f6673;
    font-size: 0.98rem;
    line-height: 1.7;
}

.shots-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 8px;
}

.shots-header h2 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2023;
}

.view-all {
    color: #3786f0;
    text-decoration: none;
    font-size: 0.85rem;
}

.shots-slider {
    --slides-per-view: 3;
    position: relative;
    display: flex;
    align-items: center;
    gap: 14px;
}

.shots-viewport {
    position: relative;
    flex: 1;
    overflow: hidden;
    border-radius: 12px;
    background: #eef0f3;
    min-height: 150px;
}

.shots-track {
    display: flex;
    margin: 0 -6px;
    transition: transform 0.4s ease;
    will-change: transform;
}

.shot-slide {
    flex: 0 0 calc(100% / var(--slides-per-view));
    padding: 0 6px;
}

.shot-video {
    width: 100%;
    height: 160px;
    object-fit: cover;
    display: block;
    background: #e5e7eb;
}

.shots-nav {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 1px solid #d1d5db;
    background: transparent;
    color: #6b7280;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.shots-nav:hover {
    border-color: #3786f0;
    color: #3786f0;
}

.shots-dots {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.shots-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: none;
    background: #d1d5db;
    cursor: pointer;
}

.shots-dot.active {
    width: 28px;
    background: #3786f0;
}

@media (max-width: 960px) {
    .hero {
        grid-template-columns: 1fr;
    }

    .hero-media {
        min-height: 420px;
    }
}

@media (max-width: 640px) {
    .hero {
        padding: 20px;
        gap: 28px;
    }

    .media-badge {
        top: 56%;
        left: 20px;
        font-size: 0.85rem;
    }

    .media-cta {
        left: 20px;
        bottom: 20px;
        font-size: 0.9rem;
    }

    .shots-slider {
        gap: 10px;
    }

    .shots-slider {
        --slides-per-view: 2;
    }

    .shot-video {
        height: 140px;
    }
}

@media (max-width: 420px) {
    .shots-slider {
        --slides-per-view: 1;
    }

    .shots-slider {
        flex-direction: column;
        align-items: stretch;
    }

    .shots-nav {
        width: 100%;
        border-radius: 12px;
    }
}
