.member-section-main {
    background-color: #faffff;
    padding: 30px 0;
}

.somnath-member-section {
    width: 100%;
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
    padding-right: 15px;
    padding-left: 15px;
}

.somnath-member-section-header {
    margin-bottom: 30px;
}

.somnath-member-badge {
    color: var(--text-ocan);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
}

.somnath-member-main-title {
    font-size: 32px;
    font-weight: 700;
    color: #121521;
}

.somnath-member-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    align-items: stretch;
}

.somnath-member-card {
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #f0f0f5;
    padding: 16px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.somnath-member-card:hover {
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.04);
}

.somnath-member-image-wrapper {
    position: relative;
    width: 100%;
    height: 260px;
    border-radius: 6px;
    overflow: hidden;
    flex-shrink: 0;
}

.somnath-member-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Price Tag */
.somnath-member-price-tag {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #ffffff;
    padding: 6px 10px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    color: #121521;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.somnath-member-per-hr {
    font-size: 12px;
    color: #7e8494;
    font-weight: 400;
}

.somnath-member-card-content {
    padding-top: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.somnath-member-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.somnath-member-dev-name {
    font-size: 16px;
    font-weight: 700;
    color: #121521;
    display: flex;
    align-items: center;
    gap: 6px;
}

.somnath-member-verified-icon {
    color: #004cff;
    font-size: 14px;
}

.somnath-member-bookmark-btn {
    background: none;
    border: none;
    color: #a0a5b5;
    cursor: pointer;
    font-size: 16px;
    transition: color 0.2s;
}

.somnath-member-bookmark-btn:hover {
    color: #121521;
}

.somnath-member-dev-role {
    font-size: 14px;
    color: #7e8494;
    margin-top: 4px;
    margin-bottom: 14px;
}

.somnath-member-divider {
    border: 0;
    border-top: 1px solid #f3f3f6;
    margin-top: auto;
    margin-bottom: 14px;
}

.somnath-member-footer-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.somnath-member-rating-box {
    display: flex;
    align-items: center;
    gap: 8px;
}

.somnath-member-stars {
    color: #ffb800;
    font-size: 12px;
    display: flex;
    gap: 2px;
}

.somnath-member-rating-num {
    font-size: 13px;
    color: #a0a5b5;
    font-weight: 500;
}

.somnath-member-action-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid #eef0f4;
    background: white;
    color: #555964;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    transition: all 0.2s ease;
}

.somnath-member-action-arrow:hover {
    background: var(--gredient-bg);
    color: white;
    border-color: var(--text-ocan);
}

.somnath-member-view-more-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

.somnath-member-btn-view-more {
    background:var(--gredient-bg);
    color: white;
    padding: 12px 32px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 15px;
    cursor: pointer;
    transition: background-color 0.2s ease;
    box-shadow: 0 4px 12px rgba(255, 81, 28, 0.15);
}




@media (max-width: 1199px) {
    .somnath-member-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .somnath-member-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .somnath-member-main-title {
        font-size: 28px;
    }

    .somnath-member-image-wrapper {
        height: 400px !important;
    }
}

@media (max-width: 600px) {
    .somnath-member-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .somnath-member-section-header {
        text-align: center;
    }

    .somnath-member-main-title {
        font-size: 24px;
    }

    body {
        padding: 0px 0;
    }
}