/* ===================================
   JOURNAL PAGE STYLES
   =================================== */

/* Journal Header */
.journal-header {
    background: linear-gradient(135deg, #FF00FF 0%, #D400D4 100%);
    color: white;
    text-align: center;
    padding: 5rem 2rem 3rem;
}

.journal-header h1 {
    font-size: 3.5rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.journal-header p {
    font-size: 1.3rem;
    opacity: 0.9;
}

/* Journal Content */
.journal-content {
    padding: 5rem 0;
    background: #FFF5FA;
}

/* Featured Post - Full Width */
.journal-post.featured {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    margin-bottom: 4rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.journal-post.featured .post-image {
    position: relative;
    overflow: hidden;
}

.journal-post.featured .post-image img {
    width: 100%;
    height: 100%;
    min-height: 400px;
    object-fit: cover;
}

.journal-post.featured .post-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Posts Grid - Regular Posts */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

/* Regular Journal Posts */
.journal-post {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.journal-post:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(255, 0, 255, 0.2);
}

/* CRITICAL: Post Images - Fixed Sizing */
.post-image {
    position: relative;
    overflow: hidden;
    width: 100%;
}

.post-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
}

/* Post Badge */
.post-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: #FF00FF;
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    text-transform: uppercase;
    z-index: 10;
}

/* Post Content */
.post-content {
    padding: 1.5rem;
}

.post-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.post-date {
    color: #999;
}

.post-category {
    color: #FF00FF;
    font-weight: 600;
}

.post-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: #333;
    line-height: 1.3;
}

.journal-post.featured .post-title {
    font-size: 2.2rem;
}

.post-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Newsletter CTA */
.journal-cta {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.journal-cta h2 {
    font-size: 2rem;
    color: #FF00FF;
    margin-bottom: 1rem;
}

.journal-cta p {
    color: #666;
    margin-bottom: 2rem;
}

.newsletter-form {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin: 2rem 0 1rem;
    flex-wrap: wrap;
}

.newsletter-form input {
    padding: 12px 20px;
    border-radius: 25px;
    border: 2px solid #ddd;
    min-width: 300px;
    font-size: 1rem;
}

.newsletter-form input:focus {
    outline: none;
    border-color: #FF00FF;
}

.newsletter-note {
    font-size: 0.9rem;
    color: #999;
}

/* Responsive */
@media (max-width: 968px) {
    .journal-header h1 {
        font-size: 2.5rem;
    }
    
    .journal-post.featured {
        grid-template-columns: 1fr;
    }
    
    .journal-post.featured .post-image img {
        min-height: 300px;
    }
    
    .journal-post.featured .post-content {
        padding: 2rem;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .newsletter-form {
        flex-direction: column;
    }
    
    .newsletter-form input {
        min-width: 100%;
    }
}

/* ===================================
   ABOUT PREVIEW IN JOURNAL
   =================================== */

.about-preview {
    margin: 5rem 0;
}

.about-preview .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.about-preview .about-image img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.about-preview .about-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: #FF00FF;
    line-height: 1.2;
}

.about-preview .about-content .lead {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.about-preview .about-content p {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.6;
}

.about-preview .btn-primary {
    margin-top: 2rem;
    display: inline-block;
    background: #FF00FF;
    color: white;
    padding: 12px 30px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: background 0.3s;
}

.about-preview .btn-primary:hover {
    background: #D400D4;
}

@media (max-width: 968px) {
    .about-preview .about-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .about-preview .about-content h2 {
        font-size: 2rem;
    }
    
    .about-preview .about-content .lead,
    .about-preview .about-content p {
        font-size: 1.1rem;
    }
}


.about-preview .about-content .message-highlight {
    font-size: 1.3rem;
    color: #FF00FF;
    font-weight: 600;
    margin-bottom: 1rem;
}

