.tabs-container {
      display: flex;
      width: 100%;
      gap: 20px;
      margin: 0 auto;
    }
    .image-preview {
      flex: 0 0 40%;
      position: relative;
      min-height: 400px;
      overflow: hidden;
    }
    .image-preview img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      opacity: 0;
      transition: opacity 0.5s ease-in-out;
      border-radius: 13px;
    }
    .image-preview img.active {
      opacity: 1;
    }
    .tabs {
      flex: 0 0 60%;
      display: flex;
      flex-direction: column;
    }
    .tab {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 18px 20px;
      border-bottom: 1px solid #333;
      text-decoration: none;
      color: #000;
      transition: background 0.3s ease, color 0.3s ease;
      cursor: pointer;
    }
    .tab:hover {
      color: #6bbf47;
    }
    .tab-date {
      font-size: 14px;
      width: 30%;
      font-family: "Noto Sans", Sans-serif;
    }
    .tab-title {
      font-weight: bold;
      width: 50%;
      font-family: "Noto Sans", Sans-serif;
    }
    .tab-icon {
      width: 20%;
      text-align: right;
    }
    .tab-icon img {
      width: 22px;
      height: 22px;
      transition: filter 0.3s ease;
    }
    .tab:hover .tab-icon img {
      filter: brightness(0) saturate(100%) invert(58%) sepia(44%) saturate(459%) hue-rotate(66deg) brightness(92%) contrast(92%);
    }
    .tab.active {
      color: #6bbf47;
      font-weight: bold;
    }
    .tab.active .tab-icon img {
      filter: brightness(0) saturate(100%) invert(58%) sepia(44%) saturate(459%) hue-rotate(66deg) brightness(92%) contrast(92%);
    }
    @media (max-width: 768px) {
      .tabs-container {
        flex-direction: column;
      }
      .tabs {
        order: 1;
        width: 100%;
      }
      .image-preview {
        order: 2;
        width: 100%;
        min-height: 250px;
      }
    }