/* ===== Technicians Wrapper & Grid ===== */

.technicians-wrapper {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.page-title {
    margin-bottom: 30px;
    font-size: 32px;
    font-weight: 600;
    text-align: center;
}

.technicians-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

/* ===== Technician Card ===== */

.technician-card {
    background: #ffffff;
    border-radius: 14px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    overflow: hidden;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.technician-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

/* ===== Single Technician Page ===== */

.tech-single {
    max-width: 420px;
    margin: 50px auto;
    padding-top: 16px;
}

.tech-name {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    margin: 8px 16px 14px;
}

.tech-avatar {
    margin: 0 16px 14px;
}

.tech-avatar img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 10px;
}

.tech-body {
    padding: 16px 18px 20px;
}

.tech-body p {
    margin: 6px 0;
    font-size: 14px;
}

/* View Profile */

.view-profile {
    display: inline-block;
    margin-top: 12px;
    padding: 10px 16px;
    background: #0066ff;
    color: #ffffff;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 500;
}

.view-profile:hover {
    background: #004ecc;
}

/* Technician Mobile */

@media (max-width: 600px) {
    .tech-single {
        max-width: 100%;
        margin: 30px 16px;
    }
}

/* Technician Polish */

.technician-card {
    padding-top: 22px;
}

.tech-avatar {
    margin-top: 10px;
}

/* TECHNICIANS */

.technicians-wrapper{
max-width:1200px;
margin:40px auto;
padding:0 20px;
}

.page-title{
margin-bottom:30px;
font-size:32px;
font-weight:600;
text-align:center;
}

.technicians-grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:25px;
}

.technician-card{
background:#fff;
border-radius:14px;
box-shadow:0 10px 30px rgba(0,0,0,0.08);
overflow:hidden;
transition:.25s;
padding-top:22px;
}

.technician-card:hover{
transform:translateY(-6px);
box-shadow:0 16px 40px rgba(0,0,0,0.12);
}

.tech-single{
max-width:420px;
margin:50px auto;
padding-top:16px;
}

.tech-name{
text-align:center;
font-size:20px;
font-weight:600;
margin:8px 16px 14px;
}

.tech-avatar{
margin:0 16px 14px;
margin-top:10px;
}

.tech-avatar img{
width:100%;
height:220px;
object-fit:cover;
border-radius:10px;
}

.tech-body{
padding:16px 18px 20px;
}

.tech-body p{
margin:6px 0;
font-size:14px;
}

.view-profile{
display:inline-block;
margin-top:12px;
padding:10px 16px;
background:#0066ff;
color:#fff;
text-decoration:none;
border-radius:8px;
}

.view-profile:hover{
background:#004ecc;
}

@media(max-width:600px){

.tech-single{
max-width:100%;
margin:30px 16px;
}

}