/* Appreciations Block Styles */
.appr-root {
    background: transparent;
    padding: 0;
}

.appr-intro {
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.5;
    color: #333;
    margin-bottom: 24px;
    text-align: center !important;
}

.appr-list {
    max-height: 400px;
    overflow: hidden;
    position: relative;
}

.appr-scroll-container {
    animation: slowScroll 60s linear infinite;
}

.appr-name {
    display: block;
    font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    font-size: 15px;
    font-weight: 350;
    line-height: 1.9;
    color: #888;
    text-align: center;
}

@keyframes slowScroll {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-50%);
    }
}