/* Ad Block Styles for Template News */

.ad-card {
    background: hsl(0, 0%, 97%);
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: var(--transition);
    border: 1px solid var(--border-color);
    margin: 2rem 0;
}

.ad-card .story-image-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.5rem;
    height: auto;
    aspect-ratio: unset;
    background: var(--card-background);
}

.ad-card .story-image {
    width: 100%;
    max-width: 336px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
}

.ad-card .story-title a {
    color: var(--text-primary);
    font-weight: 700;
}

.ad-card .story-title a:hover {
    color: var(--accent-orange);
}

.ad-card .story-content {
    background: hsl(0, 0%, 97%);
    padding: 1.5rem;
}

.ad-card .story-excerpt {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* Global Banner Ad Styling */
.ad-banner {
    margin: 2rem 0;
    text-align: center;
    padding: 1rem 0;
    border-top: 2px solid var(--border-color);
    border-bottom: 2px solid var(--border-color);
    background: hsl(0, 0%, 98%);
}

.ad-banner img {
    width: 100%;
    max-width: 728px;
    height: auto;
    border-radius: 0;
    box-shadow: none;
}

/* Optional: Top Banner Specific */
.ad-banner.ad-top {
    background: hsl(0, 0%, 98%);
    padding-top: 1rem;
    padding-bottom: 1rem;
}