/* Single Post Styles */

/* Wrapper to center content and apply max-width */
.single-post-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Title */
.single-post-title {
    max-width: 768px;
    width: 100%;
    opacity: 1;
    font-family: 'Recoleta', serif;
    font-weight: 600;
    font-style: normal;
    font-size: 47px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    color: #000000;
    margin-bottom: 20px;
}

/* Meta Data */
.single-post-meta {
    max-width: 500px; 
    width: 100%;
    opacity: 1;
    font-family: 'Gotham', sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 17px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    color: #000000;
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    align-items: center; 
    gap: 10px;
}

.meta-author-avatar img {
    border-radius: 50%;
    display: block;
    width: 24px;
    height: 24px;
}

.single-post-meta span {
    display: inline-block;
}

/* Featured Image */
.single-post-image {
    max-width: 768px;
    width: 100%;
    height: auto;
    opacity: 1;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px; 
}

.single-post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    aspect-ratio: 768 / 432;
}

/* Blog Summary */
.blog-summary {
    max-width: 768px;
    width: 100%;
    margin-bottom: 40px;
    font-family: 'Gotham', sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: #333;
    
}

/* Main Content & Sections */
.single-post-content,
.blog-custom-sections {
    max-width: 760px;
    width: 100%;
    opacity: 1;
    font-family: 'Gotham', sans-serif;
    color: #000000; 
    line-height: 1.8; 
    font-weight: 400; 
    font-size: 17px;
}

.single-post-content p,
.blog-section-content p {
    margin-bottom: 30px;
}

/* Section Title */
.single-post-container .blog-section-title {
    max-width: 760px;
    width: 100%;
    /* height: 22px; Letting it flow */
    opacity: 1;
    font-family: 'Recoleta', serif;
    font-weight: 400; /* Regular */
    font-style: normal;
    font-size: 23px;
    line-height: 22px; /* Tight line height */
    letter-spacing: 0px;
    color: #A56C51 !important; /* Brownish - Force override */
    margin-top: 40px;
    margin-bottom: 40px;
    text-align: left; 
}

/* Eye Catcher */
.blog-eye-catcher-wrapper {
    max-width: 768px;
    width: 100%;
    margin: 40px auto;
    display: flex;
    justify-content: center;
}

.blog-eye-catcher {
    width: 100%;
    /* height: 155px; auto height */
    opacity: 1;
    padding: 0;
    border: none;

    font-family: 'Gotham', sans-serif;
    font-weight: 500; /* Medium/350 requested, 500 is closest standard Medium */
    font-style: normal; /* Medium */
    font-size: 17px;
    line-height: 30.6px;
    letter-spacing: 0px;
    color: #000000;
    text-align: left;
    position: relative;
}

.blog-eye-catcher::before {
    content: "";
    display: block;
    width: 10.7%; /* Responsive percentage (approx 82/768) */
    max-width: 82px;
    height: 4px;
    background-color: #F2A03D;
    margin-bottom: 16px;
}

.blog-eye-catcher::after {
    content: "";
    display: block;
    width: 10.7%; /* Responsive percentage (approx 82/768) */
    max-width: 82px;
    height: 4px;
    background-color: #F2A03D;
    margin-top: 16px;
}

/* Conclusion Divider */
.blog-conclusion-divider {
    width: 100%;
    max-width: 760px;
    height: 1px;
    background-color: #ddd; /* Standard divider color */
    margin: 60px auto 40px auto;
}

/* Related Posts Section */
.related-posts-section {
    width: 100%;
    margin-top: 20px;
}

.related-posts-title {
    font-family: 'Recoleta Alt', serif;
    font-weight: 500;
    font-size: 37px;
    margin: 0 0 30px 0;
    text-align: center;
    color: #333;
}

/* Reuse Grid Styles from Outreach */
.outreach-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.outreach-grid-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 1;
}

.outreach-grid-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 20px rgba(0, 0, 0, 0.15);
}

.grid-item-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: #f5f5f5;
}

.grid-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.outreach-grid-item:hover .grid-item-image img {
    transform: scale(1.05);
}

.grid-item-content {
    padding: 25px;
}

.category-badge {
    display: inline-block;
    padding: 0 6px;
    height: 20px;
    line-height: 18px;
    border-radius: 4px;
    border: 1px solid #A56C51;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0px;
    background: white;
    color: #A56C51;
    margin-bottom: 12px;
    opacity: 1;
    text-align: center;
    box-sizing: border-box;
}

.grid-item-content h3 {
    margin: 0 0 16px;
    font-family: 'Recoleta', serif;
    font-weight: 500;
    font-size: 23px;
    line-height: 100%;
    letter-spacing: 0px;
    color: #333;
}

.campaign-share {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-top: 15px;
}

.share-icon {
    width: 18px;
    height: 15px;
    stroke: #000000;
    stroke-width: 2px;
    fill: none;
    cursor: pointer;
    transition: transform 0.2s ease;
    opacity: 1;
}

.share-icon:hover {
    transform: translateY(-2px);
}

.grid-item-meta {
    font-family: 'Gotham', sans-serif;
    font-size: 13px;
    color: #666;
    margin-bottom: 10px;
}
