  .insights-section,
  .insights-section * {
      box-sizing: border-box;
  }

  .insights-section {
      --border: #deb6a6;
      --text: #202020;
      --muted: #7d7d7d;
      --line: #dddddd;
      --gap: 30px;

      width: calc(100% - 40px);
      margin: 20px;
      background: #fff;
      font-family: "Poppins";
      color: var(--text);
  }

  .insights-inner {
      width: 100%;
  }

  /* =========================
     FILTER TOP
  ========================== */

  .filter-top {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: var(--gap);
      position: relative;
      z-index: 4;
  }

  .filter-trigger {
      width: 100%;
      height: 58px;

      display: flex;
      align-items: center;
      justify-content: space-between;

      padding: 0 25px;

      border: 1px solid var(--border);
      background: #fff;

      color: var(--text);
      font: inherit;
      font-size: 19px;
      font-weight: 400;

      cursor: pointer;
  }

  .filter-arrow {
      width: 8px;
      height: 8px;

      border-right: 1.5px solid #999;
      border-bottom: 1.5px solid #999;

      transform: rotate(45deg);
      margin-top: -5px;
  }

  .insights-section[data-open="topics"] .topics-trigger,
  .insights-section[data-open="content"] .content-trigger {
      border-bottom-color: transparent;
  }

  .insights-section[data-open="topics"] .topics-trigger .filter-arrow,

  .insights-section[data-open="content"] .content-trigger .filter-arrow {
      transform: rotate(225deg);
      margin-top: 4px;
  }

  /* =========================
     FILTER OPEN PANEL
  ========================== */

  .filter-panel {
      display: none;
      position: relative;

      /* min-height: 106px; */

      background: #fff;

      border-left: 1px solid var(--border);
      border-right: 1px solid var(--border);
      border-bottom: 1px solid var(--border);

      margin-top: 8px;
      padding: 10px;

      z-index: 3;
  }

  .insights-section[data-open] .filter-panel {
      display: block;
  }

  /* stepped horizontal line */
  .filter-panel::before {
      content: "";
      position: absolute;
      height: 1px;

      background: var(--border);
      top: 0;
  }

  /* stepped vertical line */
  .insights-section[data-open="topics"] .filter-panel::after {
      margin-left: -1px;
  }

  .insights-section[data-open="content"] .filter-panel::after {
      margin-right: -1px;
  }

  .filter-panel::after {
      content: "";
      position: absolute;
      top: -9px;
      width: 1px;
      height: 10px;
      background: var(--border);
  }

  /* TOPICS OPEN */
  .insights-section[data-open="topics"] .filter-panel::before {
      left: calc(((100% - var(--gap)) / 2) + 0px);
      right: 0;
  }

  .insights-section[data-open="topics"] .filter-panel::after {
      left: calc((100% - var(--gap)) / 2);
  }

  /* CONTENT OPEN */
  .insights-section[data-open="content"] .filter-panel::before {
      left: 0;
      right: calc(((100% - var(--gap)) / 2) + 0px);
  }

  .insights-section[data-open="content"] .filter-panel::after {
      right: calc((100% - var(--gap)) / 2);
  }

  .filter-options {
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      gap: 15px;
  }

  .filter-option {
      min-height: 34px;

      padding: 5px 13px;

      border: 1px solid var(--border);
      background: #fff;

      color: var(--text);
      font: inherit;
      font-size: 18px;
      line-height: 1;

      cursor: pointer;
      white-space: nowrap;
  }

  .filter-option.active,
  .filter-option:hover {
      background: #f4e2d6;
      border-color: var(--border);
      color: var(--text);
  }

  /* =========================
     FILTER SUMMARY
  ========================== */

  .filter-summary {
      display: flex;
      align-items: center;
      gap: 66px;

      margin: 31px 0 56px;

      font-size: 17px;
  }

  .filter-summary strong {
      font-weight: 700;
  }

  .filter-clear {
      padding: 0;
      border: 0;
      background: transparent;

      color: #aaa;
      font: inherit;
      text-decoration: underline;

      cursor: pointer;
  }

  /* =========================
     BLOG GRID
  ========================== */

  .insights-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
  }

  .insight-card {
      padding: 28px 23px 0;
      border-left: 1px solid var(--line);
  }

  .insight-card:nth-child(3n + 1) {
      border-left: none;
      padding-left: 0;
      padding-right: 23px;
  }

  .insight-card:nth-child(3n) {
      padding-right: 0;
      padding-left: 23px;
  }

  .insight-card:nth-child(n + 4) {
      padding-top: 48px;
  }

  .insight-title a {
      margin: 0 0 18px;

      color: #191919;

      font-size: 21px;
      line-height: 1.36;
      font-weight: 700;
      letter-spacing: -0.3px;

      display: -webkit-box;
      -webkit-line-clamp: 2;
      -webkit-box-orient: vertical;
      overflow: hidden;
  }

  .insight-description {
      margin: 0;

      min-height: 84px;

      color: var(--muted);

      font-size: 13px;
      line-height: 1.55;


      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
  }

  .insight-date {
      display: block;

      margin-top: 8px;

      color: #7d7d7d;

      font-size: 12px;
      line-height: 1.4;
  }



  .insight-image img {
      width: 100%;
      height: 220px !important;
      display: block;
      object-fit: cover;
      border-radius: 12px;
  }

  /* =========================
     PAGINATION
  ========================== */

  .insights-pagination {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 22px;
      margin: 44px 0 0;
  }

  .insights-pagination__page,
  .insights-pagination__arrow {
      width: 38px;
      height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 0;
      background: transparent;
      color: #202020;
      font: inherit;
      line-height: 1;
      cursor: pointer;
      padding: 0;
  }

  .insights-pagination__page {
      border-radius: 9px;
      font-size: 18px;
  }

  .insights-pagination__page.is-active {
      background: #f08a2a;
      color: #fff;
      font-weight: 700;
  }

  .insights-pagination__arrow {
      font-size: 30px;
  }

  .insights-pagination__page:hover,
  .insights-pagination__arrow:hover {
      opacity: 0.85;
  }

  /* =========================
     RESPONSIVE
  ========================== */

  @media (max-width: 900px) {
      .insights-grid {
          grid-template-columns: repeat(2, 1fr);
      }

      .insight-card,
      .insight-card:nth-child(3n + 1),
      .insight-card:nth-child(3n) {
          border-left: 1px solid var(--line);
          padding: 25px;
      }

      .insight-card:nth-child(2n + 1) {
          border-left: none;
          padding-left: 0;
      }

      .insight-card:nth-child(2n) {
          padding-right: 0;
      }

      .filter-summary {
          gap: 30px;
          flex-wrap: wrap;
      }

      .insights-pagination {
          gap: 16px;
          margin-top: 36px;
      }
  }

  @media (max-width: 767px) {
      .insights-section {
          width: calc(100% - 40px);
          margin: 20px;
      }

      .filter-top {
          grid-template-columns: 1fr;
          gap: 10px;
      }

      .filter-trigger {
          height: 52px;
          font-size: 17px;
          padding: 0 18px;
      }

      .filter-panel {
          margin-top: 10px;
          padding: 16px;

          border-top: 1px solid var(--border);
      }

      .filter-panel::before,
      .filter-panel::after {
          display: none;
      }

      .insights-section[data-open="topics"] .topics-trigger,
      .insights-section[data-open="content"] .content-trigger {
          border-bottom-color: var(--border);
      }

      .filter-options {
          gap: 10px;
      }

      .filter-option {
          font-size: 16px;
      }

      .filter-summary {
          margin-bottom: 35px;
      }

      .insights-grid {
          grid-template-columns: 1fr;
      }

      .insight-card,
      .insight-card:nth-child(2n),
      .insight-card:nth-child(2n + 1),
      .insight-card:nth-child(3n),
      .insight-card:nth-child(3n + 1) {
          border-left: none;
          border-top: 1px solid var(--line);

          padding: 30px 0 0;
          margin-top: 30px;
      }

      .insight-card:first-child {
          border-top: none;
          padding-top: 0;
          margin-top: 0;
      }

      .insight-description {
          min-height: auto;
      }

      .insights-pagination {
          gap: 5px;
          margin-top: 32px;
      }
  }