* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.homeSection {
  width: 100vw;
  height: auto;
  min-height: 100vh;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  position: relative;
  z-index: 0;
  overflow: hidden;

  .detail_container {
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 40px;

    .contents {
      display: block;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      padding: 0 20px;
      gap: 20px;
      margin:0 auto;

      .content {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: center;
        height: 100%;
        gap: 40px;
        text-align: center;

        .logo {
          display: flex;
          align-items: center;
          justify-content: center;
          height: fit-content;

          img {
            object-fit: contain;
            height: 150px;
            width: auto;
          }
        }
        .title {
          font-size: 24px;
          font-weight: 600;
          color: #993399;
        }
        .subtitle {
          font-size: 14px;
          margin-top: 2px;
          font-weight: 600;
          color: black;
        }
        .details {
          display: flex;
          flex-direction: column;
          padding: 25px 36px;
          width: 100%;

          border: 1px solid rgba(0, 0, 0, 0.281);
          background-color: rgba(238, 238, 238, 0.075);
          border-radius: 16px;

          h6 {
            font-size: 20px;
            font-weight: 500;
            color: black;
            span {
              color: red;
              font-weight: 800;
            }
          }
          h5 {
            font-size: 16px;
            font-weight: 500;
            margin-top: 20px;
            color: black;
          }
          .day {
            margin-top: 20px;
            color: black;
            font-size: 18px;
            font-weight: 600;
            color: #99339A;
          }
          .time {
            font-size: 16px;
            font-weight: 600;
            color: #99339A;
          }
        }
        .w-btn {
          padding-inline: 20px;
          font-size: 16px;
          width: max-content;
          order: 1;

          transition: background 0.3s ease;
          &:hover {
            background: green;
          }
        }
      }
    }
  }
  @media (max-width: 1024px) {
    grid-template-columns: auto;
    .detail_container {
      .contents {

        .content {
          gap: 20px;
        }

        @media (max-width: 640px) {
          grid-template-columns: auto;
          padding: 0;
          gap: 40px;
        }
      }
    }
  }
}
