/* SCN Membership Styles */

/* Profile Gallery */
.scn-profile-gallery {
    margin: 2rem 0;
}

.scn-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.scn-gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease;
}

.scn-gallery-item:hover {
    transform: translateY(-2px);
}

.scn-gallery-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
}

.scn-gallery-item a {
    display: block;
    text-decoration: none;
}

/* Featured Video */
.scn-featured-video {
    margin: 2rem 0;
}

.scn-video-embed {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
    /* 16:9 aspect ratio */
    margin-top: 1rem;
}

.scn-video-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 8px;
}

.scn-video-thumbnail {
    position: relative;
    display: inline-block;
    margin-top: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.scn-video-thumbnail img {
    width: 100%;
    max-width: 500px;
    height: auto;
    display: block;
}

.scn-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.7);
    color: white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    transition: background 0.2s ease;
}

.scn-video-thumbnail:hover .scn-play-button {
    background: rgba(0, 0, 0, 0.9);
}

/* Press Kit */
.scn-press-kit {
    margin: 2rem 0;
}

.scn-press-kit-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.scn-press-kit-item {
    margin-bottom: 0.5rem;
}

.scn-download-link {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: #f8f9fa;
    border: 1px solid #dee2e6;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    transition: background 0.2s ease;
}

.scn-download-link:hover {
    background: #e9ecef;
    color: #333;
}

.scn-file-icon {
    margin-right: 0.5rem;
    color: #6c757d;
}

.scn-file-name {
    flex: 1;
    font-weight: 500;
}

.scn-file-size {
    color: #6c757d;
    font-size: 0.9em;
}

/* Services */
.scn-services {
    margin: 2rem 0;
}

.scn-services-list {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.scn-service-item {
    margin-bottom: 1rem;
    padding: 1rem;
    background: #f8f9fa;
    border-left: 4px solid #007cba;
    border-radius: 0 6px 6px 0;
}

.scn-service-item strong {
    display: block;
    margin-bottom: 0.5rem;
    color: #333;
}

.scn-service-item p {
    margin: 0;
    color: #666;
    font-size: 0.9em;
}

/* Badges */
.scn-badges {
    margin: 2rem 0;
}

.scn-badges-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.scn-badge {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: #007cba;
    color: white;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 500;
}

.scn-badge-icon {
    margin-right: 0.5rem;
    font-size: 16px;
}

.scn-badge-spotlight_winner {
    background: #ffd700;
    color: #333;
}

.scn-badge-spirit_award {
    background: #28a745;
}

.scn-badge-verified_member {
    background: #17a2b8;
}

/* Profile Layout */
.scn-profile-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.scn-profile-header {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid #dee2e6;
}

.scn-profile-photo {
    flex-shrink: 0;
}

.scn-profile-photo img {
    width: 200px;
    height: 200px;
    object-fit: cover;
    border-radius: 50%;
    border: 4px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.scn-placeholder-photo {
    width: 200px;
    height: 200px;
    background: #f8f9fa;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    color: #6c757d;
    border: 4px solid #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.scn-profile-info {
    flex: 1;
}

.scn-profile-name {
    margin: 0 0 1rem 0;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
}

.scn-credentials {
    display: block;
    font-size: 1.2rem;
    font-weight: 400;
    color: #6c757d;
    margin-top: 0.5rem;
}

.scn-location,
.scn-member-since,
.scn-main-url {
    margin: 0.5rem 0;
    color: #666;
}

.scn-location .dashicons {
    margin-right: 0.5rem;
    color: #6c757d;
}

.scn-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1rem;
}

.scn-social-link {
    display: inline-flex;
    align-items: center;
    padding: 0.5rem 1rem;
    background: #f8f9fa;
    color: #333;
    text-decoration: none;
    border-radius: 6px;
    border: 1px solid #dee2e6;
    transition: all 0.2s ease;
}

.scn-social-link:hover {
    background: #e9ecef;
    color: #333;
    text-decoration: none;
}

.scn-social-link .dashicons {
    margin-right: 0.5rem;
    font-size: 16px;
}

.scn-profile-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
}

.scn-profile-main h2 {
    margin: 2rem 0 1rem 0;
    font-size: 1.5rem;
    color: #333;
    border-bottom: 2px solid #007cba;
    padding-bottom: 0.5rem;
}

.scn-profile-bio {
    margin-bottom: 2rem;
}

.scn-topics-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1rem;
}

.scn-topic-pill {
    display: inline-block;
    padding: 0.5rem 1rem;
    background: #007cba;
    color: white;
    border-radius: 20px;
    font-size: 0.9em;
    font-weight: 500;
}

.scn-profile-sidebar {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 8px;
    height: fit-content;
}

.scn-profile-sidebar h3 {
    margin: 0 0 1rem 0;
    font-size: 1.2rem;
    color: #333;
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 0.5rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .scn-profile-header {
        flex-direction: column;
        text-align: center;
    }

    .scn-profile-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .scn-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    }

    .scn-social-links {
        justify-content: center;
    }
}