/* ============================================================*/
/***** Homepage 2026*****/
/* ============================================================*/

.new-search {
  height: auto;
  min-height: 0;
}






/* ====================================
   Category Page
   ==================================== */

.cat-page-wrapper {
  background: #fff;
  padding: 48px 0 80px;
}

.cat-page-container {
  max-width: 1140px;
  margin: 0 auto;
  padding: 0 24px;
}

.cat-header {
  text-align: center;
  margin-bottom: 0px;
  padding-bottom: 40px;
}

.cat-title {
  font-family: 'Serrif Condensed', serif;
  font-size: 48px;
  font-weight: 400;
  color: #240602;
  line-height: 1.05;
  margin: 0 auto;
  margin-bottom: 20px
}

.cat-description {
  font-size: 20px;
  font-weight: 400;
  color: #555;
  max-width: 600px;
  margin: 0 auto;
}

.cat-sections {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.cat-section-card {
  background: #FDFBF8;
  border-radius: 12px;
  padding: 40px 30px;
}

.cat-section-title {
  font-size: 28px;
  font-weight: 400;
  color: #240602;
  margin: 0;
  margin-bottom: 20px;
}

.cat-section-title a {
  color: #240602;
  text-decoration: none;
}

.cat-section-title a:hover {
  text-decoration-color: #FF5F27;
  color: #240602;
}

.cat-article-list {
  list-style: none;
  padding: 0;
  margin: 0 0 8px;
}

.cat-article-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 0;
  border-bottom: 1px solid #e8e4e2;
}

.cat-article-item:last-child {
  border-bottom: none;
}

.cat-article-icon {
  width: 16px;
  height: 17px;
  flex-shrink: 0;
  opacity: 0.45;
}

.cat-article-link {
  font-size: 18px;
  font-weight: 400;
  color: #240602;
  text-decoration: none;
  line-height: 1.4;
}

.cat-article-link:hover {
  color: #FF5F27;
  text-decoration: underline;
  text-decoration-color: #FF5F27;
}

.cat-see-all {
  display: inline-block;
  margin-top: 16px;
  font-size: 14px;
  font-weight: 500;
  color: #240602;
  text-decoration: none;
  border-bottom: 1.5px solid #FF5F27;
  padding-bottom: 1px;
  transition: opacity 0.15s;
}

.cat-see-all:hover {
  color: #FF5F27;
  text-decoration: none;
}

.cat-section-empty a,
.cat-empty a {
  font-size: 14px;
  color: #999;
  text-decoration: none;
}

@media only screen and (max-width: 767px) {
  .cat-sections {
    grid-template-columns: 1fr;
  }

  .cat-title {
    font-size: 36px; 
  }
}
