/* PRESS GRID CONTAINER */
.press-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 30px 0;
}

/* PRESS ITEM CARD */
.press-item {
    background: #fff;
    border: 1px solid #e0e0e0;
    padding: 20px;
    width: calc(33.333% - 20px);
    box-sizing: border-box;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    transition: transform 0.2s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

/* HOVER ANIMATION */
.press-item:hover {
    transform: translateY(-5px);
}

/* FEATURED IMAGE STYLE */
.press-item img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    margin-bottom: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
}

/* TITLE */
.press-item h3 {
    font-size: 18px;
    margin: 10px 0;
    color: #222;
}

/* DESCRIPTION */
.press-item p {
    font-size: 14px;
    margin-bottom: 15px;
    color: #333;
    flex-grow: 1;
}

/* CTA BUTTON – Matches VIEW MENUS style */
.press-button {
    display: inline-flex;
    align-items: center;
    background-color: #7cc68d;
    color: #fff;
	width: 100%;
    padding: 10px 18px;
    font-size: 14px;
    font-weight: bold;
    border-radius: 0 !important;
    text-decoration: none;
    transition: background-color 0.3s ease;
	font-size: 14px;
  font-family: 'Lato',Helvetica,Arial,Lucida,sans-serif !important;
}

.press-button::after {
    content: ' \2192'; /* Right arrow */
    margin-left: 8px;
    font-size: 16px;
}

.press-button:hover {
    background-color: #1e9b56;
}

/* TABLET */
@media (max-width: 1024px) {
    .press-item {
        width: calc(50% - 20px);
    }
}

/* MOBILE */
@media (max-width: 768px) {
    .press-item {
        width: 100%;
    }
}

