/* Card container */
.ttnt-card {
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.04);
    box-shadow:
        0 10px 25px rgba(0, 0, 0, 0.08);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    height: 100%;
}

/* Inner spacing */
.ttnt-card__inner {
    padding: 28px 24px 30px;
    text-align: center;
    height: 100%;
}

/* Image/Icon */
.ttnt-card__image {
    margin-bottom: 16px;
}

.ttnt-card__image img {
    display: inline-block;
    max-width: 72px;
    height: auto;
    object-fit: contain;
}

/* Headline */
.ttnt-card__headline {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 600;
    color: #1f2937; /* dark neutral */
    line-height: 1.3;
}

/* Description */
.ttnt-card__description {
    margin: 0;
    font-size: 14px;
    font-weight: 400;
    color: #6b7280; /* soft gray */
    line-height: 1.6;
}
