.hg-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(3, 1fr);
}
.hg-item-inner {
    border: 1px solid #ddd;
    border-radius: 8px;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.hg-item-image img {
    width: 100%;
    height: auto;
    display: block;
}
.hg-item-content {
    padding: 20px;
    flex-grow: 1;
}
.hg-item-title {
    margin-top: 0;
    margin-bottom: 10px;
}
.hg-item-title a {
    text-decoration: none;
    color: inherit;
}
.hg-item-location {
    font-style: italic;
    color: #666;
    margin-bottom: 15px;
}
.hg-item-meta {
    font-size: 14px;
}
.hg-item-footer {
    padding: 0 20px 20px 20px;
    margin-top: auto;
}
.hg-button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}
.hg-button:hover {
    background-color: #005177;
    color: #fff;
}
.acf-meta-list {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.acf-meta-list .meta-item {
    display: flex;
    align-items: center;
}
.acf-meta-list .meta-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
}
.acf-meta-list .meta-icon svg {
    width: 1em;
    height: 1em;
    fill: currentColor;
}
.acf-meta-list .meta-label {
    font-weight: bold;
    margin-right: 5px;
}
