
.rh-page-heading {
    font-size: 30px;
    font-weight: bold;
    color: #333;
    margin-bottom: 20px;
}

/* Developer Grid */
.developer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
}

/* Developer Card */
.developer-card {
    padding: 20px;
    border-radius: 25px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    text-align: center;
}

.developer-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

/* Developer Card Image */
.developer-card-image img.circular-image {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    margin: 0 auto 15px;
    border: 4px solid #ddd;
    transition: border-color 0.3s ease;
}

.developer-card:hover img.circular-image {
    border-color: var(--rh-global-color-primary);
}

/* Developer Card Details */
.developer-card-details {
    padding-top: 15px;
}

.developer-title {
    font-weight: bold;
    color: #333;
    margin-bottom: 10px;
}

.developer-title a {
    text-decoration: none;
    color: inherit;
    transition: color 0.3s ease;
}

.developer-title a:hover {
    color: var(--rh-global-color-primary);
}

/* Compounds Count */
.developer-compounds-count {
    font-weight: 800;
    color: #666;
    margin-bottom: 10px;
}

/* Developer Description */
.developer-description {
    line-height: 1.5;
    color: #555;
    margin-top: 10px;
}

.main-content{
    margin-top: 7rem;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .rh-page-container {
        grid-template-columns: repeat(2, 1fr);
    }

    .rh-page-heading {
        font-size: 2rem;
        grid-column: span 2;
    }
    .main-content{
        margin-top: 0rem;
    }
}

@media screen and (max-width: 480px) {
    .rh-page-container {
        grid-template-columns: 1fr;
    }

    .rh-page-heading {
        font-size: 1.8rem;
        grid-column: span 1;
    }
}