/* Article Page Styles - UmzugProfis24 */

/* Article Header */
header {
    background: white;
    border-bottom: 1px solid #e5e7eb;
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 100;
}

header .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

header .logo a {
    color: #00a887;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: color 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

header .logo a::before {
    content: "←";
    font-size: 1.2rem;
}

header .logo a:hover {
    color: #008c6f;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

header nav a {
    color: #00a887;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    padding: 10px;
}

header nav a:hover {
    color: #008c6f;
    text-decoration: underline;
}

/* Main Container */
main {
    background: #f9fafb;
    min-height: 100vh;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

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

/* Article */
.article {
    background: white;
    border-radius: 20px;
    padding: 50px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.article h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e3a52;
    line-height: 1.2;
    margin-bottom: 25px;
}

/* Meta Information */
.meta {
    display: flex;
    gap: 20px;
    align-items: center;
    padding: 20px 0;
    border-bottom: 1px solid #e5e7eb;
    margin-bottom: 30px;
    color: #64748b;
    font-size: 0.95rem;
}

.meta .author {
    font-weight: 500;
    color: #475569;
}

.meta .author::before {
    content: "✍️";
    margin-right: 8px;
}

.meta .date {
    font-size: 0.9rem;
}

.meta .date::before {
    content: "📅";
    margin-right: 8px;
}

/* Featured Image */
.featured-image {
    margin: 30px 0;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.featured-image figcaption {
    padding: 15px;
    background: #f8fafc;
    color: #64748b;
    font-size: 0.9rem;
    text-align: center;
    font-style: italic;
}

/* Article Intro */
.article-intro {
    font-size: 1.25rem;
    line-height: 1.7;
    color: #475569;
    margin: 30px 0;
    padding: 25px;
    background: #f0fdf4;
    border-left: 4px solid #00a887;
    border-radius: 8px;
}

.article-intro p {
    margin: 0;
}

/* Article Content */
.article-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #374151;
}

.article-content h2 {
    font-size: 2rem;
    font-weight: 600;
    color: #1e3a52;
    margin: 40px 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #e5e7eb;
}

.article-content h3 {
    font-size: 1.5rem;
    font-weight: 600;
    color: #334155;
    margin: 30px 0 15px;
}

.article-content p {
    margin: 20px 0;
}

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

.article-content li {
    margin: 10px 0;
    line-height: 1.7;
}

.article-content ul li::marker {
    color: #00a887;
}

.article-content blockquote {
    margin: 30px 0;
    padding: 20px 30px;
    background: #f8fafc;
    border-left: 4px solid #00a887;
    border-radius: 8px;
    font-style: italic;
    color: #475569;
}

.article-content strong {
    font-weight: 600;
    color: #1e3a52;
}

.article-content em {
    font-style: italic;
    color: #475569;
}

.article-content a {
    color: #00a887;
    text-decoration: none;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: all 0.3s ease;
}

.article-content a:hover {
    border-bottom-color: #00a887;
}

.article-content code {
    background: #f3f4f6;
    padding: 3px 8px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
    font-size: 0.95em;
    color: #dc2626;
}

.article-content pre {
    background: #1f2937;
    color: #e5e7eb;
    padding: 20px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 25px 0;
}

.article-content pre code {
    background: transparent;
    color: inherit;
    padding: 0;
}

/* Article Conclusion */
.article-conclusion {
    margin-top: 50px;
    padding: 30px;
    background: #f0fdf4;
    border-radius: 12px;
    border: 2px solid #bbf7d0;
}

.article-conclusion h2 {
    font-size: 1.8rem;
    color: #1e3a52;
    margin-bottom: 15px;
}

.article-conclusion p {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #374151;
    margin: 0;
}

.article-conclusion a {
    color: #00a887;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
}

.article-conclusion a:hover {
    border-bottom-color: #00a887;
}

/* Related Posts Section */
.related-posts {
    margin-top: 60px;
    padding: 40px;
    background: white;
    border-radius: 15px;
    box-shadow: 0 3px 20px rgba(0, 0, 0, 0.06);
}

.related-posts h2 {
    font-size: 1.8rem;
    font-weight: 600;
    color: #1e3a52;
    margin-bottom: 30px;
    text-align: center;
}

.related-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 25px;
}

.related-post {
    padding: 20px;
    background: #f8fafc;
    border-radius: 10px;
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.related-post:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 168, 135, 0.15);
    border-color: #00a887;
    background: white;
}

.related-post-link {
    text-decoration: none;
    color: inherit;
}

.related-post h3 {
    font-size: 1.1rem;
    color: #1e3a52;
    line-height: 1.4;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .article-container {
        padding: 40px 20px;
    }

    .article {
        padding: 40px;
    }
}

@media (max-width: 768px) {
    header .container {
        padding: 0 15px;
    }

    header .logo a {
        font-size: 1rem;
    }

    header .logo a::before {
        font-size: 1.1rem;
    }

    header nav a {
        font-size: 0.95rem;
    }

    .article-container {
        padding: 30px 15px;
    }

    .article {
        padding: 30px;
        border-radius: 15px;
    }

    .article h1 {
        font-size: 2rem;
    }

    .article-intro {
        font-size: 1.1rem;
        padding: 20px;
    }

    .article-content {
        font-size: 1rem;
    }

    .article-content h2 {
        font-size: 1.6rem;
        margin: 30px 0 15px;
    }

    .article-content h3 {
        font-size: 1.3rem;
        margin: 25px 0 12px;
    }

    .article-conclusion {
        padding: 25px;
    }

    .article-conclusion h2 {
        font-size: 1.5rem;
    }

    .related-posts {
        padding: 30px 20px;
        margin-top: 40px;
    }

    .related-posts-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .meta {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
        nav {
        padding:0;
    }
}

@media (max-width: 480px) {
    header {
        padding: 15px 0;
    }

    header .container {
        padding: 0 12px;
    }

    header .logo a {
        font-size: 0.9rem;
        gap: 5px;
    }

    header .logo a::before {
        font-size: 1rem;
    }

    header nav a {
        font-size: 0.9rem;
    }

    .article-container {
        padding: 20px 10px;
    }

    .article {
        padding: 25px 20px;
        border-radius: 12px;
    }

    .article h1 {
        font-size: 1.7rem;
        margin-bottom: 20px;
    }

    .article-intro {
        font-size: 1rem;
        padding: 18px;
        margin: 25px 0;
    }

    .article-content {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .article-content h2 {
        font-size: 1.4rem;
    }

    .article-content h3 {
        font-size: 1.2rem;
    }

    .article-content ul,
    .article-content ol {
        padding-left: 20px;
    }

    .article-content blockquote {
        padding: 15px 20px;
        margin: 20px 0;
    }

    .article-conclusion {
        padding: 20px;
        margin-top: 35px;
    }

    .article-conclusion h2 {
        font-size: 1.3rem;
    }

    .article-conclusion p {
        font-size: 1rem;
    }

    .related-posts {
        padding: 25px 15px;
        margin-top: 35px;
    }

    .related-posts h2 {
        font-size: 1.5rem;
        margin-bottom: 20px;
    }

    .related-post {
        padding: 15px;
    }

    .featured-image {
        margin: 20px -20px;
        border-radius: 0;
    }

    .featured-image figcaption {
        padding: 12px;
        font-size: 0.85rem;
    }
        nav {
        padding:0;
    }
}

@media (max-width: 375px) {
    header {
        padding: 12px 0;
    }

    nav {
        padding:0;
    }

    header .container {
        padding: 0 10px;
    }

    header .logo a {
        font-size: 0.85rem;
        gap: 4px;
        font-weight: 500;
    }

    header .logo a::before {
        font-size: 0.9rem;
    }

    header nav a {
        font-size: 0.85rem;
    }

    .article-container {
        padding: 15px 8px;
    }

    .article {
        padding: 20px 15px;
        border-radius: 10px;
    }

    .article h1 {
        font-size: 1.5rem;
        margin-bottom: 18px;
    }

    .meta {
        padding: 15px 0;
        font-size: 0.85rem;
    }

    .article-intro {
        font-size: 0.95rem;
        padding: 15px;
        margin: 20px 0;
    }

    .article-content {
        font-size: 0.9rem;
        line-height: 1.6;
    }

    .article-content h2 {
        font-size: 1.3rem;
        margin: 25px 0 12px;
    }

    .article-content h3 {
        font-size: 1.1rem;
        margin: 20px 0 10px;
    }

    .article-content p {
        margin: 15px 0;
    }

    .article-content blockquote {
        padding: 12px 15px;
    }

    .article-conclusion {
        padding: 18px;
        margin-top: 30px;
    }

    .article-conclusion h2 {
        font-size: 1.2rem;
        margin-bottom: 12px;
    }

    .article-conclusion p {
        font-size: 0.95rem;
    }

    .related-posts {
        padding: 20px 12px;
        margin-top: 30px;
        border-radius: 12px;
    }

    .related-posts h2 {
        font-size: 1.3rem;
        margin-bottom: 18px;
    }

    .related-posts-grid {
        gap: 15px;
    }

    .related-post {
        padding: 12px;
        border-radius: 8px;
    }

    .related-post h3 {
        font-size: 1rem;
    }

    .featured-image {
        margin: 15px -15px;
    }

    .featured-image figcaption {
        padding: 10px;
        font-size: 0.8rem;
    }

    header .container {
        padding: 0 15px;
    }

    header .logo a {
        font-size: 1rem;
    }
}