/* Collateral Section Styles */

.rand-collateral {
  background-color: #000628;
  padding: 60px 16px;
}

@media (min-width: 768px) {
  .rand-collateral {
    padding: 100px 40px;
  }
}

@media (min-width: 992px) {
  .rand-collateral {
    padding: 150px 60px;
  }
}

.rand-collateral__container {
  max-width: 1320px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  overflow: hidden;
}

@media (min-width: 992px) {
  .rand-collateral__container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
  }
}

@media (min-width: 1200px) {
  .rand-collateral__container {
    gap: 100px;
  }
}

@media (min-width: 1400px) {
  .rand-collateral__container {
    gap: 174px;
  }
}

/* Infographic Image */
.rand-collateral__image {
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 6px;
  overflow: hidden;
  flex-shrink: 0;
}

.rand-collateral__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (min-width: 992px) {
  .rand-collateral__image {
    width: 400px;
    height: 400px;
    aspect-ratio: auto;
  }
}

@media (min-width: 1200px) {
  .rand-collateral__image {
    width: 480px;
    height: 480px;
  }
}

@media (min-width: 1400px) {
  .rand-collateral__image {
    width: 573px;
    height: 573px;
  }
}

/* Content Column */
.rand-collateral__content {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
}

@media (min-width: 992px) {
  .rand-collateral__content {
    flex: 1;
    min-width: 0;
    gap: 40px;
  }
}

@media (min-width: 1400px) {
  .rand-collateral__content {
    max-width: 573px;
    flex: none;
  }
}

/* Text Block */
.rand-collateral__text {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

@media (min-width: 992px) {
  .rand-collateral__text {
    gap: 24px;
  }
}

/* Title */
.rand-collateral__title {
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 32px;
  line-height: 40px;
  letter-spacing: -1px;
  color: #ffffff;
  margin: 0;
}

@media (min-width: 768px) {
  .rand-collateral__title {
    font-size: 40px;
    line-height: normal;
  }
}

@media (min-width: 992px) {
  .rand-collateral__title {
    font-size: 50px;
  }
}

/* Description */
.rand-collateral__description {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #bec7d5;
  margin: 0;
}

@media (min-width: 768px) {
  .rand-collateral__description {
    font-size: 18px;
    line-height: normal;
  }
}

@media (min-width: 992px) {
  .rand-collateral__description {
    font-size: 20px;
  }
}

.rand-collateral__description p {
  margin: 0 0 1em 0;
  color: #bec7d5;
}

.rand-collateral__description p:last-child {
  margin-bottom: 0;
}

/* CTA Block */
.rand-collateral__cta {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* Button */
.rand-collateral__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 52px;
  padding: 8px 24px;
  background-color: #2c52f5;
  border: none;
  border-radius: 999px;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  width: 100%;
}

@media (min-width: 768px) {
  .rand-collateral__button {
    width: fit-content;
  }
}

.rand-collateral__button:hover {
  background-color: #2445d4;
}

/* Arrow Icon */
.rand-collateral__arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* Disclaimer */
.rand-collateral__disclaimer {
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #bec7d5;
  margin: 0;
}
