.cc-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background-color: #ffffff;
    border: 1px solid #eaeaea;
    box-sizing: border-box;
    transition: all 0.3s ease;
}

/* HEADER SECTION */
.cc-header {
    padding: 15px 20px;
    border-bottom: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.cc-badge {
    align-self: flex-start;
    font-size: 0.75rem;
    text-transform: uppercase;
    font-weight: 700;
    padding: 2px 8px;
    border: 1px solid #0073aa;
    color: #0073aa;
    border-radius: 3px;
    letter-spacing: 0.5px;
}

.cc-title {
    margin: 0;
    font-size: 1.3rem;
    font-weight: 600;
    color: #222222;
}

/* BODY SECTION */
.cc-body {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cc-image-wrapper {
    width: 100%;
    border-radius: 4px;
    overflow: hidden;
}

.cc-image-wrapper img {
    width: 100%;
    height: auto;
    object-fit: cover;
    display: block;
}

.cc-description {
    margin: 0;
    font-size: 0.95rem;
    color: #555555;
    line-height: 1.6;
}

/* FOOTER SECTION */
.cc-footer {
    padding: 15px 20px;
    border-top: 1px solid #f0f0f0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.cc-footer-text {
    font-size: 0.85rem;
    color: #777777;
}

.cc-button {
    display: inline-block;
    padding: 8px 16px;
    background-color: #0073aa;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    border-radius: 4px;
    transition: background-color 0.2s ease;
}

.cc-button:hover {
    background-color: #005177;
    color: #ffffff;
}
