.handshake-feed {
    margin: 20px 0;
}

.handshake-feed-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.handshake-feed-item {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
    display: flex;
    flex-wrap: wrap;
}

.handshake-feed-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.handshake-feed-image {
    flex: 0 0 100px;
    margin-right: 15px;
}

.handshake-feed-image img {
    max-width: 100%;
    height: auto;
}

.handshake-feed-content {
    flex: 1;
}

.handshake-feed-title {
    margin-top: 0;
    margin-bottom: 5px;
    font-size: 1.2em;
}

.handshake-feed-title a {
    color: #E31B1B;
    text-decoration: none;
}

.handshake-feed-title a:hover {
    text-decoration: underline;
}

.handshake-feed-date {
    color: #666;
    font-size: 0.9em;
    margin-bottom: 8px;
}

.handshake-feed-excerpt {
    margin-top: 5px;
    line-height: 1.5;
}

/* Empty state and error styling */
.handshake-feed-empty,
.handshake-feed-error {
    background-color: #f9f9f9;
    border: 1px solid #eee;
    border-radius: 4px;
    padding: 20px;
    text-align: center;
}

.handshake-feed-error {
    border-color: #ffdddd;
    background-color: #fff8f8;
}

.handshake-feed-empty p,
.handshake-feed-error p {
    margin: 0 0 10px;
}

.handshake-feed-empty p:last-child,
.handshake-feed-error p:last-child {
    margin-bottom: 0;
}

.handshake-feed-empty a,
.handshake-feed-error a {
    color: #E31B1B;
    font-weight: bold;
    text-decoration: none;
}

.handshake-feed-empty a:hover,
.handshake-feed-error a:hover {
    text-decoration: underline;
}

/* Responsive adjustments */
@media (max-width: 575px) {
    .handshake-feed-item {
        flex-direction: column;
    }
    
    .handshake-feed-image {
        margin-right: 0;
        margin-bottom: 10px;
        text-align: center;
    }
    
    .handshake-feed-image img {
        max-width: 200px;
    }
}