.hpe-container {
    overflow: hidden;
    margin-bottom: 20px;
}
.hpe-thumbnail {
    float: left;
    margin: 0 20px 10px 0;
}
.hpe-thumbnail img {
    max-width: 200px;
    height: auto;
    vertical-align: top;
    display: block;
}
.hpe-aka-subtitle {
    margin-bottom: 10px;
    clear: none;
}
.hpe-aka-subtitle h4 {
    margin: 0;
    font-size: 1.1em;
    font-style: italic;
    color: #555;
}
.hpe-bullet-points {
    margin-bottom: 20px;
}
.hpe-bullet-points h3 {
    margin-bottom: 10px;
}
.hpe-bullet-points ul {
    display: grid;
    grid-template-rows: repeat(4, auto);
    grid-auto-flow: column;
    gap: 10px 5px;
    list-style-type: disc;
    margin: 0;
    padding-left: 20px;
}
.hpe-bullet-points ul li {
    margin-bottom: 0;
}
.hpe-bullet-points ul li a {
    color: #2e7d32;
    text-decoration: none;
}
.hpe-bullet-points ul li a:hover {
    text-decoration: underline;
}

/* Archive Grid Styles */
.hpe-archive-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}
.hpe-post-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.hpe-post-item {
    text-align: center;
}
.hpe-archive-thumbnail {
    width: 200px;
    height: 200px;
    object-fit: cover; /* Ensures image fills 200x200, cropping if needed */
    display: block;
    margin: 0 auto 10px;
}
.hpe-post-title {
    font-size: 1.2em;
    margin: 0;
    color: #333;
}
.hpe-post-link {
    text-decoration: none;
}
.hpe-post-link:hover .hpe-post-title {
    color: #2e7d32;
}