﻿.photographers {
    position: relative;
    padding: 50px 0 100px 0;
}

.photographers-inner {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.photographers-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.photographers-items {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.photographer-item {
    flex: 1 1 220px;
    min-width: 0;
    max-width: 100%;
}

@media (max-width: 1440px) {
    .photographers-items { gap: 16px; }
}

@media (max-width: 1200px) {
    .photographers-items { justify-content: center; }
    .photographer-item { flex-basis: 260px; }
}

@media (max-width: 768px) {
    .photographers { padding: 40px 0 60px; }
    .photographers-top { flex-direction: column; align-items: flex-start; gap: 16px; }
    .photographer-item { flex-basis: calc(50% - 8px); }
}

@media (max-width: 480px) {
    .photographer-item { flex-basis: 100%; }
}
