/*
Theme Name: EmergingTalks White
Author: Vishal Bhujaya
Description: Clean White Theme with Black Accents - Fully Responsive
Version: 1.0
*/

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

body {
    font-family: 'Inter', sans-serif;
    background: #ffffff;
    color: #111111;
    line-height: 1.8;
}

/* Header */
.header {
    background: #ffffff;
    border-bottom: 2px solid #111111;
    position: relative;
    z-index: 10;
}

/* Cards */
.card {
    background: #ffffff;
    border: 2px solid #111111;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s ease;
}
.card:hover {
    background: #111111;
    color: #ffffff;
}

/* Meta */
.meta { color: #555555; font-size: 14px; }

/* Black Border Images */
.border-accent {
    border: 3px solid #111111;
    border-radius: 16px;
}

/* Article Text */
.prose { font-size: 17px; line-height: 1.85; color: #111111; }
.prose h1, .prose h2, .prose h3 { color: #111111; }

/* Post Grid */
.post-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

/* Social Buttons */
.social-btn {
    background: #111111;
    width: 52px;
    height: 52px;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
}
.social-btn:hover {
    background: #ffffff;
    color: #111111;
    border: 2px solid #111111;
}

/* Responsive */
@media (max-width: 768px) {
    h1 { font-size: 1.85rem; }
    .prose { font-size: 16px; }