/* ===========================
   PROFILE
   =========================== */

.profile-view {
    width: fit-content;
    margin: 0 auto;
    padding: var(--space-5);
}

.main-photo-wrapper {
    text-align: center;
    margin-bottom: var(--space-5);
}

.main-photo {
    width: 100%;
    max-width: 280px;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}

.photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: var(--space-3);
}

.gallery-photo {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow);
}

/* Profile video */
.profile-video {
    width: 100%;
    max-width: 320px;
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin: var(--space-4) auto;
    display: block;
}

.view-profile-btn {
    display: block;
    text-align: center;
    padding: 10px;
    background: #0077ff;
    color: #fff;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    margin-top: 5px;
}

.view-profile-btn:hover {
    background: #005fcc;
}