#trend_list {
  padding-left: 1.38%;
  padding-right: 1.38%;
  padding-bottom: 100px; }
  #trend_list .trend-header {
    margin-bottom: 40px; }
    #trend_list .trend-header h1 {
      font-size: 3rem;
      font-weight: 700;
      letter-spacing: -0.02em;
      color: #000000;
      margin-bottom: 24px; }
    #trend_list .trend-header .category-filter {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      list-style: none;
      margin: 0;
      padding: 0; }
      #trend_list .trend-header .category-filter li a {
        display: inline-block;
        padding: 6px 16px;
        border: 1px solid #ddd;
        border-radius: 20px;
        font-size: 0.85rem;
        font-weight: 400;
        color: #999;
        text-decoration: none;
        transition: all 0.2s; }
        #trend_list .trend-header .category-filter li a:hover {
          color: #000000;
          border-color: #000000; }
      #trend_list .trend-header .category-filter li.active a {
        color: #ffffff;
        background: #000000;
        border-color: #000000; }
  #trend_list .post-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-column-gap: 1.38%;
    grid-row-gap: 48px;
    list-style: none;
    margin: 0;
    padding: 0; }
    #trend_list .post-grid li {
      grid-column: span 4;
      opacity: 0;
      transform: translate3d(0, 10%, 0); }
      #trend_list .post-grid li a {
        display: block;
        text-decoration: none;
        color: #000000; }
        #trend_list .post-grid li a .post-thumb {
          width: 100%;
          height: 0;
          padding-top: 66%;
          position: relative;
          overflow: hidden;
          background: #f0f0f0;
          border-radius: 4px; }
          #trend_list .post-grid li a .post-thumb img {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease; }
          #trend_list .post-grid li a .post-thumb .no-thumb {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: #eee; }
        #trend_list .post-grid li a:hover .post-thumb img {
          transform: scale(1.03); }
        #trend_list .post-grid li a .post-info {
          padding-top: 14px; }
          #trend_list .post-grid li a .post-info .post-category {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 500;
            color: #FF408C;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 6px; }
          #trend_list .post-grid li a .post-info h2 {
            font-size: 1.1rem;
            font-weight: 600;
            line-height: 1.4;
            margin-bottom: 6px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden; }
          #trend_list .post-grid li a .post-info .post-date {
            font-size: 0.75rem;
            color: #999; }
  #trend_list .pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 60px;
    font-size: 0.9rem; }
    #trend_list .pagination a, #trend_list .pagination span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 36px;
      height: 36px;
      border-radius: 50%;
      text-decoration: none;
      color: #999;
      transition: all 0.15s; }
    #trend_list .pagination a:hover {
      color: #000000; }
    #trend_list .pagination .page-current {
      background: #000000;
      color: #ffffff;
      font-weight: 600; }
  #trend_list .empty-state {
    text-align: center;
    padding: 120px 20px;
    color: #999; }
    #trend_list .empty-state p {
      font-size: 1rem; }

@media screen and (max-width: 1024px) {
  #trend_list .post-grid li {
    grid-column: span 6; } }

@media screen and (max-width: 640px) {
  #trend_list .trend-header h1 {
    font-size: 2rem; }
  #trend_list .post-grid {
    grid-row-gap: 32px; }
    #trend_list .post-grid li {
      grid-column: span 12; } }

/*# sourceMappingURL=trend_list.css.map */