/* Main container for the RSS feed */
.climbhi-rss-feed {
    list-style: none;
    padding: 0;
    margin: 0;
}

/* Each item in the feed */
.climbhi-rss-item {
    border-bottom: 1px solid #e1e1e1;
    padding: 15px 0;
    margin-bottom: 15px;
    transition: background-color 0.3s ease;
}

.climbhi-rss-item:hover {
    background-color: #f9f9f9;
}

/* Title of the RSS item */
.climbhi-rss-title {
    font-size: 1.5rem;
    margin: 0;
    padding-bottom: 5px;
}

.climbhi-rss-title a {
    text-decoration: none;
    color: #2c3e50;
    font-weight: bold;
    transition: color 0.3s ease;
}

.climbhi-rss-title a:hover {
    color: #2980b9;
}

/* Description of the RSS item */
.climbhi-rss-description {
    font-size: 1rem;
    color: #7f8c8d;
    margin: 10px 0;
    max-height: 4.5em; /* Limit the height for multiline text */
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.5;
}

/* Date information */
.climbhi-rss-date {
    font-size: 0.9rem;
    color: #95a5a6;
}

.climbhi-rss-posted, .climbhi-rss-deadline {
    display: inline-block;
}

.climbhi-rss-posted {
    font-style: italic;
    color: #27ae60;
}

.climbhi-rss-deadline {
    font-style: italic;
    color: #e74c3c;
}

/* Responsive design for mobile */
@media screen and (max-width: 768px) {
    .climbhi-rss-title {
        font-size: 1.2rem;
    }
    
    .climbhi-rss-description {
        font-size: 0.9rem;
    }
    
    .climbhi-rss-date {
        font-size: 0.8rem;
    }
}
