﻿/* CARD */
/* ---- */
.service-card {
    width: calc(calc(100% - calc(2 * 2rem)) / 3);
    display: flex;
    flex-direction: column;
    align-items: center;
}

.service-card--half-width {
    width: calc(calc(100% - calc(2 * 2rem)) / 2);
}

@media (max-width: 900px) {
    .service-card,
    .service-card--half-width {
        width: 100%;
    }
}

/* IMAGE */
/* ----- */
.service-card__image {
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* ICON */
/* ---- */
.service-card__iconography {
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    height: 100px;
    width: 100px;
    overflow: hidden;
    border-radius: 50%;
    background: var(--secondary-color);
    display: flex;
    justify-content: center;
    align-items: center;
}

.service-card__iconography-image {
    width: 75%;
    height: 75%;
    flex: 1;
}

/* CONTENT */
/* ------- */
.service-card__content {
    position: relative;
    padding: 1rem;
    text-align: center;
    flex: 1;
}

.service-card__content-inner {
    margin-top: 3rem; /* Adjust based on iconography size */
}

/* Modifiers */
.service-card__content-inner--no-iconography {
    margin-top: 1rem;
}

/* Title */
/* ----- */
.service-card__title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--dark-heading-text-color);
}

/* Modifiers */
.service-card__title--left-align {
    width: 100%;
    text-align: left;
}

/* Description */
/* ----------- */
.service-card__description {
    font-size: 1rem;
    color: var(--dark-paragraph-text-color);
    line-height: 1.5;
    margin-bottom: 1.5rem;
}

/* Modifiers */
.service-card__description--left-align {
    width: 100%;
    text-align: left;
}


/* Link */
/* ---- */
.service-card__link {
    font-size: 1rem;
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s;
    display: block;
    text-align: right;
    text-underline-offset: 8px;
}
.service-card__link:hover {
  	text-decoration: underline;
}
