.ccg-grid-12284f73 {
    display: grid;
    gap: 24px;
    grid-template-columns: repeat(3, 1fr);
    width: 100%;
}

@media (max-width: 1024px) {
    .ccg-grid-12284f73 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 767px) {
    .ccg-grid-12284f73 { grid-template-columns: 1fr; }
}

.ccg-card-12284f73 {
    background: #ffffff;
    border: 1px solid #d9e3f5;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(0,0,0,.05);
    transition: all .3s ease;
    display: flex;
    flex-direction: column;
    min-height: 340px;
    width: 100%;
}

.ccg-card-12284f73:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 40px rgba(0,0,0,.12);
}

.ccg-header-12284f73 {
    padding: 24px 24px 22px;
    min-height: 114px;
}

.ccg-header-blue { 
  background: linear-gradient(
    135deg,
    hsl(226 78% 16%) 0%,
    hsl(220 95% 38%) 60%,
    hsl(220 95% 58%) 100%
  );
}
.ccg-header-orange { background: linear-gradient(135deg, hsl(38 96% 56%), hsl(28 96% 50%)); }
.ccg-header-green { background: #0d9c62; }
.ccg-header-purple { background: #6f42c1; }

.ccg-badges-12284f73 {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 20px;
}

.ccg-badge-12284f73 {
    background: rgba(255,255,255,.18);
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 999px;
    line-height: 1;
}

.ccg-title-12284f73 {
    color: #ffffff;
    font-family: 'DM Serif Display', serif;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.25;
    letter-spacing: -0.3px;
    margin: 0;
}

.ccg-body-12284f73 {
    padding: 24px;
    background: #ffffff;
    flex-grow: 1;
}

.ccg-info-12284f73 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #5f6475;
    font-size: 14px;
    line-height: 1.5;
}

.ccg-info-12284f73:last-child {
    margin-bottom: 0;
}

.ccg-info-12284f73 svg {
    flex-shrink: 0;
}

.ccg-footer-12284f73 {
    padding: 0 24px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

@media (max-width: 767px) {
    .ccg-footer-12284f73 {
        grid-template-columns: 1fr;
    }
}

.ccg-btn-12284f73 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 42px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
    cursor: pointer;
}

.ccg-btn-secondary {
    background: #ffffff;
    color: #101828;
    border: 1px solid #d9dfe9;
}

.ccg-btn-secondary:hover {
    background: #f7f8fb;
    color: #101828;
}

.ccg-btn-primary {
    background: linear-gradient(90deg, #183c9c, #2d66eb);
    color: #ffffff;
    border: none;
}

.ccg-btn-primary:hover {
    transform: scale(1.03);
    box-shadow: 0 10px 24px rgba(32,88,220,.35);
    color: #ffffff;
}
