/* 1. MAIN LOGO (Top of Article) */
.agri-content-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
}

.agri-content-logo img {
    max-width: 220px; /* Good readable size */
    height: auto;
    display: block;
}

/* 2. BREATHING BACKGROUND WATERMARK (Lighter) */
.agri-article-watermark {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 45vw;
    height: 45vw;
    background-image: url('https://agriculturenovel.co/wp-content/uploads/2026/02/Untitled-2.png');
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    
    /* OPACITY FIX: Very subtle/light */
    opacity: 0.08; 
    z-index: 0; /* Behind text interaction but visible on background */
    pointer-events: none;
    
    /* Breathing Animation */
    animation: gpt-breathe 5s ease-in-out infinite;
}

@keyframes gpt-breathe {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.06;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.05); 
        opacity: 0.12; /* Peak opacity (still light) */
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.06;
    }
}

/* Hide the old corner logo completely */
.agri-brand-corner {
    display: none;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .agri-content-logo img {
        max-width: 160px;
    }
    .agri-article-watermark {
        width: 80vw;
        height: 80vw;
        opacity: 0.05; /* Even lighter on mobile */
    }
}
