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

.choice-section .sub-extra-title {
	font-family: Playfair Display;
    text-transform: uppercase;
    font-weight: 400;
    font-size: var(--text-size-base);
    letter-spacing: 2px;
	margin: 4px 0 0 0;
}

.choice-section .sub-title {
	font-family: Playfair Display;
	font-size: 2.5rem;
    text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 600;
}

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

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

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

.about-card {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 24px;
  width: 100%;
  min-height: 300px;
  background-color: transparent;
  /*border: 2px solid var(--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;
  flex-direction: column;
}

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

.about-card .icon {
  position: relative;
  padding: 12px;
}

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

.about-card h3 {
  font-family: EB Garamond;
  font-size: 1.5rem;
  text-transform: uppercase;
  text-align: center;
  font-weight: 600;
  color: var(--text-color-1);
  line-height: 1.2;
  max-height: calc(1.2em * 2);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.about-card p {
  font-size: var(--text-size-base);
  color: var(--text-color-1);
  line-height: 1.2;
  max-height: calc(1.2em * 3);
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ============== 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(var(--text-size-base), 4vw, 2rem);
}

.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) {

}