.cb-radio-row {
  background-color: var(--cb-white);
  display: flex;
  min-height: 200px;
  margin-top: 24px;
  gap: 24px;
  border-radius: 5px;
  box-shadow: 0 5px 45px 5px rgba(0, 0, 0, 0.13);
  overflow: hidden;
}

.cb-radio-row-left {
  width: 300px;
  background-color: var(--cb-bg_color2);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.cb-radio-row-right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 16px 16px 0;
  flex: 1;
}

.cb-radio-row-title {
  font-size: 28px;
}

.cb-radio-row-title a {
  color: var(--cb-fg_color);
}
.cb-radio-row-title a:hover,
.cb-radio-row-title a:focus {
  color: var(--cb-primary-color);
}

.cb-radio-row-info {
  display: flex;
  margin: 8px 0 0 0;
  gap: 8px;
  color: var(--cb-secondary_fg_color);
}

.cb-radio-row-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.cb-radio-row-bottom-left a:after {
  display: block;
  content: '';
  border-bottom: solid 2px var(--cb-primary-color);
  transform: scaleX(0);
  transition: transform 0.25s ease-in-out;
}

.cb-radio-row-bottom-left a:hover:after,
.cb-radio-row-bottom-left a:focus:after {
  transform: scaleX(1);
}

@media (max-width: 767px) {
  .cb-radio-row {
    flex-direction: column;
    gap: 0;
  }
  .cb-radio-row-left {
    width: 100%;
    height: 200px;
  }
  .cb-radio-row-right {
    padding: 16px;
  }
  .cb-radio-row-title {
    font-size: 24px;
  }
}

@media (max-width: 440px) {
  .cb-radio-row-title {
    font-size: 20px;
  }
}