/* Extracted from resources/views/frontend/pages/post.blade.php */
.post-hero {
    position: relative;
    padding: 56px 0 48px;
}
.post-hero::before {
    position: absolute;
    inset: 0;
    content: "";
    background: linear-gradient(
        90deg,
        rgba(5, 50, 40, 0.9),
        rgba(7, 91, 69, 0.74)
    );
}
.post-hero .container {
    position: relative;
    z-index: 1;
}
.post-hero-label {
    display: inline-block;
    margin-bottom: 7px;
    color: #bcebdc;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}
.post-hero .breadcrumb {
    margin: 0;
}
.post-details-section {
    background: #f6f8f9;
}
.post-article-card,
.post-comments-card,
.post-sidebar-card {
    border: 1px solid #e4e9ed;
    border-radius: 14px;
    box-shadow: 0 8px 30px rgba(25, 39, 52, 0.055);
}
.post-article-card {
    overflow: hidden;
    padding: 38px;
}
.post-category-label {
    display: inline-block;
    margin-bottom: 14px;
    padding: 6px 11px;
    color: #087356;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: #eaf7f3;
    border-radius: 6px;
}
.post-category-label:hover {
    color: #075c46;
    text-decoration: none;
}
.post-title {
    font-size: clamp(27px, 3vw, 42px);
    line-height: 1.2;
    letter-spacing: -0.7px;
}
.post-header .text-sm {
    font-size: 13px;
}
.post-featured-image {
    margin-right: -38px;
    margin-left: -38px;
}
.post-featured-image img {
    max-height: 510px;
    object-fit: cover;
    border-radius: 0;
}
.post-content .lead {
    color: #344054 !important;
    font-size: 18px;
    line-height: 1.7;
}
.entry-content {
    color: #4b5868;
    font-size: 16px;
    line-height: 1.85;
}
.entry-content h2,
.entry-content h3,
.entry-content h4 {
    margin: 1.6em 0 0.65em;
    color: #182230;
    font-weight: 700;
    line-height: 1.35;
}
.entry-content img {
    max-width: 100%;
    height: auto;
    border-radius: 10px;
}
.entry-content a {
    color: #087356;
    font-weight: 600;
}
.entry-content blockquote {
    margin: 26px 0;
    padding: 18px 22px;
    color: #344054;
    background: #f0f8f5;
    border-left: 4px solid #0b8260;
    border-radius: 0 8px 8px 0;
}
.post-comments-card {
    border-radius: 14px !important;
    box-shadow: 0 8px 30px rgba(25, 39, 52, 0.045) !important;
}
.post-sidebar {
    position: sticky;
    top: 92px;
}
.post-sidebar-card {
    margin-bottom: 18px;
    padding: 22px;
    background: #fff;
}
.post-sidebar-card h5 {
    margin: 0 0 15px;
    color: #182230;
    font-size: 16px;
    font-weight: 700;
}
.post-sidebar-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 17px;
    padding-bottom: 13px;
    color: #182230;
    font-size: 16px;
    font-weight: 700;
    border-bottom: 1px solid #edf0f2;
}
.post-sidebar-title i {
    color: #0b8260;
    font-size: 14px;
}
.post-search-box {
    position: relative;
    display: flex;
    align-items: center;
}
.post-search-box > i {
    position: absolute;
    left: 13px;
    color: #98a2b3;
}
.post-search-box input {
    width: 100%;
    height: 46px;
    padding: 9px 48px 9px 38px;
    color: #344054;
    background: #f9fafb;
    border: 1px solid #dce2e7;
    border-radius: 8px;
    outline: none;
}
.post-search-box input:focus {
    border-color: #0b8260;
    box-shadow: 0 0 0 3px rgba(11, 130, 96, 0.1);
}
.post-search-box button {
    position: absolute;
    right: 5px;
    width: 36px;
    height: 36px;
    color: #fff;
    background: #0b8260;
    border: 0;
    border-radius: 7px;
}
.recent-post-item {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    align-items: center;
    gap: 13px;
    padding: 12px 0;
    border-bottom: 1px solid #edf0f2;
}
.recent-post-item:first-child {
    padding-top: 0;
}
.recent-post-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}
.recent-post-item:hover {
    text-decoration: none;
}
.recent-post-item img {
    width: 76px;
    height: 66px;
    object-fit: cover;
    border-radius: 8px;
}
.recent-post-item b {
    display: -webkit-box;
    overflow: hidden;
    color: #253044;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}
.recent-post-item:hover b {
    color: #087356;
}
.recent-post-item small {
    display: block;
    margin-top: 6px;
    color: #8994a3;
    font-size: 10px;
}
.post-category-list a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
    color: #475467;
    font-size: 13px;
    font-weight: 600;
    border-bottom: 1px solid #edf0f2;
}
.post-category-list a:first-child {
    padding-top: 0;
}
.post-category-list a:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}
.post-category-list a:hover {
    color: #087356;
    text-decoration: none;
}
.post-category-list b {
    min-width: 25px;
    padding: 2px 6px;
    text-align: center;
    color: #087356;
    font-size: 10px;
    background: #eaf7f3;
    border-radius: 10px;
}
.post-cta-card {
    color: #fff;
    text-align: center;
    background: linear-gradient(145deg, #075f49, #0b8b67);
    border: 0;
}
.post-cta-card h5 {
    margin: 13px 0 8px;
    color: #fff;
    font-size: 18px;
}
.post-cta-card p {
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 13px;
    line-height: 1.6;
}
.post-cta-icon {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    color: #087356;
    background: #fff;
    border-radius: 50%;
}
@media (max-width: 991.98px) {
    .post-sidebar {
        position: static;
        display: grid;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
        margin-top: 5px;
    }
    .post-sidebar-card {
        margin: 0;
    }
}
@media (max-width: 767.98px) {
    .post-hero {
        padding: 38px 0 32px;
    }
    .post-article-card {
        padding: 24px 20px;
    }
    .post-featured-image {
        margin-right: -20px;
        margin-left: -20px;
    }
    .post-header .gap-3 {
        gap: 0.75rem !important;
    }
    .post-sidebar {
        grid-template-columns: 1fr;
    }
    .entry-content {
        font-size: 15px;
    }
}
