
.post{
    max-width: 1200px;
}

.post-image img {
  width: 50%;
  max-height:none
}

.post-body p:first-of-type::first-letter {
  float:none;
  font-size: inherit;
  font-weight: inherit;
  margin-right: inherit;
  line-height:normal;
  color: inherit;
}

/* Introduction */
.introduction {
    background-color: var(--light-color);
    padding: 30px;
    border-radius: 8px;
    margin-bottom: 40px;
    border-left: 4px solid var(--accent-color);
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
}

/* The Eleven Section */
.the-eleven-section {
    margin: 50px 0;
    text-align: center;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-color);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.the-eleven-section h2:after {
    content: '';
    display: block;
    width: 80px;
    height: 3px;
    background: var(--accent-color);
    margin: 15px auto;
}

.eleven-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 15px;
    max-width: 800px;
    margin: 0 auto 40px;
}

.person-circle {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto;
    border: 4px solid var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--light-color);
    position: relative;
}

.person-circle img {
    width: auto;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
}

.person-circle:hover {
    transform: scale(1.05);
}

/* Journey Sections */
.journey-section {
    margin-bottom: 60px;
    position: relative;
}

.location-header {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #f0f0f0;
}

.section-image {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.pull-quote {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    line-height: 1.5;
    color: var(--text-dark);
    padding: 25px 40px;
    margin: 30px 0;
    background-color: var(--light-color);
    border-left: 5px solid var(--accent-color);
    font-style: italic;
    text-align: center;
    position: relative;
}

.pull-quote:before {
    content: "“";
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.3;
    position: absolute;
    top: 10px;
    left: 15px;
}

.pull-quote:after {
    content: "”";
    font-size: 4rem;
    color: var(--accent-color);
    opacity: 0.3;
    position: absolute;
    bottom: -20px;
    right: 15px;
}


/* Photo Gallery */
.photo-gallery{
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.gallery-item {
    border-radius: 6px;
    overflow: hidden;
    height: 200px;
    width: 300px;
    margin-top: -2rem;
    margin-bottom: 0.5rem;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.05);
}

/* Conclusion Section */
.conclusion {
    background-color: var(--light-color);
    padding: 40px;
    border-radius: 8px;
    margin: 50px 0;
    text-align: center;
}

.conclusion-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 20px;
}

/* Call to Action */
.eleven .cta-section {
    text-align: center;
    padding: 40px 20px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--overlay) 100%);
    color: var(--white);
    border-radius: 10px;
    margin: 40px 0;
}

.eleven .cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    margin-bottom: 15px;
    color: var(--white) ;
}

.eleven .cta-button {
    display: inline-block;
    background-color: var(--accent-color);
    color: var(--white);
    padding: 15px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    margin-top: 20px;
    transition: all 0.3s ease;
    border: 2px solid var(--accent-color);
}

.eleven .cta-button:hover {
    background-color: transparent;
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
}

/* Final Group Photo */
.final-photo {
    width: 100%;
    max-height: 500px;
    object-fit: cover;
    border-radius: 8px;
    margin: 40px 0;
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

/* Blog Header Styles */
.blog-header {
    padding: 40px 0 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
    margin-bottom: 40px;
}

.blog-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.blog-subtitle {
    font-size: 1.2rem;
    color: var(--text-light);
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto 30px;
    font-style: italic;
}

.blog-meta {
    color: var(--text-light);
    font-size: 0.9rem;
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.blog-meta i {
    color: var(--accent-color);
}


@media (max-width: 768px) {
    .blog-title {
        font-size: 2.2rem;
    }
    
    .eleven-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    }
    
    .person-circle {
        width: 100px;
        height: 100px;
    }
    
    .section-image {
        height: 300px;
    }
    
    .photo-gallery {
        flex-wrap: wrap;
        gap: 0.5rem
    }
    
    .gallery-item {
        width: 150px;
        height: 150px;
    }
}

