@charset "utf-8";
/* CSS Document */

.rssWrapper {}
.listHeader {}
.thumbnailWrapper {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
	padding-top: 30px;
}

.thumbnailContainer {
    width: 100%;
    max-width: 400px; /* Adjust as needed */
    background: white;
    overflow: hidden;
    transition: transform 0.3s ease;
	-webkit-border-radius: 20px;
	-webkit-border-bottom-right-radius: 0;
	-moz-border-radius: 20px;
	-moz-border-radius-bottomright: 0;
	border-radius: 20px;
	border-bottom-right-radius: 0;
	border:solid 1px #c7c7c7;
}

.thumbnailContainer:hover {
    transform: translateY(-5px);
}

.thumbnail {
    display: flex;
    flex-direction: column;
	padding-bottom: 20px;
}

.imageThumb {
    width: 100%;
    height: 220px; /* Fixed height for consistency */
    overflow: hidden;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
}

.imageThumb img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Ensures the image fills the space properly */
}

.pagelistContent {
    margin: 20px;
	padding:0 0 20px 0;
    text-align: left;
	position: relative;
	border-bottom: solid 1px #c7c7c7;
}

.pagelistContent a {
	font-weight:600;
	text-decoration: none;
}

.pagelistContent a:hover {
	text-decoration: underline;
}

.pagelistDate {
    background: #A8C090; /* Soft green background */
    color: white;
    display: inline-block;
    padding: 6px 60px 6px 12px;
	-webkit-border-top-right-radius: 5px;
	-moz-border-radius-topleft: 5px;
	-moz-border-radius-topright: 5px;
	border-top-left-radius: 5px;
	border-top-right-radius: 5px;
    font-size: 14px;
    font-weight: bold;
    margin-bottom: 10px;
	position: absolute;
  	top: -58px;
}

.pagelistTitle {
    font-size: 18px;
    font-weight: bold;
    color: #000;
    margin-top: 10px;
}

.pagelistDescription {
    font-size: 14px;
    color: #555;
    margin-top: 10px;
    line-height: 1.5;
}

.pagelistAltLink {
    font-size: 16px;
    font-weight: bold;
    color: #35682D; /* Green shade */
    margin-top: 15px;
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease;
}

.pagelistAltLink:hover {
    color: #2A5A1D;
}

/* Responsive Design */
@media (min-width: 768px) {
    .thumbnailWrapper {
        flex-wrap: nowrap;
    }

    .thumbnailContainer {
        flex: 1;
    }
}
