.tmc-d455b772-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
    display: flex;
}

.tmc-d455b772-track {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 30px;
    animation: scroll-d455b772 40s linear infinite;
    min-width: max-content;
}

.tmc-d455b772-wrapper:hover .tmc-d455b772-track {
    animation-play-state: paused;
}

.tmc-d455b772-item {
    display: flex;
    flex-direction: column;
    padding: 25px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    white-space: normal;
}

.tmc-d455b772-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tmc-d455b772-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.tmc-d455b772-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.tmc-d455b772-icon svg {
    fill: #333;
    width: 24px;
    height: 24px;
}

.tmc-d455b772-title {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.tmc-d455b772-desc {
    font-size: 14px;
    color: #666;
    margin: 0 0 20px 0;
    line-height: 1.5;
    flex-grow: 1;
}

.tmc-d455b772-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #000;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    transition: all 0.3s ease;
    align-self: flex-start;
}

.tmc-d455b772-btn:hover {
    background-color: #333;
    color: #fff;
}

@keyframes scroll-d455b772 {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-50%);
    }
}
