/*
Theme Name: Hello Elementor Child
Template: hello-elementor
Version: 1.0
*/

.entry-title {
    margin-bottom: 20px;
}

.entry-content p {
    line-height: 1.7;
}

.dark-post {
    background-color: #111;
    color: #fff;
}

/* Links */
.dark-post a {
    color: #A41F18;
    text-decoration: none;
}

.dark-post a:hover {
    text-decoration: underline;
}

.post-hero {
    position: relative;
    min-height: 60vh;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: flex-end;
}

.post-hero-overlay {
    width: 100%;
    padding: 60px 20px;
    background: linear-gradient(
        to top,
        rgba(0,0,0,0.85),
        rgba(0,0,0,0.3),
        rgba(0,0,0,0)
    );
}

.post-title {
    max-width: 1100px;
    margin: 0 auto;
    font-size: clamp(2rem, 5vw, 3.5rem);
    line-height: 1.1;
}

.post-article {
    max-width: 800px;
    margin: 0 auto;
    padding: 60px 20px 100px;
}

.post-content p {
    line-height: 1.75;
    margin-bottom: 1.5em;
    color: #eee;
}

.post-content h2,
.post-content h3,
.post-content h4 {
    margin-top: 2.5em;
    margin-bottom: 0.8em;
}

.post-content img {
    max-width: 100%;
    height: auto;
    margin: 2em 0;
    border-radius: 4px;
}

@media (max-width: 768px) {
    .post-hero {
        min-height: 45vh;
    }

    .post-hero-overlay {
        padding: 40px 16px;
    }

    .post-article {
        padding: 40px 16px 80px;
    }
}
