.galleryWrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem 1rem;
    box-sizing: border-box;
    font-family: sans-serif;
  }
  .searchBar {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 1.5rem;
  }
  .searchSelect {
    padding: 0.4rem;
    font-size: 0.9rem;
    border: 1px solid #ccc;
    outline: none;
  }
  .searchInput {
    width: 200px;
    padding: 0.4rem;
    font-size: 1rem;
    border: 1px solid #ccc;
    outline: none;
    margin-left: -1px;
  }
  .searchBtn {
    padding: 0.4rem 0.7rem;
    background: #000;
    color: #fff;
    border: 2px solid #000;
    border-radius: 0 3px 3px 0;
    cursor: pointer;
    font-size: 0.9rem;
  }
  .searchBtn i {
    font-size: 0.9rem;
  }
  .galleryContainer {
    width: 100%;
  }
  .galleryItem {
    display: flex;
    width: 100%;
    border: 1px solid #ddd;
    margin-bottom: 20px;
    box-sizing: border-box;
    padding: 20px;
    cursor: pointer;
  }
  .galleryItem:hover {
    background: #fafafa;
  }
  .imgArea {
    width: 15%;
    height: 270px;
    margin-right: 20px;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }
  .imgArea img {
    width: 100%;
   
    object-fit: cover;
    display: block;
  }
  .infoArea {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  .infoArea h3 {
    margin: 0 0 12px;
    font-size: 1.3rem;
    font-weight: bold;
  }
  .dottedLine {
    border-bottom: 1px dotted #ccc;
    margin: 8px 0 12px;
  }
  .metaList {
    list-style: none;
    padding: 0;
    margin: 0 0 10px;
    font-size: 0.9rem;
    line-height: 1.4;
    color: #444;
  }
  .metaRow {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
  }
  .metaRow .label {
    width: 80px;
    font-weight: bold;
    color: #333;
    flex-shrink: 0;
  }
  .metaRow .value {
    flex: 1;
    white-space: pre-wrap;
  }
  .pageNav {
    margin-top: 2rem;
    text-align: center;
  }
  .pageNav a,
  .pageNav span {
    display: inline-block;
    margin: 0 4px;
    padding: 4px 8px;
    border: 1px solid #ccc;
    text-decoration: none;
    color: #fff;
    transition: background 0.2s;
    background: #666;
  }
  .pageNav a:hover {
    background: #ddd;
    color: #333;
  }
  .currentPage {
    background: #333;
    color: #fff;
  }
  @media (max-width: 768px) {
    .searchInput {
      width: 120px;
    }
    .galleryItem {
      flex-direction: column;
      padding: 20px;
      height: auto;
    }
    .imgArea {
      width: 100%;
      height: 200px;
      margin-right: 0;
      margin-bottom: 20px;
    }
  }
 @media (max-width: 470px) {
    .searchInput {
      width: 100px;
    }
    .galleryItem {
      flex-direction: column;
      padding: 10px;
      height: auto;
    }
    .imgArea {
      width: 100%;
      height: 100px;
      margin-right: 0;
      margin-bottom: 10px;
    }
  }