/*
Theme Name: Pimagazine Asia
Description: Professional energy industry magazine theme
Version: 1.0
Author: Your Name
Text Domain: pimagazine-asia
*/

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');

body {
    font-family: 'Inter', sans-serif;
}

.ad-banner {
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a24 100%);
    animation: pulse 3s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.9; }
    50% { opacity: 1; }
}

.post-preview {
    transition: all 0.3s ease;
}
.post-preview:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.15);
}

.breaking-news {
    animation: slideInRight 0.5s ease-out;
}
@keyframes slideInRight {
    from { transform: translateX(100%); }
    to { transform: translateX(0); }
}

.ad-position { margin: 1rem 0; }
.ad-header_banner { text-align: center; margin-bottom: 2rem; }
.ad-sidebar_top,
.ad-sidebar_middle,
.ad-sidebar_bottom { margin-bottom: 1.5rem; }

@media (max-width: 768px) {
    .ad-header_banner { display: none; }
}
