/* public-style.css */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400&family=Inter:wght@300;400;600&display=swap');

.ata-post-container {
    max-width: 800px;
    margin: 40px auto;
    font-family: 'Inter', sans-serif;
    line-height: 1.8;
    color: #2d3436;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ata-post-header {
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
}

.ata-post-meta {
    display: flex;
    gap: 15px;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #636e72;
    margin-bottom: 10px;
}

.ata-post-meta .ata-badge {
    background: #f1f2f6;
    padding: 2px 8px;
    border-radius: 4px;
}

.ata-post-content {
    font-size: 18px;
    color: #1e272e;
}

.ata-post-content h1,
.ata-post-content h2,
.ata-post-content h3 {
    font-family: 'Playfair Display', serif;
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    color: #2d3436;
}

.ata-post-content p {
    margin-bottom: 1.5em;
}

.ata-post-footer {
    margin-top: 50px;
    padding: 30px;
    background: #f8f9fa;
    border-radius: 12px;
    border-left: 4px solid #0984e3;
}

.ata-post-footer p {
    margin: 0;
    font-style: italic;
    font-size: 14px;
    color: #636e72;
}

/* Glassmorphism effect for featured images if any */
.ata-post-container .wp-post-image {
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
}

.ata-post-container .wp-post-image:hover {
    transform: scale(1.02);
}