.lpg-9b39fbdc-wrapper {
    display: flex;
    flex-direction: column;
    gap: 30px;
    font-family: inherit;
}

.lpg-9b39fbdc-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    border-bottom: 2px solid #eaeaea;
    padding-bottom: 15px;
    position: relative;
}

.lpg-9b39fbdc-header::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 60px;
    height: 2px;
    background-color: #e5a535; /* Gold fallback */
}

.lpg-9b39fbdc-header-title {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    line-height: 1.2;
}

.lpg-9b39fbdc-header-link {
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: opacity 0.3s ease;
}
.lpg-9b39fbdc-header-link:hover {
    opacity: 0.8;
}

.lpg-9b39fbdc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.lpg-9b39fbdc-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}
.lpg-9b39fbdc-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}

.lpg-9b39fbdc-image-link {
    display: block;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.lpg-9b39fbdc-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.3s ease;
}

.lpg-9b39fbdc-card:hover .lpg-9b39fbdc-image {
    transform: scale(1.05);
}

.lpg-9b39fbdc-content {
    padding: 25px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.lpg-9b39fbdc-category {
    display: inline-block;
    padding: 6px 12px;
    font-size: 12px;
    font-weight: 700;
    border-radius: 4px;
    margin-bottom: 15px;
    align-self: flex-start;
}

.lpg-9b39fbdc-date {
    font-size: 13px;
    margin-bottom: 10px;
    display: block;
}

.lpg-9b39fbdc-title {
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 15px 0;
    line-height: 1.4;
}

.lpg-9b39fbdc-title a {
    color: inherit;
    text-decoration: none;
}

.lpg-9b39fbdc-excerpt {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
    flex-grow: 1;
}

.lpg-9b39fbdc-readmore {
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transition: opacity 0.3s ease;
}
.lpg-9b39fbdc-readmore:hover {
    opacity: 0.8;
}

@media (max-width: 1024px) {
    .lpg-9b39fbdc-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 767px) {
    .lpg-9b39fbdc-grid {
        grid-template-columns: 1fr;
    }
    .lpg-9b39fbdc-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
