/* Container - No longer a popup */
.modal {
    position: relative;
    display: block;
    width: 100%;
    background: transparent;
    padding: 0;
    box-shadow: none;
    z-index: 1;
    top: auto; left: auto;
    transform: none;
}

/* The Grid */
.product-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    padding: 20px 0;
}

/* Individual Cards */
.press-item {
    background: #fff;
    border: 1px solid #f0f0f0;
    border-radius: 12px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
}

.press-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 24px rgba(0,0,0,0.08);
}

.press-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.press-image-wrapper img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.press-details {
    padding: 20px;
    text-align: center;
}

.press-details h3 {
    margin: 0 0 10px;
    font-size: 18px;
    color: #333;
}

.price {
    font-weight: bold;
    color: #555;
    margin-bottom: 15px;
}

.view-link {
    display: inline-block;
    padding: 8px 16px;
    background: #000;
    color: #fff;
    border-radius: 4px;
    font-size: 13px;
    text-transform: uppercase;
}