.page-descriptions-list {
    list-style-type: none;
    padding: 0;
    margin: 0;
    /* display: flex;
    flex-wrap: wrap; */
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
    margin-bottom: 20px;
}

.page-description-item {
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    width: 100%;
    /* width: 280px; */
    min-width: 280px;
    height: 100%;
	min-height: 150px !important;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.3s ease;
    display: block;
    color: inherit !important;
    text-decoration: none !important;
}

.page-thumbnail-description {
	display: flex;
	align-items: center;
	gap: 12px;
}

.page-description-item:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
	background-color: #E6E8EC;
}

.page-thumbnail {
    width: 50px;
    height: 50px;
    min-width: 50px;
	overflow: hidden;
    border-radius: 50%;
    margin-bottom: 15px;
}

.page-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-title {
    flex-grow: 1;
    font-size: 1.1rem !important;
    margin-bottom: 10px;
    color: #333;
}
/* Favorite button */
.favorite-star {
    cursor: pointer;
    font-size: 24px;
    color: rgb(0, 0, 0);
    display: inline-block;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
    transition: color 0.3s;
}
.favorite-star:hover {
    color: rgb(204, 173, 0);
}
.favorite-star.active {
    color: rgb(204, 173, 0);
}
.favorite-star.active:hover {
    color: rgb(0, 0, 0);
}

.page-description {
    font-size: 0.6rem !important;
    line-height: 1.5;
    color: #666;
}

/* Form */
.form-search {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}