/**
 * Block: Cards 1
 */

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Montserrat:wght@400;500;600;700;800;900&family=Roboto:wght@400;500;700;900&family=Lexend:wght@400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@400;500;600;700;800;900&display=swap');

.c1-block {
    position: relative;
    width: 100%;
}

.c1-section {
    padding: 60px 0;
}

/* Container */
.c1-block .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Header */
.c1-header {
    margin-bottom: 40px;
    text-align: center;
}

.c1-section-title {
    margin: 0 0 15px 0;
    font-size: 36px;
    font-weight: 700;
}

.c1-section-desc {
    font-size: 16px;
    color: #666;
}

/* Grid */
.c1-grid {
    display: grid;
    margin: 0 auto;
    width: 100%;
}

/* Card */
.c1-card {
    display: flex;
    gap: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

/* Icon */
.c1-icon-wrap {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

/* Body */
.c1-card-body {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
}

.c1-title {
    margin: 0 0 10px 0;
    transition: color 0.3s ease;
}

.c1-desc {
    margin: 0;
}

.c1-desc p {
    margin: 0 0 10px 0;
}

.c1-desc p:last-child {
    margin-bottom: 0;
}