.angie-blog-grid-98786ba4 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.angie-blog-card-98786ba4 {
    display: flex;
    flex-direction: column;
}

.angie-blog-img-wrapper {
    position: relative;
    overflow: hidden;
    margin-bottom: 20px;
}

.angie-blog-img-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    transition: all 0.3s ease;
}

.angie-blog-img-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s ease;
}

.angie-blog-img-wrapper:hover .angie-blog-img-overlay {
    opacity: 1;
}

.angie-blog-title {
    margin: 0;
    padding-top: 15px;
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 500;
}

.angie-blog-title a {
    color: inherit;
    text-decoration: none;
}

.angie-blog-divider {
    border-top-style: solid;
    border-top-width: 2px;
    border-top-color: #eaeaea;
    width: 40px;
    margin-top: 15px;
    margin-bottom: 15px;
    margin-left: 0; /* Left aligned by default */
}

/* Update center alignment for divider when parent is centered */
.angie-blog-content[style*="text-align: center"] .angie-blog-divider {
    margin-left: auto;
    margin-right: auto;
}

/* Update right alignment for divider when parent is right aligned */
.angie-blog-content[style*="text-align: right"] .angie-blog-divider {
    margin-left: auto;
    margin-right: 0;
}


.angie-blog-meta {
    margin-bottom: 15px;
    font-size: 0.85rem;
    text-transform: uppercase;
    color: #666;
    font-weight: 500;
}

.angie-blog-excerpt {
    margin-bottom: 15px;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
}

.angie-blog-read-more {
    font-weight: 600;
    text-decoration: none;
    color: #000;
    margin-top: auto;
    display: inline-block;
}
