.cic-104-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    box-sizing: border-box;
}

/* Card */
.cic-104-card {
    background-color: #ffffff;
    border: 1.5px solid #E8EDEF;
    border-radius: 16px;
    padding: 28px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    gap: 16px;
    box-sizing: border-box;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.cic-104-card:hover {
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.11);
    transform: translateY(-2px);
}

/* Icon box */
.cic-104-icon-box {
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: linear-gradient(135deg, #6BBFC8 0%, #3B828C 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cic-104-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    font-size: 24px;
    line-height: 1;
}

.cic-104-icon svg {
    width: 24px;
    height: 24px;
    fill: #ffffff;
}

/* Title */
.cic-104-title {
    font-family: 'Inter', sans-serif;
    font-size: 17px;
    font-weight: 700;
    line-height: 1.3;
    color: #4A4A4A;
    margin: 0;
}

/* Content */
.cic-104-content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cic-104-content p {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.55;
    color: #6B7280;
    margin: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .cic-104-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .cic-104-grid {
        grid-template-columns: 1fr;
    }

    .cic-104-card {
        padding: 22px;
    }
}
