/* Public Styles for Hello Ads */

.hello-ad-container {
    margin: 20px auto;
    text-align: center;
    max-width: 100%;
    overflow: hidden;
}

.hello-ad-container a {
    display: inline-block;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hello-ad-container a:hover {
    transform: scale(1.02);
    opacity: 0.95;
}

.hello-ad-image {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
}

/* Specific placements if needed */
.hello-ad-container[id^="hello-ad-header"] {
    margin-top: 0;
    margin-bottom: 30px;
}

.hello-ad-container[id^="hello-ad-footer"] {
    margin-top: 30px;
    margin-bottom: 0;
}
