.hb-team-container {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 1rem;
}

.hb-team-header {
    text-align: center;
    margin-bottom: 2rem;
}

.hb-team-header .hb-logo {
    width: 60px;
    height: auto;
}

.hb-team-header h1 {
    color: #E41E25;
    font-size: 2.5rem;
}

.hb-team-header p {
    font-size: 1.2rem;
    font-weight: 600;
}

.hb-team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.hb-team-card {
    border: 2px solid #E41E25;
    border-radius: 8px;
    overflow: hidden;
    text-align: center;
}

.hb-team-card img {
	object-fit:cover;
    width: 100%;
	height: 350px;
    display: block;
}

.hb-team-info {
    background-color: #E41E25;
    padding: 0.5rem;
    color: #fff;
}

.hb-team-info h3 {
    font-size: 1.2rem;
    margin-bottom: 0.2rem;
    font-weight: 600;
}

.hb-team-info p {
    font-size: 0.9rem;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hb-team-container {
        padding: 0.5rem;
    }

    .hb-team-header h1 {
        font-size: 2rem;
    }

    .hb-team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.5rem;
    }

    .hb-team-info h3 {
        font-size: 1rem;
    }

    .hb-team-info p {
        font-size: 0.8rem;
    }
}

@media (max-width: 480px) {
    .hb-team-grid {
        grid-template-columns: 1fr;
    }

    .hb-team-header h1 {
        font-size: 1.5rem;
    }

    .hb-team-header p {
        font-size: 0.9rem;
    }

    .hb-team-card img {
        height: 400px;
    }
}