/* ads.css */
.native-ad-container {
    background-color: #f4f4f5; /* zinc-100 */
    border: 1px solid #e4e4e7; /* zinc-200 */
    border-radius: 0.75rem; /* rounded-xl */
    padding: 1.5rem;
    margin: 2rem 0;
    position: relative;
    font-family: inherit;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
}

.native-ad-label {
    position: absolute;
    top: 0.5rem;
    right: 0.75rem;
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #a1a1aa; /* zinc-400 */
    background-color: transparent;
}

.native-ad-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

@media (min-width: 768px) {
    .native-ad-content-wrapper.has-image {
        flex-direction: row;
        align-items: center;
    }
}

.native-ad-image {
    flex-shrink: 0;
    width: 100%;
    max-width: 200px;
    margin: 0 auto;
}

.native-ad-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 0.5rem;
    mix-blend-mode: multiply; /* Helps integrate white background images on grey bg */
}

.native-ad-text-content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.native-ad-title {
    font-size: 1.125rem;
    font-weight: 700;
    color: #18181b; /* zinc-900 */
    margin: 0 0 0.5rem 0;
}

.native-ad-text {
    font-size: 0.95rem;
    color: #52525b; /* zinc-600 */
    margin: 0 0 1rem 0;
    line-height: 1.5;
}

.native-ad-cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background-color: #eab308; /* yellow-500 */
    color: #000000;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    transition: background-color 0.2s;
    min-height: 44px; /* Mobile touch target */
    min-width: 44px;
    align-self: start;
}

.native-ad-cta:hover {
    background-color: #facc15; /* yellow-400 */
}
