/* ======================================================== ARTICLE PAGE ======================================================== */

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 0px 24px; /* Exakt gleicher Abstand wie im Main-Grid */
}

.article-page {
    width: 100%;
}

/* Header-Box im Card-Style */
.article-header {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding: 20px; /* Analog zu .card-body */
    margin-bottom: 24px; /* Abstand zur Content-Box darunter */
    background: var(--weiss);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05), 0 8px 20px rgba(0, 0, 0, 0.03);
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.article-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    border-radius: 0px; /* Auf 0px angepasst, wie bei den Cards */
    background: var(--rand-dunkel);
}

.article-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.article-image:hover img {
    opacity: 0.6;
    transform: scale(1.2);
}

.article-info {
    display: flex;
    flex-direction: column;
}

.article-category {
    width: max-content;
    padding: 6px 10px;
    margin-bottom: 15px;
    color: var(--weiss);
    background: var(--rot); /* An var(--rot) der Cards angepasst */
    border-radius: 0px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
}

.article-info h1 {
    margin-bottom: 15px;
    color: var(--schwarz);
    font-size: 42px;
    line-height: 1.1;
    text-transform: uppercase;
}

.article-meta {
    margin-bottom: 20px;
    color: var(--schwarz);
    font-size: 12px;
    text-transform: uppercase;
}

.article-intro {
    color: var(--text);
    font-family: Arial, sans-serif;
    font-size: 17px;
    line-height: 1.7;
}

/* Content-Box im Card-Style */
.article-content {
    width: 100%;
    margin-top: 0px;
    padding: 20px;
    color: var(--grau);
    background: var(--weiss);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 0px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05), 0 8px 20px rgba(0, 0, 0, 0.03);
    font-size: 1rem;
    line-height: 1.8;
}

.article-content h2 {
    margin: 30px 0 15px;
    color: var(--grau);
    font-size: 28px;
    text-transform: uppercase;
}

.article-content p {
    margin-bottom: 20px;
    color: var(--text);
    font-family: Arial, sans-serif;
    font-size: 17px;
    line-height: 1.8;
    text-align: justify;
}

.article-content h3 {
    margin: 2rem 0 0.8rem;
    color: var(--schwarz);
}

.article-content ul {
    margin: 1rem 0 1.5rem 1.5rem;
}

.article-content li {
    margin-bottom: 0.5rem;
}

.article-float-image {
    float: left;
    width: 420px;
    max-width: 45%;
    margin: 0 30px 20px 0;
    border-radius: 0px;
    overflow: hidden;
}

.article-content::after {
    content: "";
    display: block;
    clear: both;
}

/* Galerie */
.article-gallery {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 30px 0;
}

.article-gallery-item {
    height: 280px;
    overflow: hidden;
    border-radius: 0px;
}

.article-gallery img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s ease;
}

.article-gallery img:hover {
    transform: scale(1.03);
}

/* Box */
.article-box {
    margin: 30px 0;
    padding: 25px;
    background: var(--flaeche-hell);
    border-left: 5px solid var(--akzent);
    border-radius: 0px;
    font-size: 18px;
}

/* Autor */
.article-author {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid var(--rand-dunkel);
}

.article-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.article-author strong {
    color: var(--schwarz);
}


