/* Styling for the grid container and items */
.grid-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 20px;
}

.grid-item {
    border: 1px solid #ddd;
    padding: 20px;
    box-sizing: border-box;
    text-align: center;
    background-color: #f9f9f9;
    transition: background-color 0.3s, box-shadow 0.3s;
}

.grid-item a {
    text-decoration: none;
    color: inherit;
}

.grid-item:hover {
    background-color: #f1f1f1;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.grid-item h3 {
    font-size: 18px;
    margin: 0 0 10px;
}

.grid-item p {
    font-size: 14px;
    color: #666;
}

/* Center the heading */
#latest-posts-grid h3 {
    text-align: center;
    margin-bottom: 20px;
}

/* Styling for the button container */
.button-container {
    text-align: center;
    margin-top: 20px;
}

/* Styling for the view more button */
#view-more-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
}

#view-more-btn:hover {
    background-color: #005a87;
}

/* Styling for the post search form */
#post-search-form {
    margin-top: 20px;
    text-align: center;
}

.select-container {
    display: inline-flex;
    gap: 10px;
    justify-content: center;
    align-items: center;
    margin-bottom: 10px;
}

#post-search-form select {
    width: auto;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

/* Styling for the search button */
#post-search-form button {
    padding: 10px 20px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: #0073aa;
    color: #fff;
    cursor: pointer;
    transition: background-color 0.3s;
}

#post-search-form button:hover {
    background-color: #005a87;
}

/* Styling for the search results */
#search-results ul {
    list-style-type: none;
    padding: 0;
    margin: 20px 0 0;
}

#search-results ul li {
    margin-bottom: 10px;
}

#search-results ul li a {
    color: #0073aa;
    text-decoration: none;
}

#search-results ul li a:hover {
    text-decoration: underline;
}
