.designer-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
    gap: 2rem;
}
.designer-item {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.designer-image {
    display: block;
    overflow: hidden;
}
.designer-image img {
    display: block;
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: top;
}
.designer-details {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 16px 0;
    gap: 8px;
}
.designer-details h5 {
    color: #000;
    font-family: Jost;
    font-size: 22px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
}
.designer-region {
    color: #000;
    font-family: Jost;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0;
}

@media (max-width: 769px) {
    .designer-grid {
        flex-direction: column;
        grid-template-columns: repeat(1, 1fr);
    }
    .designer-item {
        width: 100%;
    }
}
@media (min-width: 768px) and (max-width: 1300px) {
    .designer-grid {
        gap: 1rem;
    }
}