* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Open Sans", sans-serif;
    font-size: var(--font-base);
    line-height: var(--lh-normal);
    color: #000;
    background-color: #fff;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

img {
    max-width: 100%;
    height: auto;
}

.bold {
    font-weight: var(--fw-bold);
}

.header {
    background: #f2f4f7;
}

.header-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--sp-sm) var(--sp-md);
}

.logo {
    display: flex;
    align-items: center;
    gap: var(--sp-xs);
    text-decoration: none;
}

.logo:hover {
    text-decoration: none;
}

.logo-icon {
    width: 50px;
    height: auto;
}

.logo-text-group {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.logo-apotheken {
    height: 14px;
    width: auto;
}

.logo-gesundheitstipps {
    height: 14px;
    width: auto;
}

.logo-tagline {
    height: 7px;
    width: auto;
}

.main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--sp-md);
}

.article {
    max-width: 801px;
    margin: 0 auto;
    padding-top: var(--sp-lg);
    padding-bottom: var(--sp-lg);
}

.article-title {
    font-size: var(--font-3xl);
    font-weight: var(--fw-bold);
    line-height: var(--lh-snug);
    letter-spacing: 0.02em;
    margin-bottom: var(--sp-sm);
}

.article-subtitle {
    font-size: var(--font-md);
    font-weight: var(--fw-normal);
    line-height: var(--lh-normal);
    letter-spacing: 0.02em;
    margin-bottom: var(--sp-md);
}

.author-bar {
    display: flex;
    align-items: center;
    gap: var(--sp-sm);
    background: #20274e;
    border-left: 4px solid #5cb7b3;
    padding: var(--sp-xs) var(--sp-sm);
    margin-bottom: var(--sp-md);
}

.author-avatar {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-full);
    object-fit: cover;
    flex-shrink: 0;
}

.author-name {
    color: #fff;
    font-size: var(--font-base);
    font-weight: var(--fw-bold);
    letter-spacing: 0.02em;
    line-height: var(--lh-normal);
}

.author-date {
    color: #fff;
    font-size: var(--font-base);
    font-weight: var(--fw-normal);
    letter-spacing: 0.02em;
}

.content-image {
    width: 100%;
    border-radius: var(--radius-xl);
    margin-top: 0;
    margin-bottom: var(--sp-sm);
}

p {
    font-size: var(--font-base);
    font-weight: var(--fw-normal);
    line-height: var(--lh-normal);
    letter-spacing: 0.02em;
    margin-bottom: var(--sp-sm);
}

.section-title {
    font-size: var(--font-2xl);
    font-weight: var(--fw-bold);
    line-height: var(--lh-snug);
    letter-spacing: 0.02em;
    margin-top: var(--sp-lg);
    margin-bottom: var(--sp-sm);
}

.callout-red {
    background: #c62e2e;
    border: 3px solid #471717;
    padding: var(--sp-sm) var(--sp-md);
    margin-top: var(--sp-sm);
    margin-bottom: var(--sp-md);
}

.callout-red p {
    color: #fff;
    font-size: var(--font-xl);
    font-weight: var(--fw-bold);
    text-align: center;
    line-height: var(--lh-snug);
    margin-bottom: 0;
}

.callout-yellow {
    background: #f3c370;
    border: 3px solid #795008;
    border-radius: var(--radius-xl);
    padding: var(--sp-sm) var(--sp-md);
    margin-top: var(--sp-sm);
    margin-bottom: var(--sp-md);
}

.callout-yellow p {
    margin-bottom: var(--sp-sm);
}

.callout-yellow p:last-child {
    margin-bottom: 0;
}

.callout-yellow ul {
    list-style: disc;
    padding-left: var(--sp-md);
    margin-bottom: 0;
}

.callout-yellow li {
    font-size: var(--font-base);
    line-height: var(--lh-normal);
    margin-bottom: var(--sp-xs);
}

.callout-yellow li:last-child {
    margin-bottom: 0;
}

.callout-gray {
    background: #ececec;
    border: 3px solid #8a8a8a;
    border-radius: var(--radius-xl);
    padding: var(--sp-sm) var(--sp-md);
    margin-top: var(--sp-sm);
    margin-bottom: var(--sp-md);
}

.callout-gray p {
    margin-bottom: var(--sp-sm);
}

.callout-gray p:last-child {
    margin-bottom: 0;
}

.callout-green {
    background: #cae1cd;
    border: 4px solid #1c4621;
    border-radius: var(--radius-xl);
    padding: var(--sp-sm) var(--sp-md);
    margin-top: var(--sp-sm);
    margin-bottom: var(--sp-md);
}

.callout-green p {
    margin-bottom: var(--sp-sm);
}

.callout-green p:last-child {
    margin-bottom: 0;
}

.info-box {
    background: #f3c370;
    border: 3px solid #795008;
    border-radius: var(--radius-xl);
    padding: var(--sp-md);
    margin-top: var(--sp-md);
    margin-bottom: var(--sp-md);
}

.info-box-title {
    font-size: var(--font-xl);
    font-weight: var(--fw-bold);
    margin-bottom: var(--sp-sm);
    letter-spacing: 0.02em;
}

.info-box-item {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-sm);
    margin-bottom: var(--sp-md);
}

.info-box-item:last-child {
    margin-bottom: 0;
}

.info-box-icon {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
}

.info-box-num {
    width: 43px;
    height: 43px;
    background: #fff;
    border: 2px solid #795008;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--font-xl);
    font-weight: var(--fw-bold);
    line-height: var(--lh-none);
    flex-shrink: 0;
}

.info-box-item-title {
    font-size: var(--font-lg);
    font-weight: var(--fw-bold);
    line-height: var(--lh-snug);
    letter-spacing: 0.02em;
    margin-bottom: 4px;
}

.info-box-item p {
    margin-bottom: 0;
}

ul.content-list {
    list-style: disc;
    padding-left: var(--sp-md);
    margin-bottom: var(--sp-sm);
}

ul.content-list li {
    font-size: var(--font-base);
    line-height: var(--lh-normal);
    letter-spacing: 0.02em;
    margin-bottom: var(--sp-xs);
}

ul.content-list li:last-child {
    margin-bottom: 0;
}

ol {
    display: flex;
    flex-direction: column;
    gap: var(--sp-xs);
    margin-bottom: var(--sp-sm);
    padding-left: var(--sp-md);
}

li {
    font-size: var(--font-base);
    font-weight: var(--fw-normal);
    line-height: var(--lh-normal);
    letter-spacing: 0.02em;
}

.ingredient-list {
    display: flex;
    flex-direction: column;
    gap: var(--sp-sm);
    margin-top: var(--sp-md);
    margin-bottom: var(--sp-md);
}

.ingredient-item {
    display: flex;
    align-items: flex-start;
    gap: var(--sp-sm);
}

.ingredient-icon {
    width: 55px;
    height: 55px;
    flex-shrink: 0;
}

.ingredient-item p {
    margin-bottom: 0;
    flex: 1;
}

.ingredient-name {
    font-size: var(--font-base);
    font-weight: var(--fw-bold);
    display: block;
    margin-bottom: 4px;
}

.order-button {
    display: block;
    background: #e6ab05;
    color: #000;
    font-family: "Open Sans", sans-serif;
    font-size: var(--font-xl);
    font-weight: var(--fw-bold);
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    padding: var(--sp-sm) var(--sp-md);
    border-radius: var(--radius-full);
    border: 1px solid #000;
    margin-top: var(--sp-md);
    margin-bottom: var(--sp-md);
    margin-left: auto;
    margin-right: auto;
    transition: background 0.3s ease;
    line-height: var(--lh-tight);
}

.order-button:hover {
    background: #d49c04;
    text-decoration: none;
}

.pros-cons-box {
    background: #f9fbfd;
    border: 4px solid #d8e3ee;
    border-radius: var(--radius-xl);
    padding: var(--sp-md);
    margin-top: var(--sp-md);
    margin-bottom: var(--sp-md);
}

.pros-cons-title {
    font-size: var(--font-lg);
    font-weight: var(--fw-bold);
    letter-spacing: 0.02em;
    margin-bottom: var(--sp-xs);
}

.pros-list,
.cons-list {
    list-style: none;
    padding-left: 0;
    margin-bottom: var(--sp-sm);
}

.pros-list li,
.cons-list li {
    font-size: var(--font-base);
    line-height: var(--lh-loose);
    letter-spacing: 0.02em;
}

.accordion-section {
    margin-top: var(--sp-md);
}

.accordion-item {
    border-top: 1px solid #000;
}

.accordion-item:last-child {
    border-bottom: 1px solid #000;
}

.accordion-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--sp-xs) var(--sp-sm);
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    font-family: "Open Sans", sans-serif;
    font-size: var(--font-base);
    font-weight: var(--fw-normal);
    color: #000;
    text-align: left;
}

.accordion-icon {
    font-size: var(--font-xl);
    line-height: var(--lh-none);
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.accordion-body {
    display: none;
    padding: 0 var(--sp-sm) var(--sp-sm);
}

.accordion-body.open {
    display: block;
}

.accordion-body a {
    color: rgb(65, 105, 225);
    word-break: break-all;
    display: block;
    margin-bottom: var(--sp-xs);
}

.accordion-body p {
    font-size: var(--font-sm);
    line-height: var(--lh-normal);
}

.page-footer {
    background: #232222;
    color: #fff;
    padding: var(--sp-lg) var(--sp-md);
}

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

.footer-top {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: var(--sp-md);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--sp-xs);
    text-decoration: none;
}

.footer-logo:hover {
    text-decoration: none;
}

.footer-logo .logo-icon {
    filter: brightness(0) invert(1);
}

.footer-logo .logo-apotheken {
    filter: brightness(0) invert(1);
}

.footer-logo .logo-gesundheitstipps {
    filter: brightness(0) invert(1);
}

.footer-logo .logo-tagline {
    filter: brightness(0) invert(1);
}

.footer-nav {
    display: flex;
    align-items: center;
    gap: var(--sp-md);
}

.footer-nav a {
    color: #aaa;
    font-size: var(--font-sm);
    font-weight: var(--fw-medium);
    text-transform: uppercase;
    text-decoration: none;
    letter-spacing: 0.5px;
}

.footer-nav a:hover {
    color: #fff;
    text-decoration: none;
}

.social-icons {
    display: flex;
    gap: var(--sp-sm);
}

.social-icons a {
    color: #aaa;
    transition: color 0.2s ease;
}

.social-icons a:hover {
    color: #fff;
}

.social-icons img {
    width: 32px;
    height: 32px;
    filter: brightness(0) invert(0.7);
    transition: filter 0.2s ease;
}

.social-icons a:hover img {
    filter: brightness(0) invert(1);
}

.footer-bottom {
    margin-top: var(--sp-lg);
}

.footer-bottom p {
    color: #fff;
    font-size: var(--font-sm);
    font-weight: var(--fw-bold);
    margin-bottom: 0;
}

@media (min-width: 768px) {
    .info-box-icon {
        width: 70px;
        height: 70px;
    }

    .ingredient-icon {
        width: 55px;
        height: 55px;
    }

    .footer-top {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

@media (min-width: 1024px) {
    .article-title {
        font-size: var(--font-4xl);
    }
}
