/* Ad Card Container */
.aba-ad-card {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 20px;
    border: 2px dashed #999; /* Subtle border to indicate it's an ad slot */
    position: relative;
}

/* Sponsored Tag */
.ad-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    background: rgba(0,0,0,0.1);
    padding: 2px 8px;
    border-radius: 4px;
    color: #555;
}

.ad-content .ad-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.ad-content h4 {
    margin-bottom: 10px;
    color: #333;
}

.ad-content p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
}

/* Ad Button to match your theme */
.ad-btn {
    display: inline-block;
    padding: 10px 20px;
    background-color: var(--primary);
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: transform 0.2s;
}

.ad-btn:hover {
    transform: scale(1.05);
}