/* CSS Code for the Book Post Layout */

/* Import Fonts */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@500;700&family=Open+Sans:wght@400;600&display=swap');

/* Styles limited to .edu-post container */
.edu-post {
    background-color: #ffffff;
    padding: 2rem;
    border-radius: 8px;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
    font-family: 'Open Sans', sans-serif;
    color: #333333;
}

.edu-post h1,
.edu-post h2,
.edu-post h3,
.edu-post h4 {
    font-family: 'Poppins', sans-serif;
    color: #1E40AF;
}

.edu-post h1 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.edu-post h2 {
    font-size: 2rem;
    margin-top: 2rem;
    margin-bottom: 0.5rem;
}

.edu-post h3 {
    font-size: 1.5rem;
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
}

.edu-post h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
}

.edu-post p {
    margin-bottom: 1rem;
}

.edu-post .highlight {
    color: #3B82F6;
    font-weight: 600;
}

.edu-post .note-box {
    background-color: #E0F2FE;
    padding: 1rem;
    border-radius: 6px;
    margin: 1.5rem 0;
}

.edu-post .action-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.5rem;
}

.edu-post .btn {
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 600;
    transition: background-color 0.3s ease;
}

.edu-post .view-btn {
    background-color: #3B82F6;
    color: #ffffff;
}

.edu-post .view-btn:hover {
    background-color: #1E40AF;
}

.edu-post .download-btn {
    background-color: #1E40AF;
    color: #ffffff;
}

.edu-post .download-btn:hover {
    background-color: #3B82F6;
}

/* Mobile Responsiveness */
@media (max-width: 600px) {
    .edu-post {
        padding: 1.5rem;
    }
    
    .edu-post h1 {
        font-size: 2rem;
    }
    
    .edu-post h2 {
        font-size: 1.75rem;
    }
    
    .edu-post .action-buttons {
        flex-direction: column;
    }
    
    .edu-post .btn {
        width: 100%;
        text-align: center;
    }
}