.lnr-rss-feed {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.lnr-rss-feed h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 40px;
    text-align: center;
    color: #333;
}

.lnr-feed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.lnr-feed-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
}

.lnr-feed-card:hover {
    transform: translateY(-5px);
}

.lnr-feed-image {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-radius: 10px 10px 0 0;
}

.lnr-feed-image-placeholder {
    width: 100%;
    height: 200px;
    background: #f0f0f0;
    border-radius: 10px 10px 0 0;
}

.lnr-feed-content {
    padding: 20px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.lnr-feed-card.no-image .lnr-feed-content {
    padding-top: 15px;
}

.lnr-date {
    font-size: 14px;
    margin-bottom: 15px;
    align-self: flex-start;
}

.lnr-feed-card h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 10px;
    line-height: 1.3;
}

.lnr-feed-card a {
    text-decoration: none;
}

.lnr-feed-card a:hover {
    text-decoration: underline;
}

.lnr-excerpt {
    font-size: 16px;
    line-height: 1.5;
    margin: 0 0 15px;
    flex-grow: 1;
}

.lnr-read-more {
    font-size: 14px;
    text-decoration: underline;
}

@media (max-width: 900px) {
    .lnr-feed-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .lnr-feed-grid {
        grid-template-columns: 1fr;
    }

    .lnr-feed-card {
        max-width: 100%;
    }

    .lnr-feed-image,
    .lnr-feed-image-placeholder {
        height: 180px;
    }
}