/* Ad Container Styles for Blog Posts */
.ad-container {
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05), rgba(139, 92, 246, 0.05));
    border: 1px dashed rgba(99, 102, 241, 0.3);
    border-radius: 12px;
    padding: 20px;
    margin: 25px auto;
    text-align: center;
    max-width: 728px;
}

.ad-container.sidebar {
    max-width: 300px;
}

.ad-label {
    font-size: 0.7rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.ad-box {
    background: rgba(0, 0, 0, 0.03);
    border-radius: 8px;
    min-height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    font-size: 0.85rem;
}

.ad-box.large {
    min-height: 250px;
}

.ad-box.medium {
    min-height: 150px;
}

.in-article-ad {
    margin: 30px 0;
    padding: 15px;
    background: #f8f9fa;
    border-left: 4px solid #6366f1;
    border-radius: 0 8px 8px 0;
}

/* Footer Links */
.footer-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: #6366f1;
}