.choe-search-form {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    align-items: end;
    background: #E9E3D8;
    border-radius: 20px;
    padding: 22px 26px;
    margin: 0 auto 30px;
    width: 89%;
    max-width: 1760px;
}
.choe-search-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
    font-size: 12px;
}
.choe-search-field label {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: #5B5F58;
}
.choe-search-field-title { flex: 1 1 220px; }
.choe-search-form input[type="text"],
.choe-search-form select {
    font-family: 'Work Sans', sans-serif;
    font-size: 14px;
    padding: 10px 12px;
    border-radius: 10px;
    border: 1px solid rgba(37,40,37,0.2);
    background: #FFFFFE;
    color: #252825;
    min-width: 150px;
}
.choe-search-submit {
    font-size: 13.5px;
    font-weight: 700;
    background: #A77D65;
    color: #FFFFFE;
    border: none;
    padding: 11px 24px;
    border-radius: 10px;
    cursor: pointer;
}
.choe-search-submit:hover { background: #8f6a54; }
.choe-search-reset {
    font-size: 12.5px;
    color: #657363;
    text-decoration: underline;
    align-self: center;
}

.choe-result-count {
    width: 89%;
    max-width: 1760px;
    margin: 0 auto 18px;
    font-size: 13.5px;
    color: #5B5F58;
}

.choe-article-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 18px;
    width: 89%;
    max-width: 1760px;
    margin: 0 auto;
}
.choe-list-card {
    height: 260px;
    border-radius: 20px;
}

.choe-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 36px auto 0;
    width: 89%;
    max-width: 1760px;
}
.choe-pagination a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    font-size: 13px;
    color: #252825;
    text-decoration: none;
    border: 1px solid rgba(37,40,37,0.18);
}
.choe-pagination a.is-current {
    background: #27352E;
    color: #F4F2EC;
    border-color: #27352E;
}

@media (max-width: 700px) {
    .choe-search-form { flex-direction: column; align-items: stretch; }
    .choe-search-form input, .choe-search-form select { min-width: 0; }
}
