.grg-ebe715a3-wrapper {
    width: 100%;
}
.grg-ebe715a3-grid {
    display: grid;
    gap: 20px;
    grid-template-columns: repeat(var(--columns, 3), 1fr);
    align-items: start;
}
@media (max-width: 1024px) {
    .grg-ebe715a3-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 767px) {
    .grg-ebe715a3-grid { grid-template-columns: 1fr; }
}
.grg-ebe715a3-card {
    background: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: relative;
    display: flex;
    flex-direction: column;
    border: 1px solid #eaeaea;
    height: 100%;
}
.grg-ebe715a3-hidden-card {
    display: none !important;
}
.grg-ebe715a3-header {
    display: flex;
    align-items: center;
    margin-bottom: 12px;
}
.grg-ebe715a3-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 12px;
}
.grg-ebe715a3-meta {
    flex-grow: 1;
}
.grg-ebe715a3-name {
    font-weight: 600;
    font-size: 15px;
    color: #111;
    margin-bottom: 2px;
}
.grg-ebe715a3-date {
    font-size: 12px;
    color: #777;
}
.grg-ebe715a3-g-logo {
    width: 24px;
    height: 24px;
}
.grg-ebe715a3-stars {
    color: #fbbc04;
    font-size: 18px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}
.grg-ebe715a3-text-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.grg-ebe715a3-text {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
    /* 4 lines truncation */
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease;
}
.grg-ebe715a3-text.expanded {
    -webkit-line-clamp: unset;
}
.grg-ebe715a3-read-more {
    background: none;
    border: none;
    padding: 0;
    margin-top: 8px;
    color: #4285F4;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: none; /* hidden by default, shown via JS if needed */
}
.grg-ebe715a3-read-more:hover, .grg-ebe715a3-load-more:hover {
    text-decoration: underline;
}
.grg-ebe715a3-footer {
    text-align: center;
    margin-top: 30px;
}
.grg-ebe715a3-load-more {
    background: none;
    border: 2px solid currentColor;
    color: #4285F4;
    padding: 10px 24px;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}
