/* Beaverwood Theme - Responsive Styles */

/* Mobile First Approach */
@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    .site-title {
        font-size: 1.5rem;
    }

    h1 {
        font-size: 1.75rem;
    }

    h2 {
        font-size: 1.5rem;
    }

    h3 {
        font-size: 1.25rem;
    }

    .post {
        margin-bottom: 1.5rem;
    }

    .post-header,
    .post-content {
        padding: 1rem;
    }

    .header-content {
        flex-direction: column;
        gap: 1rem;
    }

    .main-navigation ul {
        flex-direction: column;
        gap: 0.5rem;
    }
}

/* Tablet Styles */
@media (min-width: 481px) and (max-width: 768px) {
    .container {
        padding: 0 20px;
    }

    .content-area {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .sidebar {
        order: -1;
    }

    .header-content {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 2rem;
    }
}

/* Desktop Styles */
@media (min-width: 769px) {
    .container {
        padding: 0 30px;
    }

    .content-area {
        grid-template-columns: 1fr 300px;
        gap: 2rem;
    }

    .header-content {
        flex-direction: row;
        justify-content: center;
        align-items: center;
        gap: 3rem;
    }

    .main-navigation ul {
        flex-direction: row;
        gap: 2rem;
    }
}

/* Large Desktop Styles */
@media (min-width: 1200px) {
    .container {
        max-width: 1400px;
        padding: 0 40px;
    }

    .content-area {
        grid-template-columns: 1fr 350px;
        gap: 3rem;
    }
}

/* Print Styles */
@media print {

    .site-header,
    .site-footer,
    .sidebar,
    .read-more,
    .menu-toggle {
        display: none;
    }

    .content-area {
        grid-template-columns: 1fr;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }

    h1,
    h2,
    h3,
    h4,
    h5,
    h6 {
        page-break-after: avoid;
    }

    .post {
        page-break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }
}