
.distribution-section {
    padding: 30px 0;
    background-color: #fff;
}

/* Filter Bar */
.filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    background: #fff;
    margin-bottom: 25px;
    align-items: flex-end;
}

.filter-group {
    flex: 1;
    min-width: 200px;
}

.filter-group label {
    display: block;
    margin-bottom: 5px;
    font-size: 16px;
    font-weight: 700;
}

.filter-group select, 
.filter-group input {
    width: 100%;
    height: 40px;
    padding: 0 10px;
    border: 1px solid #ccc;
    outline: none;
    font-size: 14px;
}

.btn-search {
    height: 40px;
    background: #252a57;
    color: #fff;
    border: none;
    padding: 0 30px;
    cursor: pointer;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 13px;
    transition: background 0.3s ease;
}

.btn-search:hover {
    background: #333;
}

/* Results Count */
.results-count {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 30px;
}

/* Distribution Grid */
.distribution-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.distribution-item {
    display: flex;
    background: #fdfdfd;
    padding: 20px;
    border: 1px solid #f0f0f0;
    transition: box-shadow 0.3s ease;
}

.distribution-item:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.dist-logo {
    width: 200px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 20px;
    border-right: 1px solid #f0f0f0;
}

.dist-logo img {
    max-width: 100%;
    /* max-height: 120px; */
}

.dist-info {
    padding-left: 20px;
    flex-grow: 1;
}

.dist-name {
    font-size: 25px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #000;
}

.dist-map {
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    color: #555;
    text-decoration: underline;
    margin-bottom: 10px;
}

.dist-map svg {
    margin-right: 5px;
    color: #000;
}

.dist-detail {
    font-size: 15px;
    color: #666;
    margin-bottom: 5px;
    line-height: 1.5;
}

.dist-detail b {
    color: #333;
}

/* Responsive */
@media (max-width: 991px) {
    .distribution-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .distribution-item {
        flex-direction: column;
    }
    .dist-logo {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid #f0f0f0;
        padding: 0 0 20px 0;
        margin-bottom: 20px;
    }
    .dist-info {
        padding-left: 0;
    }
    .btn-search {
        width: 100%;
    }
}
