/* Grid Layout */
.angie-press-mentions-grid {
    display: grid;
    /* Grid columns are handled by Elementor controls */
    /* Grid gap is handled by Elementor controls */
    width: 100%;
}

/* Card Styling */
.angie-press-card {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    /* Background, Padding, Radius handled by Elementor controls */
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid transparent; /* Prepare for hover border */
    position: relative;
    overflow: hidden;
}

/* Hover Effect - Replicating Press Release Widget Style */
.angie-press-card:hover {
    transform: translateY(-5px);
    border-color: #EF3F3F; /* Brand Red border on hover */
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Content Wrapper */
.angie-press-content-wrapper {
    margin-bottom: 20px;
}

/* Meta Data (Date & Publication) */
.angie-press-meta {
    display: flex;
    flex-direction: column;
    margin-bottom: 12px;
    gap: 4px;
    font-size: 0.85em;
    font-weight: 500;
}

.angie-press-date {
    /* Color and typo handled by controls */
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.angie-press-publication {
    /* Color and typo handled by controls */
    display: block;
    font-weight: 700;
}

/* Article Title */
.angie-press-title {
    margin: 0;
    /* Color and typo handled by controls */
}

.angie-press-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s ease;
}

.angie-press-title a:hover {
    opacity: 0.8;
}

/* Footer & Read More Link */
.angie-press-footer {
    margin-top: auto; /* Pushes to bottom */
}

.angie-press-link {
    display: inline-flex;
    align-items: center;
    /* Color and typo handled by controls */
    text-decoration: none;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.angie-press-link:hover {
    opacity: 0.8;
}

/* Arrow Pseudo-element */
.angie-press-link::after {
    content: "→";
    display: inline-block;
    margin-left: 6px;
    transition: transform 0.2s ease;
}

.angie-press-link:hover::after {
    transform: translateX(3px);
}
