.angie-guides-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.angie-guide-card {
    display: flex;
    flex-direction: column;
    border-radius: 12px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    border: 1px solid #eaeaea;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.angie-guide-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.angie-guide-image {
    position: relative;
    height: 380px;
    background-size: cover;
    background-position: center;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 15px;
    color: #fff;
}

.angie-guide-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 30%, rgba(0,0,0,0.8) 100%);
    z-index: 1;
}

.angie-guide-author {
    position: relative;
    z-index: 2;
    background: #fff;
    color: #333;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 600;
    align-self: flex-start;
}

.angie-guide-overlay {
    position: relative;
    z-index: 2;
}

.angie-guide-excerpt {
    font-size: 14px;
    line-height: 1.4;
    margin: 0 0 10px 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-shadow: 0 1px 2px rgba(0,0,0,0.5);
    color: #fff;
}

.angie-guide-stars {
    font-size: 13px;
    font-weight: 600;
    color: #fff;
    display: flex;
    align-items: center;
    gap: 4px;
}

.angie-guide-stars i {
    font-size: 14px;
    color: #fff; /* Default, can be overridden by Elementor controls */
}

.angie-reviews-text {
    margin-left: 4px;
}

.angie-guide-footer {
    padding: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    background: #fff;
}

.angie-guide-thumb {
    width: 45px;
    height: 45px;
    object-fit: contain;
    border-radius: 4px;
    background: #f9f9f9;
}

.angie-guide-title {
    font-size: 13px;
    font-weight: 500;
    color: #333;
    line-height: 1.3;
}
