.press-ads-grid-wrapper {
    background: white;
    border-radius: 0;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    overflow: visible;
    margin: 0;
}

.press-ads-header {
    padding: 20px 0 15px 0;
    margin-bottom: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #667eea;
}

.press-ads-title {
    margin: 0;
    font-size: 18px;
    font-weight: 700;
    color: #333;
    display: flex;
    align-items: center;
    gap: 10px;
}

.press-ads-title i {
    color: #667eea;
}

.press-ads-menu {
    display: flex;
    align-items: center;
}

.press-ads-menu-btn {
    background: none;
    border: none;
    color: #667eea;
    font-size: 20px;
    cursor: pointer;
    padding: 5px 10px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.press-ads-menu-btn:hover {
    color: #764ba2;
    transform: scale(1.2);
}

.press-ads-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    padding: 20px 0;
}

.press-ad-card {
    position: relative;
    border-radius: 0;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    height: 220px;
    background: white;
}

.press-ad-card:hover {
    box-shadow: 0 8px 16px rgba(0,0,0,0.15);
    transform: translateY(-4px);
}

.press-ad-image-wrapper {
    display: block;
    width: 100%;
    height: 100%;
    position: relative;
    text-decoration: none;
}

.press-ad-image {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #f5f5f5;
    border-radius: 0;
}

.press-ad-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    border-radius: 0;
}

.press-ad-card:hover .press-ad-image img {
    transform: scale(1.08);
}

.press-ad-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    font-size: 48px;
    border-radius: 0;
}

.press-ad-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0.2) 0%, rgba(0,0,0,0.6) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 12px;
    transition: all 0.3s ease;
    border-radius: 0;
}

.press-ad-card:hover .press-ad-overlay {
    background: linear-gradient(180deg, rgba(0,0,0,0.3) 0%, rgba(0,0,0,0.75) 100%);
}

.press-ad-badge {
    display: inline-block;
    background: #dc3545;
    color: white;
    padding: 3px 8px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    width: fit-content;
}

.press-ad-title-overlay {
    margin: 0;
    font-size: 13px;
    font-weight: 700;
    color: white;
    line-height: 1.3;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

@media (max-width: 1400px) {
    .press-ads-grid {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (max-width: 1200px) {
    .press-ads-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 992px) {
    .press-ads-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .press-ads-grid-wrapper {
        padding: 15px;
    }

    .press-ads-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .press-ad-card {
        height: 180px;
    }

    .press-ad-title-overlay {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .press-ads-grid {
        grid-template-columns: 1fr;
    }

    .press-ad-card {
        height: 160px;
    }

    .press-ad-title-overlay {
        font-size: 11px;
    }
}

