.camera-section {
  display: flex;
  justify-content: center;
  background-color: #0F1626;
  padding-top: 160px;
  padding-bottom: 160px;
}

.camera-card {
  width: 1328px;
  height: 508px;
  display: flex;
  background: linear-gradient(90deg,
      rgba(0, 255, 232, 0.05) 0%,
      rgba(6, 6, 6, 0.9) 100%);
  box-sizing: border-box;
  gap: 16px;
}

.camera-image {
  width: 649px;
  height: 100%;
}

.camera-image img {
  width: 649px;
  height: 508px;
  object-fit: cover;
}

.camera-content {
  padding-top: 154.5px;
  padding-bottom: 154.5px;
  padding-left: 57px;
  width: 598px;
  height: 199px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: #ffffff;
}

.camera-title {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 24px;
  line-height: 100%;
}

.camera-text {
  font-family: 'Inter', sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 100%;
}

@media (max-width: 440px) {
  .camera-section {
    width: calc(100vw - 16px);
    max-width: 393px;
    margin: 0;
    padding-left: 16px;
    padding-right: 0;
    padding-top: 40.5px;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    background: none;
  }
  .camera-card {
    width: 393px;
    height: 140px;
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    background: #0606061A;
    border-radius: 0;
    box-sizing: border-box;
    padding: 0;
    gap: 24px;
    overflow: hidden;
  }
  .camera-image {
    width: 181px;
    height: 140px;
    flex: 0 0 181px;
  }
  .camera-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
  .camera-content {
    width: 182px;
    height: 123px;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
    overflow: hidden;
  }
  .camera-title {
    font-size: 12px;
    font-weight: 700;
    margin: 8px 0 2px 0;
    color: #fff;
    text-align: left;
    line-height: 1.1;
  }
  .camera-text {
    font-size: 10px;
    font-weight: 400;
    color: #fff;
    margin: 0;
    text-align: left;
    line-height: 1.3;
    max-width: 182px;
    max-height: 109px;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    /* -webkit-line-clamp: 6; */
    -webkit-box-orient: vertical;
    white-space: normal;
  }
}