/* Veracity - Main Stylesheet */
/* Mobile-first responsive design */

/* ========== CSS Variables ========== */
:root {
    /* Brand Colors */
    --primary: #0a1e5e;
    --primary-dark: #061344;
    --primary-light: #1a3a8f;
    --secondary: #2ecc40;
    --accent-green: #00c853;
    --accent-blue: #3b82f6;
    
    /* Neutrals */
    --white: #ffffff;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --gray-800: #1f2937;
    --gray-900: #111827;
    --black: #000000;
    
    /* Functional */
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;
    
    /* Typography */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    
    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 12px;
    --radius-xl: 16px;
    --radius-full: 9999px;
    
    /* Shadows */
    --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px rgba(0, 0, 0, 0.15);
    
    /* Transitions */
    --transition-fast: 150ms ease;
    --transition-normal: 300ms ease;
    --transition-slow: 500ms ease;
    
    /* Container */
    --container-max: 1200px;
    --container-padding: 1rem;
}

/* ========== Reset & Base ========== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    font-size: 1rem;
    line-height: 1.6;
    color: var(--gray-800);
    background-color: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--primary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--primary-light);
}

ul, ol {
    list-style: none;
}

button {
    cursor: pointer;
    font-family: inherit;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}

/* ========== Typography ========== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 600;
    line-height: 1.3;
    color: var(--gray-900);
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

@media (min-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
    h3 { font-size: 1.75rem; }
}

p {
    margin-bottom: 1rem;
}

/* ========== Layout ========== */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
}

.flex {
    display: flex;
}

.flex-col {
    flex-direction: column;
}

.items-center {
    align-items: center;
}

.justify-between {
    justify-content: space-between;
}

.justify-center {
    justify-content: center;
}

.gap-sm { gap: var(--space-sm); }
.gap-md { gap: var(--space-md); }
.gap-lg { gap: var(--space-lg); }
.gap-xl { gap: var(--space-xl); }

.grid {
    display: grid;
}

/* ========== Header / Navigation ========== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow-sm);
}

.header-top {
    background: var(--white);
    padding: 0.5rem 0;
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem var(--container-padding);
    max-width: var(--container-max);
    margin: 0 auto;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.logo-icon {
    width: 55px;
    height: 20px;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--primary);
}

/* Main Navigation */
.main-nav {
    background: var(--primary);
    padding: 0;
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-menu {
    display: none;
    flex-direction: column;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--primary);
    padding: 1rem;
}

.nav-menu.active {
    display: flex;
}

.nav-menu li {
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-menu a {
    display: block;
    padding: 0.75rem 0;
    color: var(--white);
    font-size: 0.9rem;
    font-weight: 500;
    transition: color var(--transition-fast);
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--accent-green);
}

/* Hamburger Menu */
.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    padding: 0.75rem;
    cursor: pointer;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-fast);
}

/* Header Right Section */
.header-right {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.search-form {
    display: none;
    position: relative;
}

.search-input {
    padding: 0.5rem 1rem;
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    width: 180px;
    transition: var(--transition-fast);
}

.search-input:focus {
    outline: none;
    border-color: var(--primary);
    width: 220px;
}

.btn-signin {
    padding: 0.5rem 1rem;
    background: var(--accent-green);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    transition: var(--transition-fast);
}

.btn-signin:hover {
    background: #25a035;
    color: var(--white);
}

.social-icons {
    display: none;
    gap: 0.5rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    color: var(--gray-600);
    font-size: 0.75rem;
    transition: var(--transition-fast);
}

.social-icons a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* Desktop Navigation */
@media (min-width: 768px) {
    .hamburger {
        display: none;
    }
    
    .nav-menu {
        display: flex;
        flex-direction: row;
        position: static;
        padding: 0;
        background: transparent;
    }
    
    .nav-menu li {
        border-bottom: none;
    }
    
    .nav-menu a {
        padding: 1rem 1.25rem;
    }
    
    .search-form,
    .social-icons {
        display: flex;
    }
}

/* Body offset for fixed header */
.page-content {
    padding-top: 120px;
}

@media (min-width: 768px) {
    .page-content {
        padding-top: 100px;
    }
}

/* ========== Hero Section ========== */
.hero {
    background-color: var(--primary);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    overflow: hidden;
    padding: 2rem 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(rgba(10, 30, 94, 0.85), rgba(10, 30, 94, 0.85));
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.hero-text {
    text-align: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.hero-badge svg {
    width: 16px;
    height: 16px;
    fill: #fbbf24;
}

.hero-title {
    font-family: 'Georgia', serif;
    font-style: italic;
    font-size: 1.75rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.hero-subtitle {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 280px;
    margin: 0 auto;
}

.hero-form {
    width: 100%;
    max-width: 400px;
}

.hero-form form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.hero-input {
    padding: 0.875rem 1.25rem;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    background: var(--white);
}

.hero-input::placeholder {
    color: var(--gray-400);
}

.hero-btn {
    padding: 0.875rem 2rem;
    background: var(--accent-green);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.hero-btn:hover {
    background: #25a035;
}

@media (min-width: 768px) {
    .hero {
        padding: 2.5rem 0;
    }
    
    .hero-content {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
    }
    
    .hero-text {
        text-align: left;
        flex: 1;
    }
    
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-subtitle {
        margin: 0;
    }
    
    .hero-form {
        flex: 1;
        max-width: 500px;
    }
    
    .hero-form form {
        flex-direction: row;
    }
    
    .hero-input {
        flex: 1;
        border-radius: var(--radius-sm) 0 0 var(--radius-sm);
    }
    
    .hero-btn {
        border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
        white-space: nowrap;
    }
}

/* ========== Promo Banner ========== */
.promo-banner {
    width: 100%;
    max-width: 900px;
    margin: 1.5rem auto;
    overflow: hidden;
}

.banner-link {
    display: block;
    width: 100%;
}

.banner-image {
    width: 100%;
    max-height: 150px;
    display: block;
    object-fit: cover;
}

/* ========== Featured Grid ========== */
.featured-section {
    padding: 1.5rem 0;
}

.featured-grid {
    display: grid;
    gap: 1rem;
}

.featured-card {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    min-height: 200px;
    background-size: cover;
    background-position: center;
    background-color: var(--gray-300);
}

.featured-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 60%);
    transition: var(--transition-normal);
}

.featured-card:hover::before {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.featured-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1.5rem;
    color: var(--white);
}

.featured-card-title {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--white);
    margin-bottom: 0.5rem;
    line-height: 1.3;
}

.featured-card-excerpt {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    display: none;
}

.featured-card.large {
    min-height: 300px;
}

.featured-card.large .featured-card-title {
    font-size: 1.5rem;
}

.featured-card.large .featured-card-excerpt {
    display: block;
}

@media (min-width: 768px) {
    .featured-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }
    
    .featured-card.large {
        grid-row: span 2;
        min-height: 400px;
    }
    
    .featured-card:not(.large) {
        min-height: 195px;
    }
}

/* ========== Main Content Area with Sidebar ========== */
.content-area {
    padding: 2rem 0;
}

.content-wrapper {
    display: grid;
    gap: 2rem;
}

@media (min-width: 992px) {
    .content-wrapper {
        grid-template-columns: 1fr 300px;
    }
}

/* ========== Article Feed ========== */
.article-feed {
    display: flex;
    flex-direction: column;
}

.article-card {
    display: flex;
    gap: 1rem;
    padding: 1.5rem 0;
    border-bottom: 1px solid var(--gray-200);
    transition: var(--transition-fast);
}

.article-card:first-child {
    padding-top: 0;
}

.article-card:hover {
    background: var(--gray-50);
    margin: 0 -1rem;
    padding-left: 1rem;
    padding-right: 1rem;
}

.article-thumb {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--gray-200);
}

.article-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.article-body {
    flex: 1;
    min-width: 0;
}

.article-category {
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
}

.article-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.25rem;
    line-height: 1.4;
}

.article-title a {
    color: inherit;
}

.article-title a:hover {
    color: var(--primary-light);
}

.article-excerpt {
    font-size: 0.875rem;
    color: var(--gray-600);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

@media (min-width: 768px) {
    .article-thumb {
        width: 180px;
        height: 120px;
    }
    
    .article-title {
        font-size: 1.125rem;
    }
}

/* ========== Sidebar ========== */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

@media (min-width: 992px) {
    .sidebar {
        position: sticky;
        top: 120px;
        align-self: start;
    }
}

/* Sidebar Advert */
.sidebar-advert {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--gray-200);
    width: 281px;
    height: 383px;
    max-width: 100%;
}

.sidebar-advert-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.sidebar-advert-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    text-align: center;
}

.sidebar-advert-date {
    display: inline-block;
    padding: 0.25rem 0.5rem;
    background: var(--black);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.sidebar-advert-btn {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--black);
    color: var(--white);
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
}

.sidebar-advert-btn:hover {
    background: var(--primary);
    color: var(--white);
}

/* Newsletter Widget */
.newsletter-widget {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: var(--radius-md);
    padding: 1.5rem;
    text-align: center;
}

.newsletter-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.newsletter-text {
    font-size: 0.875rem;
    color: var(--gray-600);
    margin-bottom: 1rem;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.newsletter-input {
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    text-align: center;
}

.newsletter-input:focus {
    outline: none;
    border-color: var(--primary);
}

.newsletter-btn {
    padding: 0.75rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-fast);
}

.newsletter-btn:hover {
    background: var(--primary-dark);
}

/* Decorative stripes */
.newsletter-widget::after {
    content: '';
    display: block;
    height: 4px;
    margin-top: 1rem;
    background: repeating-linear-gradient(
        90deg,
        var(--primary) 0px,
        var(--primary) 8px,
        var(--accent-green) 8px,
        var(--accent-green) 16px
    );
}

/* ========== Pagination ========== */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 2rem 0;
}

.pagination a,
.pagination > span {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    padding: 0 0.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--gray-600);
    transition: var(--transition-fast);
}

.pagination a:hover {
    background: var(--gray-100);
    color: var(--primary);
}

.pagination .active {
    background: var(--primary);
    color: var(--white);
}

.pagination .disabled {
    opacity: 0.4;
    pointer-events: none;
}

.pagination-arrow {
    min-width: 40px;
    height: 40px;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
}

.pagination-arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

.pagination-arrow svg {
    width: 20px;
    height: 20px;
}

.pagination-dots {
    min-width: auto;
    padding: 0 0.25rem;
}

/* ========== Footer ========== */
.site-footer {
    background: var(--primary);
    color: var(--white);
    padding: 3rem 0 1.5rem;
}

.footer-grid {
    display: grid;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-brand .logo {
    margin-bottom: 1rem;
}

.footer-brand .logo-text {
    color: var(--white);
}

.footer-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    line-height: 1.5;
    margin-top: 0.75rem;
    max-width: 250px;
}

.footer-heading {
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 1rem;
    color: var(--white);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--white);
}

.footer-newsletter {
    max-width: 250px;
}

.footer-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 0.75rem;
}

.footer-newsletter input {
    padding: 0.625rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-sm);
    background: transparent;
    color: var(--white);
    font-size: 0.875rem;
    width: 100%;
}

.footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-subscribe-btn {
    padding: 0.625rem 1rem;
    background: var(--accent-green);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-size: 0.875rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    width: 100%;
}

.footer-subscribe-btn:hover {
    background: #25a035;
}

.footer-phone {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-phone a {
    color: var(--white);
    text-decoration: underline;
}

.footer-bottom {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
}

@media (min-width: 768px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ========== Single Post Page ========== */
.post-header {
    background: var(--gray-100);
    padding: 2rem 0;
    margin-bottom: 2rem;
}

.post-hero-image {
    width: 100%;
    max-height: 400px;
    object-fit: cover;
    border-radius: var(--radius-md);
    margin-bottom: 1.5rem;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--gray-600);
    font-size: 0.875rem;
    margin-bottom: 1rem;
}

.back-link:hover {
    color: var(--primary);
}

.post-title {
    font-size: 1.75rem;
    margin-bottom: 0.75rem;
}

.post-meta {
    font-size: 0.875rem;
    color: var(--gray-500);
}

.post-meta span {
    margin-right: 1rem;
}

.post-content {
    font-size: 1.0625rem;
    line-height: 1.8;
}

.post-content p {
    margin-bottom: 1.5rem;
}

.post-content h2,
.post-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Related Stories */
.related-stories {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.related-stories h3 {
    margin-bottom: 1.5rem;
}

.related-grid {
    display: grid;
    gap: 1rem;
}

.related-card {
    background: var(--gray-200);
    border-radius: var(--radius-md);
    height: 150px;
    overflow: hidden;
}

.related-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (min-width: 768px) {
    .related-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Comments Section */
.comments-section {
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-200);
}

.comment-form h3 {
    margin-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 0.5rem;
    color: var(--gray-700);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--gray-300);
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(10, 30, 94, 0.1);
}

.form-group textarea {
    min-height: 150px;
    resize: vertical;
}

.form-row {
    display: grid;
    gap: 1rem;
}

@media (min-width: 768px) {
    .form-row {
        grid-template-columns: 1fr 1fr;
    }
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-600);
}

.form-checkbox input {
    width: auto;
}

/* ========== Category Pages ========== */
.category-header {
    background: var(--primary);
    padding: 140px 0 2rem 0;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .category-header {
        padding: 120px 0 2rem 0;
    }
}

.category-title {
    color: var(--white);
    font-size: 2rem;
    text-transform: capitalize;
}

/* ========== Contact Page ========== */
.contact-section {
    padding: 2rem 0;
}

.contact-grid {
    display: grid;
    gap: 2rem;
}

@media (min-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.contact-info h2 {
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--gray-600);
}

.contact-details {
    margin-top: 1.5rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--gray-700);
}

.contact-item svg {
    width: 20px;
    height: 20px;
    fill: var(--primary);
}

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-sm);
    font-size: 0.9375rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition-fast);
    border: none;
}

.btn-primary {
    background: var(--primary);
    color: var(--white);
}

.btn-primary:hover {
    background: var(--primary-dark);
    color: var(--white);
}

.btn-secondary {
    background: var(--gray-200);
    color: var(--gray-800);
}

.btn-secondary:hover {
    background: var(--gray-300);
}

.btn-success {
    background: var(--accent-green);
    color: var(--white);
}

.btn-success:hover {
    background: #25a035;
    color: var(--white);
}

/* ========== Alerts ========== */
.alert {
    padding: 1rem;
    border-radius: var(--radius-sm);
    margin-bottom: 1rem;
    font-size: 0.9375rem;
}

.alert-success {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #a7f3d0;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

.alert-warning {
    background: #fef3c7;
    color: #92400e;
    border: 1px solid #fde68a;
}

.alert-info {
    background: #dbeafe;
    color: #1e40af;
    border: 1px solid #bfdbfe;
}

/* ========== Utilities ========== */
.text-center { text-align: center; }
.text-right { text-align: right; }

.mt-1 { margin-top: var(--space-md); }
.mt-2 { margin-top: var(--space-lg); }
.mt-3 { margin-top: var(--space-xl); }
.mb-1 { margin-bottom: var(--space-md); }
.mb-2 { margin-bottom: var(--space-lg); }
.mb-3 { margin-bottom: var(--space-xl); }

.hidden { display: none !important; }

@media (max-width: 767px) {
    .hide-mobile { display: none !important; }
}

@media (min-width: 768px) {
    .hide-desktop { display: none !important; }
}

/* ========== Post Page Layout ========== */
.post-top-ad {
    padding: 220px 0 1rem 0;
    background: var(--gray-50);
    position: relative;
    z-index: 999;
}

@media (min-width: 768px) {
    .post-top-ad {
        padding: 200px 0 1rem 0;
    }
}

.post-top-ad .ad-container {
    text-align: center;
}

/* Post Before Image Banner */
.post-before-image-banner {
    padding: 2rem 0 1rem 0;
    background: var(--white);
}

@media (min-width: 768px) {
    .post-before-image-banner {
        padding: 2rem 0 2rem 0;
    }
}

/* Post Before Image Ad */
.post-before-image-ad {
    padding: 2rem 0 1rem 0;
    background: var(--gray-50);
}

@media (min-width: 768px) {
    .post-before-image-ad {
        padding: 2rem 0 2rem 0;
    }
}

.post-before-image-ad .ad-container {
    text-align: center;
}

.post-hero-section {
    padding: 1rem 0 2rem;
}

.post-layout {
    display: grid;
    gap: 2rem;
    grid-template-columns: 1fr;
}

@media (min-width: 1024px) {
    .post-layout {
        grid-template-columns: 200px 1fr 280px;
    }
}

/* Left Sidebar */
.post-left-sidebar {
    display: none;
}

@media (min-width: 1024px) {
    .post-left-sidebar {
        display: block;
        position: sticky;
        top: 100px;
        height: fit-content;
    }
}

.left-sidebar-post {
    display: block;
    margin-bottom: 1.5rem;
    text-decoration: none;
    transition: var(--transition-fast);
}

.left-sidebar-post:hover {
    transform: translateY(-2px);
}

.left-sidebar-post-image {
    width: 100%;
    aspect-ratio: 1;
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.left-sidebar-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.left-sidebar-post-category {
    font-size: 0.6875rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--primary);
    font-weight: 600;
}

.left-sidebar-post-title {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-900);
    line-height: 1.4;
    margin-top: 0.25rem;
}

/* Share Buttons */
.share-buttons {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--gray-200);
}

.share-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    margin-bottom: 0.75rem;
}

.share-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-right: 0.5rem;
    transition: var(--transition-fast);
}

.share-facebook {
    background: #1877f2;
    color: white;
}

.share-facebook:hover {
    background: #166fe5;
    color: white;
}

.share-twitter {
    background: #000000;
    color: white;
}

.share-twitter:hover {
    background: #333333;
    color: white;
}

.share-whatsapp {
    background: #25d366;
    color: white;
}

.share-whatsapp:hover {
    background: #22c55e;
    color: white;
}

/* Post Content Ad */
.post-content-ad {
    margin: 2rem 0;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
    text-align: center;
}

/* Related Card Placeholder */
.related-card-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gray-200);
    border-radius: var(--radius-md);
}

/* Mobile Share Buttons */
@media (max-width: 1023px) {
    .post-article {
        position: relative;
    }
    
    .post-article::after {
        content: '';
        display: block;
        clear: both;
    }
}

/* Mobile Share Buttons - Show at bottom on mobile */
.mobile-share-buttons {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 2rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: var(--radius-md);
}

@media (min-width: 1024px) {
    .mobile-share-buttons {
        display: none;
    }
}

.mobile-share-buttons .share-label {
    margin-bottom: 0;
    margin-right: 0.5rem;
}
