.trg-hs-posts {
    display: grid;
    gap: 24px;
    margin: 24px 0;
}
.trg-hs-columns-1 { grid-template-columns: 1fr; }
.trg-hs-columns-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.trg-hs-columns-3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.trg-hs-columns-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.trg-hs-card {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 14px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 100%;
    transition: transform 180ms ease, box-shadow 180ms ease;
}
.trg-hs-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}
.trg-hs-image-link {
    display: block;
    aspect-ratio: 16 / 9;
    background: #f4f4f4;
    overflow: hidden;
}
.trg-hs-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.trg-hs-content {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}
.trg-hs-date,
.trg-hs-tags {
    font-size: 13px;
    line-height: 1.4;
    color: #666;
    margin-bottom: 10px;
}
.trg-hs-tags {
    font-weight: 700;
}
.trg-hs-title {
    font-size: 20px;
    line-height: 1.25;
    margin: 0 0 12px;
}
.trg-hs-title a {
    color: inherit;
    text-decoration: none;
}
.trg-hs-title a:hover {
    text-decoration: underline;
}
.trg-hs-excerpt {
    color: #4d4d4d;
    font-size: 15px;
    line-height: 1.55;
    margin: 0 0 18px;
}
.trg-hs-button {
    margin-top: auto;
    display: inline-flex;
    align-self: flex-start;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    line-height: 1.2;
}
.trg-hs-style-compact {
    gap: 20px;
}
.trg-hs-style-compact .trg-hs-content {
    padding: 16px;
}
.trg-hs-style-compact .trg-hs-title {
    font-size: 17px;
    line-height: 1.3;
    margin-bottom: 10px;
}
.trg-hs-style-compact .trg-hs-excerpt {
    font-size: 14px;
    line-height: 1.45;
    margin-bottom: 14px;
}
.trg-hs-style-compact .trg-hs-date,
.trg-hs-style-compact .trg-hs-tags {
    font-size: 12px;
    margin-bottom: 8px;
}
.trg-hs-style-minimal .trg-hs-card {
    border: 0;
    border-radius: 0;
}
.trg-hs-style-minimal .trg-hs-card:hover {
    transform: none;
    box-shadow: none;
}
.trg-hs-style-minimal .trg-hs-content {
    padding: 14px 0 0;
}
.trg-hs-empty,
.trg-hs-error {
    padding: 16px;
    border-radius: 8px;
    background: #f7f7f7;
    color: #333;
}
.trg-hs-error {
    border-left: 4px solid #c0392b;
}
@media (max-width: 1024px) {
    .trg-hs-columns-3,
    .trg-hs-columns-4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
    .trg-hs-columns-2,
    .trg-hs-columns-3,
    .trg-hs-columns-4 { grid-template-columns: 1fr; }
}
