.cs-widget-container-8c7be6d8 {
    width: 100%;
}

.cs-grid-8c7be6d8 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

@media (max-width: 1024px) {
    .cs-grid-8c7be6d8 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .cs-grid-8c7be6d8 {
        grid-template-columns: 1fr;
    }
}

.cs-card-8c7be6d8 {
    position: relative;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.cs-card-8c7be6d8:hover {
    transform: translateY(-5px);
}

.cs-img-wrapper-8c7be6d8 {
    width: 100%;
    height: 220px;
    background: #eaeaea;
    overflow: hidden;
}

.cs-img-8c7be6d8 {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cs-content-8c7be6d8 {
    padding: 45px 25px 30px;
    position: relative;
    flex-grow: 1;
}

.cs-icon-8c7be6d8 {
    position: absolute;
    top: -30px; /* Floating over the seam */
    left: 25px;
    width: 60px;
    height: 60px;
    border-radius: 4px;
    background-color: #214462;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.cs-icon-8c7be6d8 svg {
    width: 28px;
    height: 28px;
    fill: #ffffff;
}

.cs-title-8c7be6d8 {
    margin: 0 0 15px;
    font-size: 22px;
    font-weight: 700;
    color: #333333;
}

.cs-body-8c7be6d8 {
    margin: 0;
    font-size: 16px;
    line-height: 1.6;
    color: #666666;
}

.cs-ticker-wrapper-8c7be6d8 {
    background-color: #f8f9fa;
    padding: 20px 0;
    border-radius: 8px;
    display: flex;
    white-space: nowrap;
    overflow: hidden;
    position: relative;
    box-shadow: inset 0 2px 10px rgba(0,0,0,0.03);
}

.cs-ticker-wrapper-8c7be6d8::before,
.cs-ticker-wrapper-8c7be6d8::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 50px;
    z-index: 2;
    pointer-events: none;
}
.cs-ticker-wrapper-8c7be6d8::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fa, transparent);
}
.cs-ticker-wrapper-8c7be6d8::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fa, transparent);
}

.cs-ticker-track-8c7be6d8 {
    display: inline-block;
    animation: marquee-8c7be6d8 25s linear infinite;
    padding-left: 20px;
}

.cs-ticker-item-8c7be6d8 {
    display: inline-block;
    padding: 0 30px;
    font-size: 18px;
    font-weight: 600;
    color: #214462;
    letter-spacing: 0.5px;
}

@keyframes marquee-8c7be6d8 {
    0% { transform: translateX(0%); }
    100% { transform: translateX(-100%); }
}