/* Google AdSense Styling */

.adsense-container {
    margin: 20px auto;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.02);
    padding: 10px;
    border-radius: 5px;
}

/* Header Ad - Top of page */
.adsense-header {
    max-width: 728px;
    margin: 20px auto 30px;
}

/* Sidebar Ad - Right side */
.adsense-sidebar {
    max-width: 300px;
    margin: 20px auto;
    position: sticky;
    top: 20px;
}

/* Footer Ad - Bottom of page */
.adsense-footer {
    max-width: 728px;
    margin: 30px auto 20px;
}

/* Inline/In-content Ad */
.adsense-inline {
    max-width: 100%;
    margin: 30px auto;
    clear: both;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .adsense-header,
    .adsense-footer {
        max-width: 100%;
    }

    .adsense-sidebar {
        position: static;
        max-width: 100%;
    }
}

/* Ad label (optional - for transparency) */
.adsense-container::before {
    content: "Advertisement";
    display: block;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 5px;
}
