.services-section {
    display: flex;
	flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
	background: var(--styx-base-color-1);
    box-sizing: border-box;
	padding-bottom: 16px;
}

.services-titles {
	display: flex;
    flex-direction: column;
	align-items: center;
	padding: 0 0 24px 0;
}

.services-section h3 {
	font-family: Rubik;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--styx-text-color-1);
    letter-spacing: 0.5px;
	text-transform: uppercase;
}

.services-section h4 {
	font-family: Inter;
    font-size: 1.6rem;
    font-weight: 300;
    color: var(--styx-text-color-1);
    letter-spacing: 0.2px;
	/*text-transform: uppercase;*/
	padding: 0 0 12px;
}

.services-wrapp {
	display: flex;
	flex-wrap: wrap;
    justify-content: center;
    /*grid-template-columns: repeat(4, 1fr);*/
    /*grid-template-rows: repeat(2, auto);*/
    column-gap: 38px;
    row-gap: 54px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.service-card {
    padding: 1rem;
	border: 2px solid var(--styx-base-color-3);
	min-width: calc(240px + 40px);
	max-width: 280px;
	min-height: 474px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.18);
	backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
	transform-style: preserve-3d;
}

.card-inner {
	display: flex;
    flex-direction: column;
    height: 98%;
	padding: 10px;
	align-items: center;
    text-align: center;
	overflow: hidden;
}

.card-image {
    width: 100%;
	min-width: 220px;
	max-width: 280px;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
	border: 2px solid var(--styx-base-color-3);
}

.card-inner h3 {
	font-family: Rubik;
    font-size: 1.4rem;
    margin-bottom: 10px;
	font-weight: 600;
	color: var(--styx-text-color-2);
	line-height: 1.2;
	max-height: calc(1.2em * 2);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.card-inner p {
    font-size: 1rem;
    color: #555;
    line-height: 1.2;
    margin-top: 0;
    margin-bottom: calc(10px + 15px);
    text-align: start;
	flex-grow: 1;
	max-height: calc(1.2em * 4);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.card-button {
	font-family: Inter;
	margin-top: auto;
	width: 90%;
    padding: 10px 20px;
    border: 2px solid var(--styx-base-color-3);
	color: var(--styx-text-color-3);
    background: var(--styx-base-color-3);
    cursor: pointer;
	letter-spacing: 1px;
	text-decoration: none;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.card-button:hover {
    background: transparent;
    color: var(--styx-text-color-1);
}

/* ============== MEDIA QUERIES ============== */
/* Mobile Approach */
@media (hover: none) and (pointer: coarse) {
.services-section h3 {
    font-size: clamp(1.6em, 9vw, 3rem);
}

.services-section h4{
    font-size: clamp(1.4rem, 7vw, 2.2rem);
    text-align: center;
}

.card-wrapp h3 {
    font-size: clamp(1.2rem, 4vw, 2rem);
}

.service-card {
	min-height: 0;
}

.service-card, .card-inner {
	padding: 0 0 10px;
}

.card-image {
	min-width: 0;
	max-width: 100%;
	margin: 0;
	
	aspect-ratio: 4 / 3;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
	
	border: none;
}

.services-wrapp {
	display: flex;
	flex-direction: column;
	row-gap: 32px;
}

.card-wrapp {
	padding: 12px;
}

.card-inner h3 {
	margin: 0;
	padding: 12px 0;
	max-height: 100%;
}

.card-inner p {
	margin-bottom: 24px;
}

.card-button {
	font-size: 0.8rem;
}
}
/* Tablet Approach */
@media (min-width: 641px) and (hover: none) and (pointer: coarse) {

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

}