.inner-page {
    background: #fff;
}

.inner-page-hero {
    background: linear-gradient(135deg, #508991 0%, #5a9aa3 100%);
    padding: 100px 0 60px;
    margin-top: -90px;
    padding-top: 150px;
}

.inner-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: left;
}

.inner-page-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
    margin: 0 0 20px 0;
}

.inner-page-excerpt {
    font-family: 'Montserrat', sans-serif;
    font-size: 20px;
    font-weight: 400;
    line-height: 32px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.inner-page-meta {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 20px;
}

.inner-page-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
}

.inner-page-meta svg {
    width: 16px;
    height: 16px;
    color: #D1ED45;
}

.inner-page-meta a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: color 0.3s ease;
}

.inner-page-meta a:hover {
    color: #D1ED45;
}

.inner-page-content {
    padding: 80px 0;
}

.content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.featured-image {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.entry-content {
    font-family: 'Montserrat', sans-serif;
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    color: #333;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    color: #000;
    margin: 40px 0 20px;
}

.entry-content h1 {
    font-size: 42px;
    line-height: 1.2;
}

.entry-content h2 {
    font-size: 36px;
    line-height: 1.3;
}

.entry-content h3 {
    font-size: 28px;
    line-height: 1.4;
}

.entry-content h4 {
    font-size: 24px;
    line-height: 1.4;
}

.entry-content p {
    margin: 0 0 24px 0;
}

.entry-content a {
    color: #508A92;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s ease;
}

.entry-content a:hover {
    border-bottom-color: #508A92;
}

.entry-content ul,
.entry-content ol {
    margin: 0 0 24px 0;
    padding-left: 30px;
}

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

.entry-content blockquote {
    margin: 40px 0;
    padding: 24px 32px;
    background: #f9f9f9;
    border-left: 4px solid #508991;
    font-size: 20px;
    font-style: italic;
    color: #555;
}

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

.entry-content figure {
    margin: 32px 0;
}

.entry-content figcaption {
    font-size: 14px;
    color: #666;
    text-align: center;
    margin-top: 12px;
    font-style: italic;
}

.post-tags {
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.post-tags svg {
    width: 16px;
    height: 16px;
    color: #508991;
    flex-shrink: 0;
}

.post-tags a {
    display: inline-block;
    padding: 6px 16px;
    background: #f5f5f5;
    color: #333;
    text-decoration: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 13px;
    font-weight: 500;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.post-tags a:hover {
    background: #508991;
    color: #fff;
}

@media (max-width: 968px) {
    .inner-page-hero {
        padding: 80px 0 50px;
        padding-top: 130px;
    }
    
    .inner-page-title {
        font-size: 42px;
    }
    
    .inner-page-excerpt {
        font-size: 18px;
        line-height: 28px;
    }
    
    .inner-page-content {
        padding: 60px 0;
    }
    
    .entry-content {
        font-size: 17px;
        line-height: 30px;
    }
    
    .entry-content h1 {
        font-size: 36px;
    }
    
    .entry-content h2 {
        font-size: 30px;
    }
    
    .entry-content h3 {
        font-size: 24px;
    }
}

@media (max-width: 768px) {
    .inner-page-hero {
        padding: 60px 0 40px;
        padding-top: 110px;
    }
    
    .inner-page-title {
        font-size: 36px;
    }
    
    .inner-page-excerpt {
        font-size: 16px;
        line-height: 26px;
    }
    
    .inner-page-meta {
        gap: 16px;
        font-size: 13px;
    }
    
    .inner-page-content {
        padding: 50px 0;
    }
    
    .entry-content {
        font-size: 16px;
        line-height: 28px;
    }
    
    .entry-content h1 {
        font-size: 32px;
    }
    
    .entry-content h2 {
        font-size: 26px;
    }
    
    .entry-content h3 {
        font-size: 22px;
    }
    
    .entry-content blockquote {
        padding: 20px 24px;
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .inner-page-hero {
        padding: 50px 0 30px;
        padding-top: 100px;
    }
    
    .inner-page-title {
        font-size: 28px;
    }
    
    .inner-page-excerpt {
        font-size: 15px;
        line-height: 24px;
    }
    
    .inner-page-content {
        padding: 40px 0;
    }
    
    .featured-image {
        margin-bottom: 30px;
    }
    
    .entry-content {
        font-size: 15px;
        line-height: 26px;
    }
    
    .entry-content h1 {
        font-size: 28px;
    }
    
    .entry-content h2 {
        font-size: 24px;
    }
    
    .entry-content h3 {
        font-size: 20px;
    }
    
    .entry-content ul,
    .entry-content ol {
        padding-left: 20px;
    }
    
    .entry-content blockquote {
        margin: 30px 0;
        padding: 16px 20px;
        font-size: 16px;
    }
}

