/* Lupapiste Feed Module Styles */

.lupapiste-feed-container {
    padding: 40px 0;
}

.lupapiste-feed-content {
    margin-top: 30px;
}

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

.tab-list__article {
    padding: 0;
    margin-bottom: 40px;
}

.tab-list__article__title {
    display: block;
    font-size: 20px;
    font-weight: 700;
    color: #0066cc;
    text-decoration: none;
    line-height: 1.4;
    transition: text-decoration 0.2s ease;
}

.tab-list__article__title:hover {
    text-decoration: underline;
}

.tab-list__item__meta {
    display: block;
}

.tab-list__item__meta__date {
    display: inline-block;
    font-size: 14px;
    color: #666;
    font-weight: 600;
}

.tab-list__item__excerpt {
    font-size: 16px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.tab-list__item__rss_meta {
    display: block;
    padding: 4px 0;
    line-height: 1.6;
}

.has-text-black {
    color: #333;
}

.has-text-weight-bold {
    font-weight: 700;
}

.is-size-7 {
    font-size: 14px;
}

.is-size-6-desktop {
    font-size: 15px;
}

.is-unstyled {
    list-style: none;
    margin: 0;
    padding: 0;
}

.is-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

.mb-2 {
    margin-bottom: 8px;
}

.mb-4 {
    margin-bottom: 16px;
}

.mb-5 {
    margin-bottom: 20px;
}

/* Responsive styles */
@media (min-width: 768px) {
    .is-size-6-desktop {
        font-size: 16px;
    }
}

@media (max-width: 767px) {
    .tab-list__article {
        padding: 20px;
    }
    
    .tab-list__article__title {
        font-size: 18px;
    }
    
    .tab-list__item__excerpt {
        font-size: 15px;
    }
}

