/* Hero Post */
.post-hero {
    background: #3F1965;
    padding: 40px 0 120px 0;
    position: relative;
    overflow: hidden;
}

.post-hero .breadcrumbs {
    color: white;
    font-family: "Open Sans";
    font-size: 14px;
    margin-bottom: 40px;
}

.post-hero .breadcrumbs a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
}

.post-hero .breadcrumbs a:hover {
    opacity: 1;
}

.post-hero .breadcrumbs span {
    color: #FFA940;
    font-weight: 600;
}

.post-hero-content {
    display: flex;
    justify-content: center;
}

.post-hero-image {
    max-width: 800px;
    width: 100%;
    position: relative;
}

.post-hero-image img {
    width: 100%;
    height: auto;
    border-radius: 10px;
    margin-bottom: -80px;
    position: relative;
    z-index: 20;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

/* Post Content Section */
.post-content-section {
    padding: 0;
    background: white;
}

.post-content-box {
    background: white;
    border-radius: 100px 100px 30px 30px;
    padding: 100px 120px 80px;
    margin-top: -80px;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 50px;
}

/* Post Header */
.post-header {
    text-align: center;
    margin-bottom: 40px;
    padding-bottom: 30px;
    border-bottom: 2px solid #E8E3F0;
}

.post-header h1 {
    color: #362450;
    font-family: "Abhaya Libre";
    font-size: 56px;
    font-weight: 400;
    line-height: 110%;
    margin-bottom: 24px;
}

/* Post Meta */
.post-meta {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    color: #666;
    font-family: "Open Sans";
    font-size: 15px;
}

.post-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.post-meta svg {
    stroke-width: 2;
}

.post-meta a {
    color: #3F1965;
    text-decoration: none;
}

.post-meta a:hover {
    color: #EF3E3E;
}

/* Post Content Text */
.post-content-text {
    color: #333;
    font-family: "Open Sans";
    font-size: 18px;
    line-height: 180%;
    margin-bottom: 40px;
}

.post-content-text p {
    margin-bottom: 24px;
}

.post-content-text h2 {
    color: #362450;
    font-family: "Abhaya Libre";
    font-size: 40px;
    font-weight: 400;
    margin-top: 48px;
    margin-bottom: 24px;
}

.post-content-text h3 {
    color: #2E2E2E;
    font-family: "Open Sans";
    font-size: 28px;
    font-weight: 600;
    margin-top: 36px;
    margin-bottom: 20px;
}

.post-content-text ul,
.post-content-text ol {
    margin-bottom: 24px;
    padding-left: 30px;
}

.post-content-text li {
    margin-bottom: 12px;
}

.post-content-text a {
    color: #3F1965;
    text-decoration: underline;
}

.post-content-text a:hover {
    color: #EF3E3E;
}

.post-content-text img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 32px 0;
}

.post-content-text blockquote {
    border-left: 4px solid #3F1965;
    padding-left: 24px;
    margin: 32px 0;
    font-style: italic;
    color: #666;
}

/* Post Footer */
.post-footer {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 2px solid #E8E3F0;
}

.post-tags {
    color: #666;
    font-family: "Open Sans";
    font-size: 15px;
}

.post-tags .tags-label {
    font-weight: 600;
    color: #362450;
    margin-right: 8px;
}

.post-tags a {
    display: inline-block;
    background: #E8E3F0;
    color: #362450;
    padding: 6px 16px;
    border-radius: 20px;
    text-decoration: none;
    margin: 4px;
    font-size: 14px;
    transition: all 0.3s ease;
}

.post-tags a:hover {
    background: #3F1965;
    color: white;
}

/* Post Navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #E8E3F0;
}

.nav-previous,
.nav-next {
    flex: 1;
}

.nav-previous a,
.nav-next a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 24px;
    background: #F8F9FA;
    border-radius: 12px;
    text-decoration: none;
    color: #362450;
    font-family: "Open Sans";
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.nav-previous a:hover,
.nav-next a:hover {
    background: #3F1965;
    color: white;
}

.nav-next {
    text-align: right;
}

.nav-next a {
    justify-content: flex-end;
}

.post-navigation svg {
    flex-shrink: 0;
    stroke-width: 2;
}

/* Responsive */
@media (max-width: 1024px) {
    .post-content-box {
        padding: 80px 60px 60px;
    }
    
    .post-header h1 {
        font-size: 42px;
    }
}

@media (max-width: 768px) {
    .post-hero {
        padding: 40px 0 100px 0;
    }
    
    .post-hero-image {
        max-width: 400px;
    }
    
    .post-content-box {
        padding: 60px 30px 40px;
        border-radius: 60px 60px 20px 20px;
    }
    
    .post-header h1 {
        font-size: 32px;
    }
    
    .post-content-text {
        font-size: 16px;
    }
    
    .post-navigation {
        flex-direction: column;
    }
    
    .post-meta {
        flex-direction: column;
        gap: 12px;
    }
}