:root {
    --brand-blue: #005383;
    --brand-blue-light: #079bd3;
    --headline: #202a3f;
    --text: #111111;
    --muted: #666666;
    --line: #d0d0d0;
    --soft-line: #ecf0f1;
    --soft-bg: #f1f1f1;
    --danger: #d0011b;
    --accent: #f7b318;
    --offer: #f45116;
    --page-width: 1100px;
    --content-width: 780px;
    --right-width: 320px;
    --social-width: 100px;
    --article-track: 680px;
    --article-width: 620px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}
a{
    text-decoration: none;
    color: inherit;
}
body {
    margin: 0;
    overflow-x: hidden;
    background: #ffffff;
    color: var(--text);
    font-family: "Work Sans", Arial, Helvetica, sans-serif;
    font-size: 16px;
    line-height: 1.5;
}

img,
video {
    display: block;
    max-width: 100%;
}

button,
input,
select {
    font: inherit;
}

button {
    cursor: pointer;
}

h1,
h2,
h3,
h4,
p,
figure,
ol {
    margin-top: 0;
}

.page-container {
    width: min(calc(100% - 32px), var(--page-width));
    margin-right: auto;
    margin-left: auto;
}

.site-header {
    background: #ffffff;
}

.header-shell {
    width: min(calc(100% - 30px), 1100px);
    margin-right: auto;
    margin-left: auto;
}

.header-row {
    border-bottom: 1px solid var(--line);
}

.header-content {
    display: flex;
    min-height: 69px;
    align-items: center;
}

.menu-mark {
    display: flex;
    width: 70px;
    min-height: 69px;
    flex: 0 0 70px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    border-right: 1px solid var(--line);
}

.menu-mark span {
    width: 15px;
    height: 2px;
    background: #111111;
}

.site-logo {
    width: 350px;
    height: 42px;
    margin-left: 17px;
    flex: 0 1 350px;
    object-fit: contain;
    object-position: left center;
}

.header-nav {
    display: flex;
    margin-left: 24px;
    align-items: center;
    gap: 18px;
    color: #1c1c1c;
    font-size: 14px;
    font-weight: 500;
    text-transform: uppercase;
}

.header-nav span {
    white-space: nowrap;
}

.login-faux {
    display: flex;
    margin-left: auto;
    align-items: center;
    gap: 9px;
    color: #111111;
    font-size: 14px;
    white-space: nowrap;
}

.user-icon {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #717171;
}

.user-icon::before {
    position: absolute;
    top: 3px;
    left: 5px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
    content: "";
}

.user-icon::after {
    position: absolute;
    right: 3px;
    bottom: 2px;
    left: 3px;
    height: 5px;
    border-radius: 8px 8px 5px 5px;
    background: #ffffff;
    content: "";
}

.tools-content {
    display: grid;
    min-height: 58px;
    grid-template-columns: minmax(0, 1fr) 177px 200px;
    align-items: center;
    border-bottom: 1px solid var(--line);
}

.search-faux {
    display: flex;
    height: 100%;
    padding: 0 20px;
    align-items: center;
    gap: 13px;
    color: #8a8a8a;
    font-size: 13px;
    font-weight: 600;
}

.search-icon {
    position: relative;
    width: 15px;
    height: 15px;
    flex: 0 0 15px;
    border: 2px solid var(--headline);
    border-radius: 50%;
}

.search-icon::after {
    position: absolute;
    right: -5px;
    bottom: -4px;
    width: 6px;
    height: 2px;
    transform: rotate(45deg);
    background: var(--headline);
    content: "";
}

.print-edition,
.subscribe-area {
    display: flex;
    height: 36px;
    align-items: center;
    justify-content: center;
    border-left: 1px solid var(--line);
}

.print-edition img {
    width: 153px;
    height: 36px;
    object-fit: contain;
}

.subscribe-area {
    position: relative;
}

.subscribe-tip {
    position: absolute;
    top: -27px;
    left: 50%;
    min-width: 232px;
    padding: 5px 11px;
    transform: translateX(-50%);
    border-radius: 6px;
    background: #f7ac08;
    color: #111111;
    font-size: 13px;
    font-weight: 700;
    line-height: 16px;
    text-align: center;
    white-space: nowrap;
}

.subscribe-tip::after {
    position: absolute;
    right: 46%;
    bottom: -7px;
    width: 0;
    height: 0;
    border-top: 7px solid #f7ac08;
    border-right: 7px solid transparent;
    border-left: 7px solid transparent;
    content: "";
}

.subscribe-button {
    display: inline-flex;
    width: 168px;
    min-height: 35px;
    align-items: center;
    justify-content: center;
    border-radius: 3px;
    background: #006696;
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
}

.story-header {
    margin-top: 50px;
    margin-bottom: 20px;
    color: #000000;
}

.preheadline {
    margin-bottom: 12px;
    color: var(--brand-blue);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.4px;
    line-height: 20px;
    text-transform: uppercase;
}

.story-header h1 {
    margin-bottom: 12px;
    color: var(--headline);
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.2px;
    line-height: 46px;
}

.story-header h2 {
    margin-bottom: 0;
    color: #000000;
    font-size: 22px;
    font-weight: 400;
    letter-spacing: -0.26px;
    line-height: 26px;
}

.hero-figure {
    margin-bottom: 0;
}

.hero-figure img {
    width: 1100px;
    aspect-ratio: 1100 / 666;
    object-fit: cover;
}

.story-content {
    margin-top: 26px;
}

.detail-wrapper {
    display: flex;
    width: 100%;
    justify-content: space-between;
}

.content-story {
    width: var(--content-width);
    flex: 0 0 var(--content-width);
}

.author-bar {
    display: flex;
    min-height: 126px;
    align-items: center;
    border-bottom: 1px solid var(--soft-line);
    color: #333333;
}

.author-avatar {
    width: 58px;
    height: 58px;
    margin-right: 14px;
    border-radius: 50%;
    object-fit: cover;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    color: var(--brand-blue);
    font-size: 16px;
    line-height: 21px;
}

.author-info span,
.publication-info span {
    color: var(--muted);
    font-size: 12px;
    line-height: 18px;
}

.publication-info {
    display: flex;
    margin-left: 26px;
    flex-direction: column;
}

.left-column {
    width: var(--content-width);
    max-width: var(--content-width);
    background: #ffffff;
}

.article-subgrid {
    display: grid;
    width: var(--content-width);
    grid-template-columns: var(--social-width) var(--article-track);
}

.social-column {
    display: flex;
    padding-top: 24px;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.social-column span {
    display: inline-flex;
    width: 52px;
    height: 52px;
    align-items: center;
    justify-content: center;
    border: 1px solid #c3c9cd;
    border-radius: 50%;
}

.social-column img {
    width: 24px;
    height: 24px;
    object-fit: contain;
}

.article-column {
    width: var(--article-track);
    padding-top: 20px;
    border-top: 1px solid var(--soft-line);
}

.article-body {
    width: var(--article-width);
    margin-right: 60px;
    font-family: Baufra, Arial, Helvetica, sans-serif;
}

.article-body > p,
.article-body .quote-block p,
.article-body .danger-box p,
.article-body .important-box p {
    margin-bottom: 20px;
    font-size: 18px;
    font-weight: 400;
    line-height: 26px;
}

.article-body > p:first-child::first-letter {
    float: none;
    margin: 0;
    color: inherit;
    font: inherit;
}

.article-body > h2,
.ugc-section > h2 {
    margin: 24px 0 10px;
    padding: 10px 5px;
    color: #666666;
    font-family: "Work Sans", Arial, Helvetica, sans-serif;
    font-size: 21px;
    font-weight: 700;
    line-height: 26px;
}

.article-body strong {
    font-weight: 700;
}

.quote-block {
    margin: 22px 0;
    padding: 16px 20px;
    border-left: 5px solid var(--brand-blue);
    background: #f5f7f8;
}

.quote-block p {
    margin-bottom: 6px;
}

.quote-block cite {
    color: var(--muted);
    font-family: "Work Sans", Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-style: normal;
}

.remedy-grid {
    display: grid;
    margin: 18px 0 22px;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.remedy-card {
    position: relative;
    padding: 18px;
    border-top: 4px solid var(--brand-blue);
    background: #f2f4f5;
}

.remedy-card > span {
    color: #9aa6ad;
    font-family: "Work Sans", Arial, Helvetica, sans-serif;
    font-size: 13px;
    font-weight: 700;
}

.remedy-card h3,
.ingredient-item h3,
.recovery-step h3 {
    margin: 5px 0 7px;
    color: #252525;
    font-family: "Work Sans", Arial, Helvetica, sans-serif;
    font-size: 18px;
    font-weight: 700;
    line-height: 23px;
}

.remedy-card p,
.ingredient-item p,
.recovery-step p {
    margin-bottom: 0;
    font-size: 16px;
    line-height: 24px;
}

.danger-box,
.important-box {
    margin: 22px 0;
    padding: 18px 20px;
    border-top: 1px solid var(--brand-blue);
    border-bottom: 1px solid var(--brand-blue);
    background: #f0f3f5;
}

.danger-box > strong,
.important-box > strong {
    display: block;
    margin-bottom: 5px;
    color: var(--brand-blue);
    font-family: "Work Sans", Arial, Helvetica, sans-serif;
    font-size: 18px;
}

.danger-box p,
.important-box p {
    margin-bottom: 0;
}

.target-list {
    margin: 10px 0 22px;
    padding: 0;
    list-style: none;
}

.target-list li {
    display: grid;
    padding: 12px 0;
    grid-template-columns: 34px 1fr;
    align-items: center;
    gap: 12px;
    border-bottom: 1px solid var(--line);
}

.target-list li > span {
    display: inline-flex;
    width: 30px;
    height: 30px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--brand-blue);
    color: #ffffff;
    font-family: "Work Sans", Arial, Helvetica, sans-serif;
    font-size: 14px;
    font-weight: 700;
}

.target-list p {
    margin-bottom: 0;
    font-size: 17px;
    line-height: 25px;
}

.article-figure {
    width: 100%;
    margin: 24px 0;
}

.article-figure img {
    width: 100%;
    height: auto;
}

.article-figure figcaption {
    margin-top: 7px;
    color: var(--muted);
    font-family: "Work Sans", Arial, Helvetica, sans-serif;
    font-size: 12px;
    line-height: 17px;
}

.ingredient-list {
    margin: 16px 0 24px;
    border-top: 1px solid var(--line);
}

.ingredient-item {
    display: grid;
    padding: 16px 0;
    grid-template-columns: 48px 1fr;
    gap: 12px;
    border-bottom: 1px solid var(--line);
}

.ingredient-number {
    padding-top: 4px;
    color: var(--brand-blue);
    font-family: "Work Sans", Arial, Helvetica, sans-serif;
    font-size: 22px;
    font-weight: 300;
}

.recovery-timeline {
    display: grid;
    margin: 16px 0 22px;
    padding: 0;
    gap: 12px;
    list-style: none;
}

.recovery-step {
    position: relative;
    min-height: 105px;
    padding: 16px 18px 16px 92px;
    border: 1px solid var(--line);
    background: #ffffff;
}

.day-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    display: flex;
    width: 58px;
    height: 68px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: var(--brand-blue);
    color: #ffffff;
    font-family: "Work Sans", Arial, Helvetica, sans-serif;
    font-size: 11px;
    line-height: 15px;
    text-transform: uppercase;
}

.day-badge strong {
    font-size: 25px;
    line-height: 28px;
}

.ugc-section {
    margin: 26px 0 30px;
}

.ugc-section > h2 {
    margin-top: 0;
}

.ugc-player {
    position: relative;
    width: min(100%, 340px);
    margin-right: auto;
    margin-left: auto;
    overflow: hidden;
    background: #0e2029;
    aspect-ratio: 9 / 16;
}

.ugc-player video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ugc-placeholder {
    position: absolute;
    inset: 0;
    display: flex;
    padding: 22px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, rgba(18, 44, 54, 0.05), rgba(18, 44, 54, 0.82));
    color: #ffffff;
    text-align: center;
}

.ugc-placeholder::before {
    display: inline-flex;
    width: 68px;
    height: 68px;
    margin-bottom: 18px;
    align-items: center;
    justify-content: center;
    border: 2px solid #ffffff;
    border-radius: 50%;
    content: "▶";
    font-size: 29px;
    line-height: 1;
    text-indent: 5px;
}

.ugc-placeholder strong {
    font-family: "Work Sans", Arial, Helvetica, sans-serif;
    font-size: 20px;
    line-height: 26px;
}

.ugc-placeholder span {
    margin-top: 8px;
    font-size: 12px;
    line-height: 17px;
}

.ugc-placeholder[hidden] {
    display: none;
}

.order-section {
    margin: 30px 0 24px;
    border: 1px solid #d4d9dc;
    background: #ffffff;
}

.order-header {
    padding: 24px 24px 18px;
    border-top: 6px solid var(--brand-blue);
    text-align: center;
}

.order-label {
    display: block;
    margin-bottom: 5px;
    color: var(--brand-blue);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.7px;
    text-transform: uppercase;
}

.order-header h2 {
    margin-bottom: 7px;
    color: var(--headline);
    font-size: 28px;
    line-height: 34px;
}

.order-header p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 14px;
    line-height: 20px;
}

.order-offer-bar {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    gap: 28px;
    background: #eef5f7;
    color: #4b4b4b;
    font-size: 13px;
}

.order-offer-bar strong {
    color: var(--offer);
}

.order-content {
    display: grid;
    padding: 24px;
    grid-template-columns: 190px minmax(0, 1fr);
    gap: 24px;
}

.order-product {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.order-product img {
    width: 160px;
    height: 160px;
    margin-bottom: 8px;
    object-fit: contain;
}

.order-product > strong {
    color: var(--headline);
    font-size: 20px;
}

.order-product > span {
    color: var(--muted);
    font-size: 12px;
}

.price-line {
    display: flex;
    margin-top: 10px;
    align-items: baseline;
    justify-content: center;
    gap: 10px;
}

.current-price {
    color: var(--offer);
    font-size: 22px;
    font-weight: 700;
}

.old-price {
    color: #777777;
    font-size: 13px;
    text-decoration: line-through;
}

.order-form {
    display: flex;
    flex-direction: column;
}

.order-form label {
    margin: 0 0 5px;
    color: #26343c;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.order-form input {
    width: 100%;
    height: 46px;
    margin-bottom: 12px;
    padding: 0 13px;
    border: 1px solid #c4c8cb;
    border-radius: 0;
    background: #ffffff;
    color: #222222;
}

.order-form input:focus {
    border-color: var(--brand-blue-light);
    outline: 2px solid rgba(7, 155, 211, 0.15);
}

.order-form .field-error {
    border-color: var(--danger);
}

.order-button {
    min-height: 52px;
    border: 0;
    background: var(--brand-blue-light);
    color: #ffffff;
    font-weight: 700;
}

.order-button:hover,
.order-button:focus-visible {
    background: var(--brand-blue);
}

.form-notice,
.form-status {
    margin: 8px 0 0;
    color: #777777;
    font-size: 10px;
    line-height: 15px;
    text-align: center;
}

.form-status {
    min-height: 15px;
    color: var(--danger);
    font-size: 12px;
}

.form-status.success {
    color: #16703c;
}

.article-body > p.legal-note {
    margin: 20px 0 34px;
    padding: 10px 12px;
    border: 1px solid #d8d8d8;
    background: #f5f5f5;
    color: #5d5d5d;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 9px;
    line-height: 13px;
    text-align: center;
    text-transform: uppercase;
}

.right-column {
    display: flex;
    width: var(--right-width);
    min-width: var(--right-width);
    padding: 20px 0 0 20px;
    flex-direction: column;
    border-left: 1px solid var(--soft-line);
}

.opinion-section {
    width: 300px;
    margin-top: 30px;
}

.opinion-section > h2 {
    margin: 0;
    padding-top: 9px;
    border-top: 6px solid var(--brand-blue);
    color: #222222;
    font-size: 28px;
    font-weight: 300;
    letter-spacing: -1.52px;
    line-height: 32px;
}

.opinion-item {
    display: grid;
    min-height: 112px;
    padding: 10px 0;
    grid-template-columns: minmax(0, 1fr) 74px;
    gap: 10px;
    border-top: 1px solid #9b9b9b;
}

.opinion-section > h2 + .opinion-item {
    border-top: 0;
}

.opinion-content h3 {
    margin: 0 0 8px;
    color: var(--danger);
    font-size: 18px;
    font-weight: 400;
    line-height: 21px;
}

.opinion-content h4 {
    margin: 0;
    color: #111111;
    font-size: 20px;
    font-weight: 600;
    letter-spacing: -0.25px;
    line-height: 24px;
}

.opinion-plus {
    display: inline-flex;
    width: 16px;
    height: 16px;
    margin-right: 4px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--accent);
    color: #ffffff;
    font-size: 15px;
    line-height: 16px;
    vertical-align: 1px;
}

.opinion-item > img {
    width: 74px;
    height: 74px;
    margin: auto 0;
    border-radius: 50%;
    object-fit: cover;
}

.most-read-section {
    width: 300px;
    margin-top: 60px;
    margin-bottom: 60px;
}

.most-read-section > h2 {
    margin: 0 0 10px;
    padding: 10px;
    background: var(--brand-blue);
    color: #ffffff;
    font-size: 26px;
    font-weight: 700;
    line-height: 30px;
    text-transform: uppercase;
}

.most-read-item {
    padding-bottom: 20px;
    border-bottom: 1px solid #cccccc;
}

.most-read-item:last-child {
    border-bottom: 0;
}

/* --- Clickable links to order form --- */
.site-logo-link,
.footer-logo-link,
.most-read-link {
    text-decoration: none;
    color: inherit;
    display: block;
}

.most-read-link {
    cursor: pointer;
    transition: opacity 0.2s ease;
}

.most-read-link:hover {
    opacity: 0.85;
}

.most-read-item img {
    width: 300px;
    height: 180px;
    margin: 20px auto 0;
    object-fit: cover;
}

.most-read-item h3 {
    margin: 12px 0 0;
    color: #212121;
    font-size: 20px;
    font-weight: 400;
    line-height: 24px;
}

.comments-section {
    margin: 34px 0 60px;
    padding: 24px 18px 30px;
    background: #f1f1f1;
    font-family: Arial, Helvetica, sans-serif;
}

.comments-heading {
    margin-bottom: 18px;
    color: #066b9f;
    font-size: 25px;
    font-weight: 700;
    line-height: 31px;
}

.comments-invitation {
    display: grid;
    margin-bottom: 18px;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: center;
    gap: 18px;
}

.comments-invitation p {
    margin-bottom: 0;
    color: #000000;
    font-size: 18px;
    font-weight: 700;
    line-height: 22px;
}

.register-faux {
    display: inline-flex;
    min-width: 144px;
    min-height: 42px;
    align-items: center;
    cursor: pointer;
    justify-content: center;
    border-radius: 14px;
    background: #079bd3;
    color: #ffffff;
    font-size: 16px;
}

.comment-compose {
    display: grid;
    min-height: 58px;
    margin-bottom: 24px;
    padding: 0 9px;
    grid-template-columns: 26px minmax(0, 1fr) 42px;
    align-items: center;
    border: 1px solid #cfcfcf;
    border-radius: 13px;
    background: #ffffff;
}

.comment-compose > span:first-child {
    border-right: 1px solid #b7b7b7;
    color: #737373;
    font-size: 20px;
    line-height: 28px;
}

.comment-compose input {
    width: 100%;
    height: 54px;
    padding: 0 13px;
    border: 0;
    background: transparent;
    color: #777777;
    font-size: 16px;
}

.comment-send-faux {
    display: inline-flex;
    cursor: pointer;
    width: 35px;
    height: 35px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #d2d2d2;
    color: #ffffff;
    font-size: 20px;
}

.comment-tabs {
    display: flex;
    height: 34px;
    align-items: flex-end;
    border-bottom: 1px solid #d3d3d3;
    cursor: pointer;
}

.comment-tab {
    display: inline-flex;
    min-width: 120px;
    height: 34px;
    align-items: center;
    justify-content: center;
    border: 1px solid #d0d0d0;
    border-bottom: 0;
    border-radius: 9px 9px 0 0;
    background: #e8e8e8;
    color: #9d9d9d;
    font-size: 15px;
    font-weight: 700;
}

.comment-tab.is-active {
    position: relative;
    z-index: 1;
    background: #ffffff;
    color: #000000;
}

.comment-list {
    display: grid;
    margin-top: 20px;
    gap: 10px;
}

.comment-card {
    display: grid;
    padding: 12px;
    grid-template-columns: 38px minmax(0, 1fr);
    gap: 10px;
    border: 1px solid #d0d0d0;
    border-radius: 15px;
    background: #ffffff;
}

.comment-avatar-wrap {
    position: relative;
    width: 34px;
    height: 34px;
}

.comment-avatar {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    object-fit: cover;
}

.comment-status-dot {
    position: absolute;
    top: -2px;
    right: -2px;
    width: 11px;
    height: 11px;
    border-radius: 50%;
    background: #f6b21b;
}

.comment-body {
    min-width: 0;
}

.comment-meta {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 12px;
}

.comment-name {
    color: #0575ad;
    font-size: 15px;
}

.comment-time {
    flex: 0 0 auto;
    color: #8f8f8f;
    font-size: 12px;
}

.comment-rank {
    margin: 1px 0 4px;
    color: #989898;
    font-size: 12px;
    line-height: 16px;
}

.comment-text {
    margin-bottom: 5px;
    color: #111111;
    font-size: 14px;
    line-height: 20px;
}

.comment-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 14px;
    color: #0097d3;
    font-size: 12px;
    font-weight: 700;
}

.vote-icons {
    color: #7c7c7c;
    font-size: 16px;
    filter: grayscale(1);
}

.site-footer {
    padding: 28px 0;
    border-top: 1px solid var(--line);
    background: #f2f4f5;
}

.footer-content {
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr) auto;
    align-items: center;
    gap: 28px;
}

.footer-content > img {
    width: 250px;
    height: 30px;
    object-fit: contain;
    object-position: left center;
}

.footer-copy strong {
    color: var(--headline);
}

.footer-copy p {
    margin-bottom: 0;
    color: var(--muted);
    font-size: 12px;
}

.footer-labels {
    display: flex;
    gap: 18px;
    color: var(--muted);
    font-size: 12px;
}

@media (max-width: 1400px) {
    .site-logo {
        width: 350px;
        flex-basis: 350px;
    }

    .header-nav {
        gap: 18px;
        font-size: 14px;
    }

    .login-faux {
        font-size: 14px;
    }
}

@media (max-width: 1120px) {
    .page-container {
        width: min(calc(100% - 30px), var(--page-width));
    }

    .header-shell {
        width: min(calc(100% - 30px), 1100px);
    }

    .header-nav {
        gap: 10px;
        font-size: 12px;
    }

    .site-logo {
        width: 300px;
        flex-basis: 300px;
    }

    .tools-content {
        grid-template-columns: minmax(0, 1fr) 150px 185px;
    }

    .subscribe-tip {
        min-width: 220px;
        font-size: 12px;
    }

    .subscribe-button {
        width: 160px;
    }
}

@media (max-width: 900px) {
    .header-nav {
        display: none;
    }

    .site-logo {
        width: 350px;
        flex-basis: 350px;
    }

    .login-faux {
        margin-left: auto;
    }

    .tools-content {
        grid-template-columns: minmax(0, 1fr) 150px 185px;
    }

    .detail-wrapper {
        display: block;
    }

    .content-story,
    .left-column,
    .article-subgrid,
    .article-column,
    .article-body {
        width: 100%;
        max-width: none;
    }

    .article-subgrid {
        display: block;
    }

    .social-column {
        display: none;
    }

    .article-body {
        margin-right: 0;
    }

    .right-column {
        width: 100%;
        min-width: 0;
        padding: 0;
        border-left: 0;
    }

    .opinion-section,
    .most-read-section {
        width: min(100%, 620px);
        margin-right: auto;
        margin-left: auto;
    }

    .most-read-item img {
        width: 100%;
        height: auto;
        aspect-ratio: 5 / 3;
    }
}

@media (max-width: 768px) {
    .page-container {
        width: 100%;
        padding-right: 10px;
        padding-left: 10px;
    }

    .header-shell {
        width: 100%;
        padding-right: 10px;
        padding-left: 10px;
    }

    .header-content {
        min-height: 48px;
    }

    .menu-mark {
        width: 48px;
        min-height: 48px;
        margin-left: 0;
        flex-basis: 48px;
    }

    .site-logo {
        width: 230px;
        height: 28px;
        margin-left: 12px;
        flex-basis: 230px;
    }

    .login-faux {
        gap: 8px;
        font-size: 15px;
    }

    .user-icon {
        width: 20px;
        height: 20px;
    }

    .user-icon::before {
        top: 4px;
        left: 7px;
        width: 7px;
        height: 7px;
    }

    .tools-content {
        min-height: 50px;
        grid-template-columns: minmax(0, 1fr) 155px;
    }

    .search-faux {
        padding: 0 15px;
        gap: 12px;
        font-size: 14px;
    }

    .print-edition {
        display: none;
    }

    .subscribe-area {
        height: 35px;
    }

    .subscribe-tip {
        display: none;
    }

    .subscribe-button {
        width: 145px;
        min-height: 35px;
        font-size: 12px;
    }

    .story-header {
        margin-top: 30px;
        margin-bottom: 20px;
    }

    .preheadline {
        font-size: 12px;
        line-height: 17px;
    }

    .story-header h1 {
        margin-bottom: 20px;
        font-size: 28px;
        line-height: 34px;
    }

    .story-header h2 {
        font-size: 18px;
        line-height: 26px;
    }

    .hero-figure {
        padding: 0;
    }

    .story-content {
        padding: 0;
    }

    .content-story {
        padding: 0 10px;
    }

    .author-bar {
        min-height: 104px;
    }

    .publication-info {
        margin-left: auto;
        text-align: right;
    }

    .article-column {
        padding-top: 20px;
    }

    .article-body > h2,
    .ugc-section > h2 {
        font-size: 21px;
        line-height: 26px;
    }

    .right-column {
        padding: 0 10px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .footer-labels {
        flex-wrap: wrap;
    }
}

@media (max-width: 470px) {
    .site-logo {
        width: 190px;
        margin-left: 8px;
        flex-basis: 190px;
    }

    .login-faux {
        display: none;
    }

    .tools-content {
        grid-template-columns: minmax(0, 1fr) 125px;
    }

    .search-faux {
        padding: 0 10px;
        gap: 10px;
        font-size: 12px;
    }

    .search-icon {
        width: 18px;
        height: 18px;
        flex-basis: 18px;
    }

    .subscribe-button {
        width: 118px;
        min-height: 34px;
        font-size: 11px;
    }

    .story-header h1 {
        font-size: 28px;
        letter-spacing: -0.2px;
        line-height: 34px;
    }

    .article-body > p,
    .article-body .quote-block p,
    .article-body .danger-box p,
    .article-body .important-box p {
        font-size: 18px;
        line-height: 28px;
    }

    .author-avatar {
        width: 48px;
        height: 48px;
    }

    .author-info strong {
        font-size: 14px;
    }

    .author-info span,
    .publication-info span {
        font-size: 10px;
        line-height: 15px;
    }

    .publication-info {
        margin-left: 10px;
    }

    .remedy-grid {
        grid-template-columns: 1fr;
    }

    .target-list li {
        grid-template-columns: 32px 1fr;
    }

    .ingredient-item {
        grid-template-columns: 38px 1fr;
    }

    .recovery-step {
        padding: 16px 14px 16px 82px;
    }

    .day-badge {
        left: 12px;
        width: 54px;
    }

    .ugc-player {
        width: min(100%, 320px);
    }

    .order-header {
        padding: 20px 15px 15px;
    }

    .order-header h2 {
        font-size: 24px;
        line-height: 29px;
    }

    .order-offer-bar {
        padding: 8px 10px;
        flex-wrap: wrap;
        gap: 6px 18px;
    }

    .order-content {
        padding: 18px 14px;
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .order-product img {
        width: 145px;
        height: 145px;
    }

    .comments-section {
        margin-right: -10px;
        margin-left: -10px;
        padding: 22px 12px 28px;
    }

    .comments-heading {
        font-size: 23px;
    }

    .comments-invitation {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .comments-invitation p {
        font-size: 17px;
        line-height: 21px;
    }

    .register-faux {
        width: 150px;
        justify-self: end;
    }

    .comment-tab {
        min-width: 112px;
    }

    .comment-card {
        padding: 10px;
        grid-template-columns: 34px minmax(0, 1fr);
        gap: 8px;
    }

    .comment-meta {
        align-items: flex-start;
    }

    .comment-text {
        font-size: 14px;
        line-height: 19px;
    }

    .comment-actions {
        gap: 10px;
        font-size: 11px;
    }

    .opinion-section > h2 {
        font-size: 27px;
    }

    .opinion-content h4,
    .most-read-item h3 {
        font-size: 19px;
        line-height: 24px;
    }
}

@media (max-width: 360px) {
    .site-logo {
        width: 165px;
        flex-basis: 165px;
    }

    .tools-content {
        grid-template-columns: minmax(0, 1fr) 115px;
    }

    .subscribe-button {
        width: 108px;
    }

    .story-header h1 {
        font-size: 26px;
        line-height: 32px;
    }

    .comment-actions {
        flex-wrap: wrap;
    }
}


.cpu{
padding: 10px 0;
text-align: center;
}
.cpu img{
display:block;
margin: 0 auto;
width: auto;
}
.cpu a{
display: inline-block;
margin: 5px;
color: #333;
font-size: 14px;
}
