#hero {
  margin-bottom: 160px;
}

.introduction {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-top: 80px;
}
.text-container {
  flex: 1;
  padding: 80px;
}

.text-container > p {
  font-size: 18px;
}

@media only screen and (max-width: 1024px) {
  .introduction {
    flex-direction: column;
  }
  .introduction .text-container {
    padding: 16px 0;
  }
}

.introduction img {
  width: 100%;
  height: auto;
  max-width: 640px;
  border-radius: 16px;
}

.details {
  margin-top: 24px;
}

.details .detail:first-child {
  border-bottom: 1px solid var(--gray-50);
}

.details .detail {
  display: flex;
  justify-content: space-between;
  color: var(--gray-500);
}

.detail .name {
  font-weight: 500;
}
.detail span {
  color: var(--gray-500);
  margin: 4px;
}

.container {
  display: flex;
}

.text-section .column {
  max-width: 800px;
}

.column {
  max-width: 600px;
  display: flex;
  flex-grow: 1;
}

.container {
  gap: 80px;
}

.decorator {
  width: 8px;
  height: 100%;
  background: #f5f5f5;
  background: linear-gradient(
    180deg,
    rgba(245, 245, 245, 1) 0%,
    rgba(245, 245, 245, 0) 100%
  );
  border-radius: 100px;
  margin-left: auto;
}

@media only screen and (max-width: 1024px) {
  .column:has(.decorator) {
    display: none;
  }
}

.quadrant {
  display: flex;
  flex-direction: column;
  gap: 80px;
}

/*
  Attributes table
*/

.table .table-container {
  width: 100%;
}

.attributes-title {
  color: var(--secondary-color);
  font-weight: 600;
  margin: 24px 0px 0px 0px;
}

.attribute-item {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--gray-50);
  padding: 8px 0;
  gap: 24px;
}

.attribute-name {
  font-weight: 500;
}

.attribute-value {
  max-width: 600px;
  width: 100%;
  text-align: left;
}

@media only screen and (max-width: 1024px) {
  .attribute-item {
    flex-direction: column;
    gap: 0px;
  }
}

/**
* 	LISTS STYLING
**/

.quadrant {
  margin: 112px 16px;
}
.quadrant li {
  list-style-type: disc;
  color: var(--gray-500);
  line-height: 28px;
}
.quadrant ul {
  margin-top: 8px;
  padding-left: 48px;
}

.quadrant .container {
  width: 100%;
}

@media only screen and (max-width: 1024px) {
  .quadrant .container {
    flex-direction: column;
  }
}

#primary-cta {
  margin-top: 56px;
}
