.shipp-section {
    display: flex;
	flex-direction: column;
    justify-content: center;
    align-items: center;
	background: var(--base-color-1);
}

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

.shipp-title-wrapp .shipp-title {
	font-family: Playfair Display;
	font-size: 2.2rem;
    text-transform: uppercase;
	letter-spacing: 2px;
	font-weight: 400;
}

.shipp-title-wrapp .shipp-extra-title {
	font-family: EB Garamond;
    font-size: 1.15rem;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 2px;
	max-width: 70%;
}

.shipp-wrapp {
    position: relative;
}

.shipp-wrapp a {
	all: unset;
    cursor: pointer;
}

.shipp-wrapp 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;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.about-card:hover {
  transform: translateY(-4px);
}

.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;
  padding: 0 0 12px;
  border-bottom: 2px solid var(--base-color-3);
}

.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 * 6);
  display: -webkit-box;
  -webkit-line-clamp: 6;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: center;
}

/* ============== MEDIA QUERIES ============== */
/* Mobile Approach */
@media (hover: none) and (pointer: coarse) {

.shipp-wrapp ul {
	grid-template-columns: repeat(1, 3fr);
}

.shipp-title-wrapp .shipp-title {
	font-size: 1.3rem;
}

}
/* Tablet Approach */
@media (min-width: 641px) and (hover: none) and (pointer: coarse) {

}
/* Desktop Approach */
@media (min-width: 1024px) and (pointer: fine) {

}
