.choice-section {
  background: var(--styx-base-color-1);
}

.choice-section .sub-extra-title {
	font-family: Rubik;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 4.4rem;
    letter-spacing: 2px;
	margin: -6px 0 0 0;
}

.choice-section .sub-title {
	font-family: Rubik;
	font-size: 2.2rem;
    text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 400;
}

.title-choice {
  display: flex;
  flex-direction: column;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin-bottom: 3rem;
}

.title-choice img{
	width: 300px;
    object-fit: contain;
}

.choice-section ul {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(2, auto);
  justify-items: center;
  row-gap: 16px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.about-card {
  position: relative;
  padding: 24px;
  width: 800px;
  min-width: 400px;
  background-color: transparent;
  border: 2px solid var(--styx-base-color-3);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 16px rgba(0, 0, 0, 0.2);
}

.about-card .tittle-wrapp,
.about-card .content-wrapp {
  display: flex;
}

.about-card .tittle-wrapp {
  align-items: center;
  column-gap: 24px;
  overflow-wrap: break-word;
  hyphens: auto;
}

.about-card .icon {
  position: relative;
}

.about-card .icon img {
  width: 40px;
  height: 40px;
}

.about-card h3 {
  font-family: Inter;
  font-size: 1.2rem;
  text-transform: uppercase;
  text-align: left;
  font-weight: 600;
  color: var(--styx-text-color-1);
}

.about-card p {
  font-size: 0.95rem;
  color: var(--styx-text-color-2);
  line-height: 1.5;
}

/* ============== MEDIA QUERIES ============== */
/* Mobile Approach */
@media (hover: none) and (pointer: coarse) {
.choice-section {
  padding: 36px 5% 36px;
}

.choice-section .sub-title {
	font-size: clamp(1.4rem, 8vw, 4rem);
}

.choice-section .sub-extra-title {
	font-size: clamp(2.4rem, 14vw, 6.4rem);
}

.choice-section ul {
  grid-template-columns: repeat(1, 1fr);
  grid-template-rows: repeat(6, auto);
  column-gap: 12px;
  row-gap: 24px;
}

.about-card {
	width: 100%;
    min-width: 0;
}

.content-wrapp p {
	margin: 0;
    margin-top: 12px;
}
}
/* Tablet Approach */
@media (min-width: 641px) and (hover: none) and (pointer: coarse) {
  .choice-section ul {
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(2, auto);
  }
}
/* Desktop Approach */
@media (min-width: 1024px) and (pointer: fine) {

}