* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Lato", sans-serif;
    color: #000000;
}

body {
    font-family: "Lato", sans-serif;
    font-size: var(--font-base);
    line-height: var(--lh-relaxed);
    color: #000000;
    background-color: #fff;
}

a {
    color: var(--color-link);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

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


.main {
    padding: var(--sp-xs) 0 0;
}

.article-container {
    max-width: 1274px;
    margin: 0 auto;
    padding: 0 var(--sp-md);
}

.category-label {
    display: inline-block;
    font-size: var(--font-sm);
    color: #666;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.article-title {
    font-size: var(--font-3xl);
    font-weight: var(--fw-black);
    line-height: var(--lh-snug);
    color: #000000;
    margin-bottom: var(--sp-xs);
}

.article-subtitle {
    font-size: var(--font-lg);
    font-weight: var(--fw-normal);
    color: #000000;
    margin-top: var(--sp-xs);
    margin-bottom: var(--sp-xs);
}

.author-info {
    display: flex;
    align-items: center;
    gap: var(--sp-xs);
    margin: 15px 0 10px 0;
    flex-wrap: wrap;
}

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

.author-name {
    font-weight: var(--fw-medium);
    color: #1a1a1a;
}

.publish-date {
    color: #666;
    font-size: var(--font-sm);
}

.hero-image {
    width: 100%;
    border-radius: var(--radius-sm);
}

.content-image {
    width: 100%;
    border-radius: var(--radius-sm);
    margin: 5px 0;
}

.editorial-notice {
    font-size: var(--font-sm);
    color: #666;
    line-height: var(--lh-normal);
    margin-top: var(--sp-sm);
    margin-bottom: var(--sp-sm);
}

p {
    font-size: var(--font-base);
    line-height: var(--lh-relaxed);
    margin-top: var(--sp-sm);
    margin-bottom: var(--sp-sm);
}

ul {
    margin-bottom: var(--sp-sm);
    padding-left: var(--sp-xl);
}

li {
    font-size: var(--font-base);
    line-height: var(--lh-relaxed);
    margin-bottom: var(--sp-xs);
}

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

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

h2.section-title {
    font-size: var(--font-2xl);
    font-weight: var(--fw-black);
    line-height: var(--lh-normal);
    color: #000000;
    margin-top: var(--sp-lg);
    margin-bottom: var(--sp-xs);
}

h3 {
    font-size: var(--font-lg);
    font-weight: var(--fw-strong);
    line-height: var(--lh-snug);
    color: #000000;
    margin-top: var(--sp-lg);
    margin-bottom: var(--sp-xs);
}

.product-title {
    margin-top: var(--sp-xl);
}

.product-image {
    width: 100%;
    border-radius: var(--radius-sm);
    margin-bottom: var(--sp-md);
}

.pros-cons-box {
    border: 1px solid black;
    border-radius: 0;
    padding: var(--sp-md);
    margin: 25px 0;
    box-shadow: 10px 10px 5px 9px rgba(113, 212, 88, 0.9);
}

.pros-cons-box .bold {
    display: block;
    margin-bottom: var(--sp-xs);
}

.pros-cons-box ul {
    margin-bottom: var(--sp-sm);
    padding-left: var(--sp-xl);
}

.pros-cons-box li {
    margin-bottom: var(--sp-xs);
}

.cta-button {
    display: block;
    width: 100%;
    background: rgb(0, 0, 0);
    color: #fff;
    text-align: center;
    padding: var(--sp-md) var(--sp-md);
    border-radius: var(--radius-full);
    font-weight: var(--fw-strong);
    font-size: var(--font-base);
    line-height: var(--lh-loose);
    text-decoration: none;
    margin: 25px 0;
    transition: background 0.2s ease;
}

.cta-button:hover {
    background: #333;
    text-decoration: none;
}

.sources {
    margin-top: var(--sp-lg);
    margin-bottom: var(--sp-lg);
    border: 1px solid #ddd;
    border-radius: var(--radius-sm);
}

.sources summary {
    font-size: var(--font-xl);
    font-weight: var(--fw-black);
    line-height: var(--lh-snug);
    padding: var(--sp-sm) var(--sp-md);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.sources summary::-webkit-details-marker {
    display: none;
}

.sources summary::after {
    content: "+";
    font-size: var(--font-xl);
    font-weight: var(--fw-strong);
    flex-shrink: 0;
    margin-left: var(--sp-sm);
}

.sources[open] summary::after {
    content: "\2212";
}

.sources-list {
    padding: 0 var(--sp-md) var(--sp-md);
}

.sources-list p {
    font-size: var(--font-sm);
    line-height: var(--lh-normal);
    color: #666;
    margin-top: 0;
    margin-bottom: var(--sp-xs);
}

.header {
    padding: var(--sp-xs);
    background: #fff;
}

.header-container {
    max-width: none;
    margin: 0;
    padding: 0;
}

.logo img {
    padding: var(--sp-xs);
    max-width: 180px;
}

.footer {
    background: rgb(35, 34, 34);
    color: #fff;
    padding: var(--sp-md);
}

.footer-container {
    max-width: 1274px;
    margin: 0 auto;
    padding: var(--sp-lg) 0;
}

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

.footer-logo img {
    height: auto;
    max-width: 300px;
}

.footer-links-right {
    display: flex;
    gap: var(--sp-md);
}

.footer-links-right a {
    color: var(--color-text-muted);
    font-size: var(--font-xs);
    font-weight: var(--fw-normal);
    text-transform: uppercase;
    letter-spacing: normal;
    text-decoration: none;
}

.footer-links-right a:hover {
    color: var(--clr-white);
    text-decoration: none;
}

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

.social-icons a {
    color: var(--color-text-muted);
    transition: color 0.2s ease;
}

.social-icons a:hover {
    color: var(--clr-white);
}

.social-icons svg path {
    fill: var(--color-text-muted);
}

.social-icons a:hover svg path {
    fill: var(--clr-white);
}

@media (max-width: 767px) {
    body {
        padding-bottom: var(--sp-4xl);
    }
}

@media (min-width: 768px) {

    .cta-button {
        font-size: var(--font-lg);
    }

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

}
