/* .panel-container {
      display: flex;
      gap: 15px;
      transition: all 0.3s ease;
    }

    .card {
      position: relative;
      flex: 1;
      height: 400px;
      border-radius: 16px;
      overflow: hidden;
      background-size: cover;
      background-position: center;
      color: white;
      transition: all 0.4s ease;
      cursor: pointer;
    }

    .overlay1 {
      position: absolute;
      inset: 0;
      background: rgba(0, 0, 0, 0.5);
      z-index: 1;
    }

    .text-block {
      position: relative;
      padding: 15px;
      z-index: 2;
      display: none; 
    }

    .title1 {
      font-size: 18px;
      font-weight: bold;
      margin-bottom: 8px;
    }

    .desc {
      font-size: 14px;
      line-height: 1.4;
    }

    .vertical-text {
      position: absolute;
      inset: 0;
      writing-mode: vertical-rl;
      text-orientation: mixed;
      display: flex;
      justify-content: center;
      align-items: center;
      font-size: 20px;
      font-weight: bold;
      text-transform: uppercase;
      color: white;
      z-index: 2;
    }


    .card.active {
      flex: 2;
      transform: scale(1.05);
      z-index: 5;
    }


    .card.active .text-block {
      display: block;
    }

    .card.active .vertical-text {
      display: none;
    } */