/* Results Section */
.results-section .container {
  display: flex;
  flex-direction: column;
  gap: var(--container-gap);
}

.results-section .title {
  font-size: var(--h1-font-size-mobile);
  font-weight: 400;
  line-height: var(--h1-line-height-mobile);
  text-align: left;
}

.results-section .content {
  display: flex;
  flex-direction: column;
  gap: var(--container-gap);
}

.results-section .main-content-image {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 184px;
}

.results-section .main-content-image img {
  width: 100%;
  min-height: 184px;
  height: auto;
  display: block;
}

.results-section .results-panel {
  display: flex;
  flex-direction: column;
  gap: var(--content-gap);
}

.results-section .result-card {
  border-radius: 12px;
  background-color: #f9f7f7;
  padding: var(--padding-small);
}

.results-section .result-card .content {
  display: flex;
  flex-direction: row;
  gap: 16px;
}

.results-section .result-card .content-image {
  height: 16px;
  width: 14px;

  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.results-section .result-card .content p {
  font-size: 16px;
  font-weight: 300;
  line-height: 20.8px;
  text-align: left;
  color: #353535;
}

@media (min-width: 1280px) {
  .results-section .container {
    width: 1200px;
    gap: 60px;
  }

  .results-section .results-panel {
    display: flex;
    flex-direction: column;
    gap: 16px;
  }

  .results-section .result-card {
    background-color: #f9f7f7;
    width: 582px;
    padding: 20px;
    border-radius: 12px;
  }

  .results-section .content {
    flex-direction: row;
  }

  .results-section .main-content-image {
    width: 582px;
    min-height: 374px;
    border-radius: 12px;
  }

  .results-section .main-content-image img {
    width: 582px;
    min-height: 374px;
    height: 100%;
    border-radius: 12px;
  }

  .results-section .result-card .content-image {
    width: 18px;
    height: 28.39px;
  }

  .results-section .result-card .content-image img {
    width: 18px;
    height: 28.39px;
  }
}
