/* --- Typography & Layout --- */
body {
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

/* Limit content width for better readability */
.page-columns .main {
    max-width: 950px; 
    margin: auto;
}

/* Headings */
h1.title {
    color: #2c3e50;
    border-bottom: 3px solid #3498db;
    padding-bottom: 10px;
    margin-bottom: 2rem;
}

h2, h3 {
    color: #2c3e50;
    margin-top: 2rem;
}

/* --- Team Card Styling --- */
.team-card {
    background-color: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0,0,0,0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%; /* Make cards equal height in grid */
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

/* Profile Image Styling */
.profile-img {
    width: 150px;
    height: 150px;
    object-fit: cover;       /* Ensures image doesn't stretch */
    border-radius: 50%;      /* Makes it a perfect circle */
    border: 4px solid #fff;  /* White ring around photo */
    box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* Shadow behind photo */
    margin-bottom: 15px;
}

/* Role Title */
.role-title {
    color: #3498db;
    font-weight: bold;
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
    display: block;
}

/* Social Icons */
.team-card i {
    font-size: 1.3rem;
    color: #6c757d;
    margin: 0 8px;
    transition: color 0.2s;
}

.team-card i:hover {
    color: #3498db;
}

/* --- Code Styling --- */
code {
    color: #e83e8c;
    background-color: #f1f3f5;
    padding: 2px 4px;
    border-radius: 4px;
}