/* Container */
.smc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

/* Group Title */
.smc-group-title {
    font-size: 2em;
    border-bottom: 3px solid #d4af37;
    /* Gold underline */
    display: inline-block;
    margin-bottom: 40px;
    padding-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: #333;
}

/* Grid */
.smc-members-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

/* 3D Card */
.smc-member-card {
    background: linear-gradient(145deg, #ffffff, #f0f0f0);
    border-radius: 20px;
    padding: 20px;
    position: relative;
    box-shadow:
        5px 5px 15px #d1d9e6,
        -5px -5px 15px #ffffff;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transform-style: preserve-3d;
    overflow: visible;
    text-align: center;
    border: 1px solid rgba(255, 255, 255, 0.8);
}

.smc-member-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow:
        10px 10px 30px #d1d9e6,
        -10px -10px 30px #ffffff;
    z-index: 10;
}

/* 3D Photo Effect */
.smc-photo-wrapper {
    width: 200px;
    height: 200px;
    margin: -60px auto 25px;
    border-radius: 20px;
    background: #fff;
    padding: 6px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.2);
    transform: translateZ(30px);
    position: relative;
}

.smc-photo {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    object-fit: cover;
    display: block;
}

.smc-photo-placeholder {
    width: 100%;
    height: 100%;
    border-radius: 15px;
    background: linear-gradient(135deg, #e0e0e0 0%, #f5f5f5 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.smc-photo-placeholder::after {
    content: '\f110';
    /* Dashicon user */
    font-family: 'dashicons';
    font-size: 40px;
    color: #ccc;
}

/* Text Styling */
.smc-info {
    padding-top: 10px;
}

.smc-name {
    margin: 10px 0 5px;
    font-size: 1.4em;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: 0.5px;
}

.smc-designation {
    margin: 0 0 15px;
    font-size: 1.1em;
    font-weight: 500;
    color: #d4af37;
    /* Gold accent */
    text-transform: uppercase;
    letter-spacing: 1px;
}

.smc-details {
    font-size: 0.95em;
    color: #666;
    line-height: 1.6;
    margin: 0;
}