/* Single Post Specific Styles */

.post-wrapper {
    padding: 80px 0;
    background-color: #ffffff;
}

.post-grid {
    grid-template-columns: 2fr 0.8fr;
}
.single-title{
    font-size: 45px;
}
.post-meta {
    margin-bottom: 20px;
}

.post-tag {
    font-size: 14px;
    font-weight: 400;
    color: var(--primary-blue);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: inline-block;
}

.post-date {
    font-size: 14px;
    color: var(--text-gray);
    margin-left: 15px;
    position: relative;
    padding-left: 15px;
}

.post-date::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: #cbd5e1;
    border-radius: 50%;
}

.post-header {
    margin-bottom: 40px;
}

.post-header h1 {
    margin-bottom: 20px;
    font-size: 45px;
}


.post-featured-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    margin-bottom: 20px;
}

.post-body p {
    margin-bottom: 20px;
    line-height: 1.8;
}

.post-body h2, .post-body h3 {
    margin-top: 20px;
    margin-bottom: 20px;
    font-weight: 800;
}

/* Specific List Item Styles - Shared across News and Jobs */
.job-details-list {
    margin-bottom: 30px;
}

.job-details-list li {
    margin-bottom: 15px !important;
}

.job-details-list li:last-child {
    margin-bottom: 0 !important;
}

.job-details-list li p {
    margin: 0 !important;
}

.post-body blockquote {
    margin: 40px 0;
    padding: 30px;
    background: #f8fafc;
    border-left: 4px solid var(--primary-blue);
    border-radius: 0 20px 20px 0;
    font-style: italic;
    color: var(--text-dark);
    font-size: 22px;
    line-height: 38px;
}

.post-footer {
    padding-top: 40px;
}

.post-share-label {
    font-weight: 700;
    color: var(--text-dark);
    margin-right: 15px;
}

.post-share-links {
    display: flex;
    gap: 15px;
}

.post-share-btn {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--primary-blue);
    color: #fff;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    font-size: 18px;
}

.post-share-btn:hover {
    background: #0b63ac; /* Blue background */
    color: #ffffff;      /* White icon */
    transform: translateY(-4px);
    box-shadow: 0 10px 15px -3px rgba(11, 99, 172, 0.3);
}

/* Post Navigation Styling */
.post-navigation {
    display: flex;
    justify-content: space-between;
    width: 100%;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #eef2f6;
}

.post-nav-link {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    color: var(--primary-blue);
    font-weight: 400;
    font-size: 16px;
    transition: all 0.3s ease;
}

.post-nav-link:hover {
    color: var(--text-dark);
}

.post-nav-link i {
    font-size: 12px;
}

/* Share Section spacing */
.post-share {
    display: flex;
    align-items: center;
    justify-content: left;
}

/* Sidebar Styling */
.post-sidebar {
    display: flex;
    flex-direction: column;
    gap: 40px;
    position: sticky;
    top: 120px;
    height: fit-content;
}

.sidebar-widget {
    background: #ffffff;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    border: 1px solid #eef2f6;
}

.widget-title {
    margin-bottom: 25px;
    position: relative;
}

.recent-post-item {
    display: flex;
    gap: 15px;
    align-items:start;
    margin-bottom: 20px;
}
.recent-post-item:last-child{
    margin-bottom: 0px;
}

.recent-post-thumb {
    width: 100px;
    height: 70px;
    border-radius: 10px;
    overflow: hidden;
    flex-shrink: 0;
}

.recent-post-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.recent-post-info a {
    text-decoration: none;
    transition: color 0.3s ease;
}

.recent-post-info a:hover {
    color: var(--primary-blue);
}

.contact-item i {
    font-size: 18px;
    width: 20px;
    text-align: center;
    color: #cb2027; /* Red from image logo accents */
}

.contact-phone {
    font-weight: 400;
}
.single-list li i{
        font-size: 17px;
    margin-top: 6px;
}


/* List Styling with Font Awesome Icons */
.post-body ul {
    list-style: none;
    padding-left: 0;
    margin-bottom: 30px;
}

.post-body ul li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.post-body ul li::before {
    content: "\f058"; /* Font Awesome circle-check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 2px;
    color: var(--primary-blue);
    font-size: 18px;
}


/* Responsive adjustments */
@media (max-width: 1240px) {
.post-header h1 {
    font-size: 28px;
}
}
@media (max-width: 991px) {
    .post-grid {
        grid-template-columns: 1fr;
    }
    .post-featured-image {
        height: 300px;
    }
    .post-footer {
        padding-top: 30px;
    }
    .post-share {
        flex-direction: column;
        gap: 15px;
       
        align-items: flex-start;
    }
    .apply-cta-box {
    margin-top: 35px !important;
}
}
@media (max-width: 600px) {
.post-header h1 {
    font-size: 22px;
    margin-bottom: 10px;
}
.post-header {
    margin-bottom: 20px;
}
 .post-featured-image {
        height: 250px;
        margin-bottom: 25px;
    }
    .post-sidebar {
    gap: 25px;
}
.apply-cta-box {
    margin-top: 25px !important;
}
.post-featured-image img{
    height:250px;
    object-fit:cover;
    
}
.post-tag {
    font-size: 13px;
}
.post-date {
    font-size: 13px;
}
.recent-post-item:last-child{
    margin-bottom: 15px;
}
.sidebar-widget {
    padding: 20px;
    border-radius: 20px;
}
.post-body blockquote {
    margin: 20px 0;
    padding: 20px;
    font-size: 18px;
    line-height: 32px;
}
 .post-footer {
        padding-top: 20px;
    }
    .post-navigation {
    margin-top: 30px;
}
}