.entry-content > .elementor {
  margin-bottom: 0;
}

ul.features-list,
.loop-feature-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  width: 100%;
  list-style: none;
}

ul.features-list {
  max-width: 600px;
}

ul.features-list li {
  border: 1px solid white;
  border-radius: 50px;
  padding-inline: 16px;
  font-size: 14px;
  line-height: 1.8;
}

ul.features-list li:first-of-type {
  border-color: var(--theme-palette-color-1);
  background-color: var(--theme-palette-color-1);
  color: white;
  font-weight: bold;
}

body.single-courses ul.features-list li {
  color: white;
}

.loop-feature-list ul li {
  border: 1px solid var(--theme-palette-color-5);
  border-radius: 4px;
  padding: 4px;
  font-size: 12px;
  line-height: 1.2;
}

.no-register {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  border: 2px solid var(--theme-palette-color-4);
  border-radius: 1rem;
  padding: 1rem;
  text-align: center;
}
.no-register svg {
  width: 80px;
  height: 80px;
  color: var(--theme-palette-color-1);
  fill: var(--theme-palette-color-1);
}
.no-register h3 {
  margin-bottom: 0;
  font-size: 1.5rem;
}
/* PRICE */
.course-price {
  display: flex;
  align-items: baseline;
  gap: 8px;
  margin-bottom: 20px;
}

.course-price .currency {
  color: var(--theme-palette-color-1);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.5px;
}

.course-price .amount {
  color: var(--theme-palette-color-4);
  font-weight: 800;
  font-size: 34px;
}

/* VARIANTS */
.variant-selector {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}

.variant-selector .variant-btn:nth-child(odd):last-child {
  grid-column: 1 / -1;
}

.variant-btn {
  appearance: none;
  transition: all 0.5s ease;
  cursor: pointer;
  border: 1px solid var(--theme-palette-color-5);
  border-radius: 12px;
  background: var(--theme-palette-color-8);
  padding: 12px 10px;
  color: var(--theme-palette-color-4);
  font-weight: 600;
  font-size: 13px;
}

.variant-btn:hover {
  transform: translateY(-2px);
  border-color: var(--theme-palette-color-3);
  background: var(--theme-palette-color-3);
  color: var(--theme-palette-color-8);
}

.variant-btn.active {
  transition: all 0.5s ease;
  box-shadow: 0 8px 18px rgba(205, 33, 41, 0.35);
  border-color: transparent;
  background: linear-gradient(
    135deg,
    var(--theme-palette-color-1),
    var(--theme-palette-color-2)
  );
  color: var(--theme-palette-color-8);
}

/* ATTRIBUTES */
.course-attrs {
  margin-bottom: 22px;
  border: 1px solid var(--theme-palette-color-6);
  border-radius: 14px;
  background: var(--theme-palette-color-8);
  padding: 0;
  overflow: hidden;
  list-style: none;
}

.course-attrs li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--theme-palette-color-6);
  padding: 12px 14px;
  font-size: 13px;
}

.course-attrs li:last-child {
  border-bottom: none;
}

.course-attrs .label {
  color: #6b7280;
  font-weight: 500;
}

.course-attrs .value {
  color: var(--theme-palette-color-4);
  font-weight: 600;
  text-align: right;
}

/* ENROLL BUTTON */
.enroll-btn {
  display: block;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(205, 33, 41, 0.4);
  border: none;
  border-radius: 8px;
  background: linear-gradient(
    135deg,
    var(--theme-palette-color-1),
    var(--theme-palette-color-2)
  );
  padding: 10px;
  width: 100%;
  color: var(--theme-palette-color-8);
  font-weight: bold;
  text-align: center;
}

.enroll-btn:hover{
  color: white;
}

.enroll-btn:hover, .pre-reg-btn:hover{
  transition: all 0.3s ease;
  transform: translateY(-3px);
  box-shadow: 0 8px 18px rgba(205, 33, 41, 0.35);
}

.pre-reg-btn{
  display: block;
  transition: all 0.3s ease;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(205, 33, 41, 0.4);
  border: 2px solid var(--theme-palette-color-1);
  border-radius: 8px;
  padding: 10px;
  width: 100%;
  color: var(--theme-palette-color-1);
  font-weight: bold;
  text-align: center;
  margin-top: 10px;
}