/* Modern Single Post Design for Hello Elementor Child Theme */

/* General Layout */
.post-container {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
}

.post-content-area {
    flex: 1;
    min-width: 0;
}

.post-sidebar {
    width: 350px;
    flex-shrink: 0;
}

/* Hero Section */
.post-hero {
    padding:150px 0;
    position: relative;
    height: calc (600px - 300px);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.7) 100%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.post-meta {
    margin-bottom: 20px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.post-meta span {
    margin: 0 10px;
}

.entry-title {
    font-size: 48px ! important;
    color: white !important;
}

.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
}

.btn {
    padding: 12px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
    color:white!important;
}

.btn-primary {
    background-color: #000;
    color: #fff;
    border: 2px solid #000;
}

.btn-primary:hover {
    background-color: #627B3F;
    border-color: #627B3F;
    color: #fff;
}

.btn-secondary {
    background-color: white;
    color: #121311!important;
    border: 2px solid #fff;
}

.btn-secondary:hover {
    background-color: #121311;
    color: white!important;
    border-color: #121311;
}

/* Sidebar Widgets */
.sidebar-widget {
    background: #f9f9f9;
    padding: 30px;
    border-radius: 15px;
    margin-bottom: 30px;
}

.widget-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #eee;
}

.sidebar-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-widget ul li {
    margin-bottom: 15px;
}

.sidebar-widget ul li a {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    transition: color 0.3s ease;
}

.sidebar-widget ul li a:hover {
    color: #000;
}

/* Related Posts Widget */
.related-posts ul li a {
    display: flex;
    align-items: center;
    gap: 15px;
}

.related-thumb {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 10px;
    overflow: hidden;
}

.related-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.related-title {
    font-size: 16px;
    line-height: 1.4;
}

/* Tag Cloud */
.tag-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag-link {
    background: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 13px;
    color: #666;
    text-decoration: none;
    border: 1px solid #eee;
    transition: all 0.3s ease;
}

.tag-link:hover {
    background: #000;
    color: #fff;
    border-color: #000;
}

/* Responsive Design */
@media (max-width: 991px) {
    .post-sidebar {
        width: 100%;
    }
    .entry-title {
        font-size: 36px;
    }
    .post-hero {
        padding:100px 0;
        height:auto;
    }
}

@media (max-width: 767px) {
    .hero-actions {
        flex-direction: column;
    }
    .entry-title {
        font-size: 28px;
    }
}