/**
 * Responsive Styles
 * Media queries and breakpoint-specific styles
 */

/* Responsive Design - Based on Original Breakpoints */
@media (max-width: 1119px) {
    .posts-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 1023px) {
    .posts-grid {
        grid-template-columns: 1fr;
    }

    .page-title {
        font-size: 2rem;
    }

    .single-post-title {
        font-size: 1.8rem;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }

    /* Stack sidebar below content on tablets and mobile */
    .page-container-with-sidebar {
        flex-direction: column;
    }

    .page-sidebar {
        width: 100%;
        margin-left: 0;
        margin-top: 30px;
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 15px;
    }

    .post-card h2 {
        font-size: 1.5rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .footer-logo {
        justify-content: center;
        margin-bottom: 1rem;
    }

    /* Hero video responsive */
    .hero-video-section {
        height: calc(100vh - 150px);
    }

    .hero-title {
        font-size: 3rem;
    }

    .hero-subtitle {
        font-size: 1.75rem;
    }

    .hero-button {
        padding: 12px 30px;
        font-size: 1.1rem;
    }

    .hero-content-inner {
        padding-left: 20px;
    }

    .hero-content-bottom {
        flex-direction: column;
        gap: 1.5rem;
    }

    .hero-buttons {
        flex-direction: row;
        justify-content: flex-start;
        flex-wrap: wrap;
    }

    .hero-description {
        font-size: 1.25rem;
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .hero-video-section {
        height: calc(100vh - 150px);
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.5rem;
    }

    .hero-content-inner {
        padding-left: 15px;
    }

    .hero-buttons {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .hero-button {
        width: 100%;
        text-align: center;
    }

    .hero-description {
        font-size: 1.1rem;
    }
}

