@charset "UTF-8";
.news_search {
  margin-top: 30px;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
}

.search-count {
  margin-bottom: 25px;
  font-size: 16px;
  color: #666;
  background: #f8f9fa;
  padding: 12px 15px;
  border-radius: 6px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.22);
}

.search-count p {
  margin: 0;
  font-weight: 500;
}

.search-count strong {
  color: #8e44ad;
}

.search-results {
  margin-bottom: 30px;
}

.newslist-item {
  padding: 25px;
  margin-bottom: 25px;
  border-radius: 8px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  transition: all 0.3s ease;
}

.newslist-item:hover {
  box-shadow: 0 5px 20px rgba(142, 68, 173, 0.15);
  transform: translateY(-3px);
}

.newslist-item .item-image {
  margin-right: 25px;
  width: 252px;
  overflow: hidden;
  border-radius: 6px;
}

.newslist-item .item-image img {
  width: 100%;
  height: auto;
  transition: transform 0.5s ease;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 4/3;
}

.newslist-item:hover .item-image img {
  transform: scale(1.05);
}

.newslist-item .item-content {
  flex: 1;
  min-width: 300px;
  display: flex;
  flex-direction: column;
}

.newslist-item .title {
  margin-top: 0;
  margin-bottom: 12px;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.4;
}

.newslist-item .title a {
  color: #333;
  text-decoration: none;
  transition: color 0.2s ease;
}

.newslist-item .title a:hover {
  color: #8e44ad;
}

.newslist-item .c-info_aside {
  color: #888;
  font-size: 14px;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.newslist-item .c-info_aside span {
  margin-right: 20px;
  display: flex;
  align-items: center;
}

.newslist-item .c-info_aside i {
  margin-right: 6px;
  color: #9b59b6;
}

.newslist-item .summary {
  color: #666;
  margin-bottom: 20px;
  display: block;
  line-height: 1.6;
  font-size: 15px;
  flex-grow: 1;
}

.newslist-item .detail {
  align-self: flex-start;
  display: inline-block;
  color: #fff;
  background-color: #8e44ad;
  padding: 8px 18px;
  border-radius: 4px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 14px;
}

.newslist-item .detail:hover {
  background-color: #9b59b6;
  box-shadow: 0 4px 8px rgba(142, 68, 173, 0.3);
}

.no-results {
  text-align: center;
  padding: 50px 30px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  margin: 30px 0;
}

.no-results-icon {
  font-size: 70px;
  color: #8e44ad;
  margin-bottom: 25px;
  opacity: 0.8;
}

.no-results-text {
  font-size: 20px;
  color: #444;
  margin-bottom: 25px;
  line-height: 1.5;
}

.search-suggestion {
  max-width: 500px;
  margin: 0 auto;
  text-align: left;
  background-color: #f8f9fa;
  padding: 20px 25px;
  border-radius: 6px;
}

.search-suggestion p {
  font-weight: 600;
  color: #444;
  margin-top: 0;
  font-size: 16px;
  position: relative;
  padding-left: 10px;
  border-left: 3px solid #8e44ad;
  margin-bottom: 15px;
}

.search-suggestion ul {
  padding-left: 25px;
  list-style-type: circle;
}

.search-suggestion li {
  margin-bottom: 10px;
  color: #666;
  line-height: 1.5;
  font-size: 15px;
}

.block_title_cat {
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  font-size: 28px;
  font-weight: 600;
  color: #333;
}

.block_title_cat span {
  display: inline-block;
  padding: 0 15px;
  position: relative;
}

.block_title_cat span:before,
.block_title_cat span:after {
  content: "";
  position: absolute;
  height: 2px;
  background: linear-gradient(to right, #8e44ad, rgba(142, 68, 173, 0.2));
  width: 80px;
  bottom: -10px;
}

.block_title_cat span:before {
  left: 0;
}

.block_title_cat span:after {
  right: 0;
}

@media (max-width: 1024px) {
  .news_search {
    margin-top: 20px;
    padding: 0 20px;
  }
  .block_title_cat {
    font-size: 26px;
    margin-bottom: 25px;
  }
  .newslist-item .item-image {
    width: 220px;
    margin-right: 20px;
  }
}
@media (max-width: 768px) {
  .search-container {
    padding: 0 16px;
    margin: 20px auto;
  }
  .news_search {
    margin-top: 20px;
    padding: 0;
  }
  .block_title_cat {
    font-size: 24px;
    margin-bottom: 25px;
    padding: 0 10px;
  }
  .block_title_cat span:before,
  .block_title_cat span:after {
    width: 40px;
    height: 3px;
  }
  .search-count {
    font-size: 15px;
    padding: 14px 18px;
    margin-bottom: 25px;
    border-radius: 12px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border: 1px solid #dee2e6;
  }
  .newslist-item {
    flex-direction: column;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: #fff;
    border: 1px solid #f1f3f4;
    position: relative;
  }
  .newslist-item::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #8e44ad, #9b59b6);
    border-radius: 16px 16px 0 0;
  }
  .newslist-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(142, 68, 173, 0.15);
  }
  .newslist-item .item-image {
    margin: 0 0 16px 0;
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
  }
  .newslist-item .item-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 12px;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .newslist-item:hover .item-image img {
    transform: scale(1.03);
  }
  .newslist-item .item-content {
    min-width: auto;
    width: 100%;
  }
  .newslist-item .title {
    font-size: 18px;
    margin-bottom: 12px;
    line-height: 1.4;
    font-weight: 700;
    color: #2c3e50;
  }
  .newslist-item .title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
  }
  .newslist-item .title a:hover {
    color: #8e44ad;
  }
  .newslist-item .c-info_aside {
    background: #f8f9fa;
    padding: 10px 14px;
    border-radius: 10px;
    margin-bottom: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 13px;
    border: 1px solid #e9ecef;
  }
  .newslist-item .c-info_aside span {
    margin: 0;
    display: flex;
    align-items: center;
    color: #6c757d;
    font-weight: 500;
  }
  .newslist-item .c-info_aside i {
    margin-right: 6px;
    color: #8e44ad;
    font-size: 14px;
  }
  .newslist-item .summary {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 18px;
    color: #5a6c7d;
  }
  .newslist-item .detail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    background: linear-gradient(135deg, #8e44ad, #9b59b6);
    color: white;
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 15px rgba(142, 68, 173, 0.3);
    width: -moz-fit-content;
    width: fit-content;
    align-self: flex-start;
  }
  .newslist-item .detail:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(142, 68, 173, 0.4);
    background: linear-gradient(135deg, #9b59b6, #8e44ad);
  }
  .newslist-item .detail i {
    margin-right: 8px;
    font-size: 14px;
  }
}
@media (max-width: 576px) {
  .search-container {
    padding: 0 12px;
    margin: 15px auto;
  }
  .news_search {
    margin-top: 15px;
  }
  .block_title_cat {
    font-size: 20px;
    margin-bottom: 20px;
    padding: 0 8px;
  }
  .block_title_cat span:before,
  .block_title_cat span:after {
    width: 25px;
    height: 2px;
  }
  .search-count {
    font-size: 14px;
    padding: 12px 16px;
    margin-bottom: 20px;
    border-radius: 10px;
  }
  .newslist-item {
    padding: 16px;
    margin-bottom: 16px;
    border-radius: 12px;
  }
  .newslist-item .item-image {
    height: 180px;
    margin-bottom: 14px;
    border-radius: 10px;
  }
  .newslist-item .item-image img {
    border-radius: 10px;
  }
  .newslist-item .title {
    font-size: 16px;
    margin-bottom: 10px;
    line-height: 1.4;
    font-weight: 700;
  }
  .newslist-item .c-info_aside {
    padding: 8px 12px;
    border-radius: 8px;
    margin-bottom: 12px;
    flex-direction: column;
    gap: 6px;
    font-size: 12px;
  }
  .newslist-item .c-info_aside span {
    justify-content: flex-start;
  }
  .newslist-item .summary {
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 16px;
  }
  .newslist-item .detail {
    width: 100%;
    padding: 14px 20px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 600;
    justify-content: center;
  }
  .no-results {
    padding: 40px 20px;
    margin: 20px 0;
    border-radius: 16px;
    background: linear-gradient(135deg, #fafbfc 0%, #f8f9fa 100%);
    border: 1px solid #e9ecef;
  }
  .no-results-icon {
    font-size: 60px;
    color: #8e44ad;
    margin-bottom: 20px;
    opacity: 0.9;
  }
  .no-results-text {
    font-size: 18px;
    margin-bottom: 25px;
    color: #495057;
    font-weight: 600;
  }
  .search-suggestion {
    background: #fff;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 20px;
    margin: 25px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  }
  .search-suggestion p {
    font-size: 16px;
    margin-bottom: 15px;
    color: #495057;
    font-weight: 600;
    border-left: 4px solid #8e44ad;
    padding-left: 12px;
  }
  .search-suggestion ul {
    padding-left: 20px;
    list-style: none;
  }
  .search-suggestion li {
    font-size: 14px;
    margin-bottom: 10px;
    color: #6c757d;
    line-height: 1.5;
    position: relative;
    padding-left: 20px;
  }
  .search-suggestion li::before {
    content: "•";
    color: #8e44ad;
    font-weight: bold;
    position: absolute;
    left: 0;
    font-size: 16px;
  } /* Search Form Mobile */
  .search-again {
    margin-top: 30px;
  }
  .search-form {
    max-width: 100%;
    padding: 0;
  }
  .search-input-group {
    display: flex !important;
    flex-direction: column !important;
    gap: 12px;
    background: #fff;
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    border: 1px solid #e9ecef;
    position: static !important;
  }
  .search-input-group input {
    height: 50px !important;
    border-radius: 10px !important;
    padding: 0 16px !important;
    font-size: 16px !important;
    border: 2px solid #e9ecef !important;
    background: #f8f9fa !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    box-sizing: border-box !important;
  }
  .search-input-group input:focus {
    outline: none !important;
    border-color: #8e44ad !important;
    background: #fff !important;
    box-shadow: 0 0 0 3px rgba(142, 68, 173, 0.1) !important;
  }
  .search-btn {
    position: static !important;
    width: 100% !important;
    height: 50px !important;
    border-radius: 10px !important;
    background: linear-gradient(135deg, #8e44ad, #9b59b6) !important;
    color: white !important;
    border: none !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(142, 68, 173, 0.3) !important;
    z-index: 1 !important;
  }
  .search-btn:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(142, 68, 173, 0.4) !important;
  }
  .search-btn i {
    margin-right: 8px;
  }
  .pagination-container {
    margin-top: 25px;
    text-align: center;
    padding: 0 10px;
  }
}
@media (max-width: 360px) {
  .search-container {
    padding: 0 8px;
  }
  .newslist-item {
    padding: 12px;
    margin-bottom: 12px;
  }
  .newslist-item .item-image {
    height: 160px;
    margin-bottom: 12px;
  }
  .newslist-item .title {
    font-size: 15px;
    margin-bottom: 8px;
  }
  .newslist-item .c-info_aside {
    font-size: 11px;
    padding: 6px 10px;
  }
  .newslist-item .summary {
    font-size: 13px;
    margin-bottom: 14px;
  }
  .newslist-item .detail {
    padding: 12px 16px;
    font-size: 14px;
  }
  .block_title_cat {
    font-size: 18px;
  }
  .no-results {
    padding: 30px 15px;
  }
  .no-results-icon {
    font-size: 50px;
  }
  .no-results-text {
    font-size: 16px;
  }
  .search-suggestion {
    padding: 16px;
  }
  .search-suggestion p {
    font-size: 15px;
  }
  .search-suggestion li {
    font-size: 13px;
  }
}
.search-container {
  max-width: 1200px;
  margin: 20px auto;
  padding: 0 15px;
}

.search-header {
  text-align: center;
  margin-bottom: 30px;
}

.d-none {
  display: none;
}

.search-again {
  margin-top: 30px;
}

.search-form {
  max-width: 500px;
  margin: 0 auto;
}

.search-input-group {
  display: flex;
  position: relative;
}

.search-input-group input {
  flex: 1;
  height: 50px;
  border-radius: 25px;
  padding: 5px 60px 5px 20px;
  font-size: 16px;
  border: 2px solid #e0e0e0;
  box-shadow: none;
  outline: none;
  transition: all 0.3s ease;
}

.search-input-group input:focus {
  border-color: #8e44ad;
  box-shadow: 0 0 0 3px rgba(142, 68, 173, 0.2);
}

.search-btn {
  position: absolute;
  right: 5px;
  top: 5px;
  height: 40px;
  border-radius: 20px;
  background: #8e44ad;
  color: white;
  border: none;
  padding: 0 20px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 2;
}

.search-btn:hover {
  background: #9b59b6;
}

@media (min-width: 577px) {
  .no-results .search-input-group {
    display: flex;
    position: relative;
  }
  .no-results .search-input-group input {
    padding: 5px 60px 5px 20px;
  }
  .no-results .search-btn {
    position: absolute;
    right: 5px;
    top: 5px;
    width: auto;
    height: 40px;
  }
}
@media (max-width: 576px) {
  .no-results .search-input-group,
  .search-input-group {
    display: flex !important;
    flex-direction: column !important;
    position: static !important;
  }
  .no-results .search-input-group input,
  .search-input-group input {
    padding: 0 16px !important;
    width: 100% !important;
  }
  .no-results .search-btn,
  .search-btn {
    position: static !important;
    width: 100% !important;
    height: 30px !important;
    right: auto !important;
    top: auto !important;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.newslist-item {
  animation: fadeIn 0.5s ease forwards;
}

.newslist-item:nth-child(1) {
  animation-delay: 0.1s;
}

.newslist-item:nth-child(2) {
  animation-delay: 0.2s;
}

.newslist-item:nth-child(3) {
  animation-delay: 0.3s;
}

.newslist-item:nth-child(4) {
  animation-delay: 0.4s;
}

.newslist-item:nth-child(5) {
  animation-delay: 0.5s;
}/*# sourceMappingURL=search.css.map */