/* styles.css - product comparison page */

/* --- tokens --- */
:root {
    --c1: #54595F;
    --c2: #7DBE31;
    --c3: #3a3a3a;
    --c4: #09a29d;
    --c5: #61CE70;
    --c6: #54b862;
    --c7: #E74C3C;
    --t1: #3a3a3a;
    --t2: #4B4F58;
    --t3: #7A7A7A;
    --t4: #aaaaaa;
    --bg1: #ffffff;
    --bg2: #F5F5F5;
    --bg3: #E5E5E5;
    --bg4: #3a3a3a;
    --gold: #f0ad4e;
    --ok: #3f6f57;
    --ok_bg: #dbfce7;
    --alert: #ff0000;
    --f1: 'Work Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --f2: 'Montserrat', sans-serif;
    --ts1: 12px;
    --ts2: 14px;
    --ts3: 15px;
    --ts4: 17px;
    --ts5: 18px;
    --ts6: 20px;
    --ts7: 24px;
    --ts8: 32px;
    --ts9: 50px;
    --g1: 5px;
    --g2: 10px;
    --g3: 15px;
    --g4: 20px;
    --g5: 25px;
    --g6: 30px;
    --g8: 40px;
    --g10: 50px;
    --mw: 1140px;
    --hh: 70px;
    --bl: 1px solid #E5E5E5;
    --bm: 2px solid #ddd;
    --bd: 2px solid #000;
    --ds1: 0 2px 4px rgba(0,0,0,0.1);
    --ds2: 0 4px 8px rgba(0,0,0,0.12);
    --ds3: 0 10px 25px rgba(0,0,0,0.15);
    --ease: all 0.3s ease;
}

/* --- reset --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 100%;
}

body {
    -webkit-font-smoothing: antialiased;
    font-family: var(--f1);
    color: var(--t2);
    font-size: var(--ts3);
    background-color: var(--bg2);
    line-height: 1.65;
}

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

a {
    transition: var(--ease);
    color: inherit;
    text-decoration: none;
}

ul, ol {
    list-style: none;
}

button {
    background: transparent;
    border: none;
    cursor: pointer;
    font-family: inherit;
}

/* --- type --- */
h1, h2, h3, h4, h5, h6 {
    color: var(--t1);
    font-family: var(--f2);
    line-height: 1.3;
    font-weight: 700;
}

p {
    margin-bottom: var(--g3);
}

strong, b {
    font-weight: 600;
}

/* --- layout --- */
.shell {
    display: flex;
    min-height: 100vh;
    flex-direction: column;
}

.body_area {
    flex: 1;
}

/* --- topbar --- */
.topbar {
    z-index: 1000;
    top: 0;
    position: sticky;
    background-color: #000000;
    box-shadow: var(--ds1);
}

.topbar_wrap {
    padding: 0 var(--g4);
    max-width: var(--mw);
    margin: 0 auto;
}

.topbar_row {
    height: var(--hh);
    align-items: center;
    justify-content: space-between;
    display: flex;
}

.logo_group .logo_link {
    color: #ffffff;
    gap: var(--g2);
    align-items: center;
    display: flex;
}

.logo_ico {
    color: var(--c2);
    font-size: 28px;
}

.logo_sep {
    font-weight: 300;
    color: var(--bg3);
}

.logo_txt {
    text-transform: uppercase;
    line-height: 1.2;
    font-weight: 600;
    font-size: var(--ts2);
}

.topbar_right {
    gap: var(--g6);
    align-items: center;
    display: flex;
}

/* --- share buttons --- */
.share_row {
    align-items: center;
    gap: 6px;
    display: flex;
}

.share_ico {
    transition: transform 0.2s ease, opacity 0.2s ease;
    text-decoration: none;
    justify-content: center;
    align-items: center;
    display: flex;
    border-radius: 50%;
    height: 28px;
    width: 28px;
}

.share_ico:hover {
    opacity: 0.9;
    transform: scale(1.15);
}

.sh_fb { background-color: #3b5998; }
.sh_tw { background-color: #000000; }
.sh_pin { background-color: #BD081C; }
.sh_wa { background-color: #25D366; }
.sh_mail { background-color: #4a4a4a; }

/* --- hero --- */
.banner {
    min-height: 350px;
    padding: var(--g10) 0;
    background-position: center;
    background-size: cover;
    background-color: #2c2c2c;
    position: relative;
}

.banner_mask {
    background: linear-gradient(to right, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 100%);
    inset: 0;
    position: absolute;
}

.banner_container {
    padding: 0 var(--g4);
    margin: 0 auto;
    max-width: var(--mw);
    z-index: 1;
    position: relative;
}

.banner_inner {
    max-width: 850px;
}

.banner_title {
    text-wrap: balance;
    margin-bottom: var(--g4);
    line-height: 1.2;
    color: #ffffff;
    font-weight: 700;
    font-size: var(--ts9);
}

.dateline {
    margin-bottom: var(--g3);
    gap: var(--g2);
    align-items: center;
    display: flex;
}

.check_mark {
    justify-content: center;
    align-items: center;
    display: inline-flex;
}

.check_mark i {
    color: #4CAF50;
    font-size: 18px;
}

.pub_date {
    font-size: var(--ts4);
    color: #ffffff;
}

.disc_wrap {
    display: inline-block;
    position: relative;
}

.disc_toggle {
    cursor: pointer;
    text-decoration: underline;
    border: none;
    background: transparent;
    padding: var(--g1) 0;
    font-size: var(--ts2);
    color: #ffffff;
}

.disc_toggle i {
    font-size: 10px;
    justify-content: center;
    align-items: center;
    display: inline-flex;
    border-radius: 50%;
    border: 1px solid #fff;
    height: 16px;
    width: 16px;
    margin-right: var(--g1);
}

.disc_panel {
    line-height: 1.6;
    font-size: var(--ts2);
    margin-top: var(--g2);
    box-shadow: var(--ds3);
    border-radius: 5px;
    padding: var(--g4);
    color: var(--t2);
    background-color: var(--bg1);
    width: 350px;
    z-index: 100;
    left: 0;
    top: 100%;
    position: absolute;
    display: none;
}

.disc_panel.is_open {
    display: block;
}

.panel_close {
    border: none;
    background: none;
    cursor: pointer;
    text-decoration: underline;
    font-size: var(--ts2);
    color: var(--c1);
    margin-top: var(--g3);
    display: block;
}

.seal_img {
    transform: translateY(-50%);
    top: 50%;
    right: var(--g4);
    position: absolute;
}

.seal_img img {
    max-width: 180px;
}

/* --- intro --- */
.lead_section {
    padding: var(--g8) 0;
    background-color: var(--bg1);
}

.lead_wrap {
    padding: 0 var(--g4);
    margin: 0 auto;
    max-width: var(--mw);
}

.lead_copy {
    color: var(--t2);
    line-height: 1.7;
    font-size: 19px;
    font-family: var(--f2);
    max-width: 900px;
}

.lead_copy p {
    margin-bottom: var(--g4);
}

.notice_box {
    border-radius: 5px;
    margin: var(--g6) 0;
    padding: var(--g4);
    background-color: var(--bg2);
}

.notice_box p:first-child {
    margin-bottom: var(--g2);
    font-weight: 600;
}

.notice_box p:last-child {
    font-size: var(--ts2);
    margin-bottom: 0;
}

.info_triggers {
    position: relative;
    margin-top: var(--g4);
    gap: var(--g4);
    display: flex;
}

.info_toggle {
    border: none;
    background: none;
    cursor: pointer;
    text-decoration: underline;
    padding: 0;
    font-size: var(--ts2);
    color: var(--t2);
}

.info_toggle i {
    font-size: 10px;
    justify-content: center;
    align-items: center;
    display: inline-flex;
    border-radius: 50%;
    border: 1px solid currentColor;
    height: 16px;
    width: 16px;
    margin-right: var(--g1);
}

.info_panel {
    line-height: 1.6;
    font-size: var(--ts2);
    margin-top: var(--g2);
    box-shadow: var(--ds3);
    border-radius: 5px;
    padding: var(--g4);
    color: var(--t2);
    background-color: var(--bg1);
    max-width: 90vw;
    width: 400px;
    z-index: 100;
    left: 0;
    top: 100%;
    position: absolute;
    display: none;
}

.info_panel.is_open {
    display: block;
}

/* --- product listing --- */
.listings {
    padding: var(--g6) var(--g4);
    margin: 0 auto;
    max-width: var(--mw);
}

.item {
    transition: var(--ease);
    margin-bottom: var(--g4);
    border: var(--bm);
    background-color: var(--bg1);
}

.item:hover {
    box-shadow: var(--ds2);
}

.item.item_top {
    box-shadow: var(--ds3);
    border: var(--bd);
}

.item_grid {
    gap: 0;
    grid-template-columns: 240px 1fr 180px 200px;
    display: grid;
}

.item_visual {
    justify-content: center;
    align-items: center;
    flex-direction: column;
    display: flex;
    border-right: 1px solid #c1c1c1;
    position: relative;
    text-align: center;
    padding: 50px 20px 25px 20px;
}

.item_visual a {
    display: block;
}

.item_photo {
    display: block;
    margin: 0 auto 15px auto;
    width: 100%;
    max-width: 190px;
}

.item_label {
    margin-top: 5px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #7A7A7A;
    font-weight: 400;
    font-size: 14px;
}

.review_link {
    display: inline-block;
    margin-top: 10px;
    font-family: var(--f2);
    font-weight: 700;
    font-size: 15px;
    color: #1a73e8;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.review_link:hover {
    color: #0d47a1;
}

/* rank ribbon */
.ribbon {
    clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
    z-index: 10;
    letter-spacing: 0.5px;
    font-weight: 600;
    font-size: 16px;
    padding: 8px 18px 8px 12px;
    color: #ffffff;
    background-color: #000;
    left: -5px;
    top: 10px;
    position: absolute;
}

/* fold shadow */
.ribbon::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    background-color: #1a1a1a;
    height: 5px;
    width: 5px;
    bottom: -5px;
    left: 0;
    position: absolute;
    content: '';
}

.rank_num {
    z-index: 10;
    clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 50%, calc(100% - 10px) 100%, 0 100%);
    padding: 0 12px 0 8px;
    justify-content: center;
    align-items: center;
    display: flex;
    font-weight: 700;
    font-size: 18px;
    color: #ffffff;
    background-color: #2d2d2d;
    height: 32px;
    min-width: 32px;
    left: -5px;
    top: 10px;
    position: absolute;
}

.rank_num::before {
    clip-path: polygon(0 0, 100% 0, 100% 100%);
    background-color: #1a1a1a;
    height: 5px;
    width: 5px;
    bottom: -5px;
    left: 0;
    position: absolute;
    content: '';
}

.item_specs {
    border-right: 1px solid #c1c1c1;
    padding: var(--g5) var(--g4);
}

.pros {
    margin-bottom: var(--g3);
}

.pros li {
    color: #333333;
    position: relative;
    padding-left: 28px;
    padding: 4px 0;
    padding-left: 28px;
    line-height: 1.4;
    font-size: 17px;
}

.pros li::before {
    color: #4CAF50;
    font-size: 16px;
    top: 6px;
    left: 0;
    position: absolute;
    font-weight: 900;
    font-family: 'Font Awesome 6 Free';
    content: '\f058';
}

.cons .con {
    color: #333333;
    position: relative;
    padding-left: 28px;
    padding: 7px 0;
    padding-left: 28px;
    line-height: 1.35;
    font-size: 16px;
}

.cons .con::before {
    color: #E74C3C;
    font-size: 16px;
    top: 6px;
    left: 0;
    position: absolute;
    font-weight: 900;
    font-family: 'Font Awesome 6 Free';
    content: '\f057';
}

.item_score {
    align-items: center;
    justify-content: center;
    flex-direction: column;
    display: flex;
    border-right: 1px solid #c1c1c1;
    text-align: center;
    padding: var(--g5) var(--g4);
}

.score_tag {
    font-weight: 400;
    margin-bottom: 8px;
    letter-spacing: 1.5px;
    color: #000;
    text-transform: uppercase;
    font-size: 12px;
}

.score_num {
    font-family: 'Montserrat', sans-serif;
    margin-bottom: 10px;
    line-height: 1;
    color: #2d2d2d;
    font-weight: 700;
    font-size: 72px;
}

.stars {
    margin-bottom: 12px;
    gap: 2px;
    justify-content: center;
    display: flex;
}

.stars .fa-star {
    font-size: 16px;
    color: #E5E5E5;
}

.stars .fa-star.is_on {
    color: #f0ad4e;
}

.reviews_note {
    max-width: 140px;
    line-height: 1.5;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    color: #000;
    font-size: 12px;
}

.item_action {
    gap: 8px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    display: flex;
    text-align: center;
    padding: var(--g5) var(--g4);
}

.promo_tip {
    line-height: 1.4;
    margin-bottom: 8px;
    position: relative;
    text-align: center;
    font-size: 12px;
    border-radius: 6px;
    padding: 12px 18px;
    color: #ffffff;
    background-color: #E74C3C;
}

.promo_tip::after {
    border-top: 10px solid #E74C3C;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    transform: translateX(-50%);
    left: 50%;
    bottom: -10px;
    position: absolute;
    content: '';
}

.promo_tip strong {
    margin-bottom: 2px;
    text-decoration: underline;
    font-size: 16px;
    display: block;
}

.go_btn {
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    text-align: center;
    text-transform: uppercase;
    font-weight: 600;
    font-size: 14px;
    border-radius: 5px;
    padding: 12px 24px;
    color: #ffffff;
    background-color: #61CE70;
    max-width: 160px;
    width: 100%;
    display: block;
}

.go_btn:hover {
    transform: translateY(-1px);
    color: #ffffff;
    background-color: #54b862;
}

.go_btn_vivid {
    background: linear-gradient(135deg, #4a3cf0 0%, #5b4cf7 50%, #6c5ce7 100%);
    box-shadow: 0 4px 15px rgba(91, 76, 247, 0.4);
    border-radius: 30px;
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1.5px;
    padding: 16px 28px;
    max-width: 200px;
}

.go_btn_vivid:hover {
    background: linear-gradient(135deg, #3a2ce0 0%, #4b3ce7 50%, #5c4cd7 100%);
    box-shadow: 0 6px 20px rgba(91, 76, 247, 0.55);
    transform: translateY(-2px);
}

.deal_line {
    font-family: var(--f2);
    font-weight: 700;
    font-size: 15px;
    color: #1a5276;
    margin-bottom: 8px;
    display: block;
}

.deal_pct {
    background-color: #c0392b;
    color: #ffffff;
    font-weight: 700;
    font-size: 14px;
    padding: 3px 10px;
    border-radius: 4px;
    margin-left: 4px;
    display: inline-block;
}

.social_proof {
    margin-top: 10px;
    background: #f8f8f8;
    border: 1px solid #e0e0e0;
    border-radius: 20px;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--t2);
    display: inline-block;
}

.sp_icon {
    margin-right: 2px;
}

.store_badge {
    margin: 5px auto;
    max-width: 80px;
}

.price_row {
    gap: 8px;
    justify-content: center;
    align-items: baseline;
    display: flex;
}

.price_now {
    color: #2d2d2d;
    font-weight: 700;
    font-size: 22px;
}

.price_was {
    text-decoration: line-through;
    color: #aaaaaa;
    font-size: 16px;
}

.save_tag {
    border-radius: 3px;
    font-weight: 600;
    font-size: 12px;
    padding: 3px 10px;
    color: #ffffff;
    background-color: #E74C3C;
}

.ship_note {
    color: #7A7A7A;
    font-size: 12px;
}

/* --- evaluation --- */
.eval_section {
    background-color: var(--bg1);
}

.eval_wrap {
    margin: 0 auto;
    max-width: var(--mw);
}

.block_heading {
    color: #ffffff;
    background-color: #3a3a3a;
    padding: var(--g5) var(--g4);
    margin: 0;
    font-weight: 700;
    font-size: var(--ts7);
    text-align: center;
}

.eval_grid {
    border-bottom: 1px solid #e5e5e5;
    background-color: var(--bg1);
    gap: 0;
    grid-template-columns: repeat(3, 1fr);
    display: grid;
}

.eval_cell {
    border-right: 1px solid #e5e5e5;
    background-color: var(--bg1);
    padding: var(--g5) var(--g4);
    gap: var(--g3);
    justify-content: center;
    align-items: center;
    display: flex;
}

.eval_cell:last-child {
    border-right: none;
}

.eval_ico {
    font-size: 40px;
    justify-content: center;
    align-items: center;
    display: flex;
    border-radius: 0;
    color: #D4A437;
    background-color: transparent;
    height: auto;
    width: auto;
}

.eval_name {
    margin: 0;
    font-weight: 700;
    font-size: var(--ts5);
}

/* --- recommendation section --- */
.rec_section {
    padding: var(--g6) 0;
    background-color: var(--bg1);
}

.rec_wrap {
    align-items: start;
    gap: var(--g6);
    grid-template-columns: 1fr 280px;
    display: grid;
    padding: 0 var(--g4);
    margin: 0 auto;
    max-width: var(--mw);
}

.rec_main {
    min-width: 0;
}

/* recommendation box */
.rec_box {
    background-color: var(--bg1);
    margin-bottom: var(--g6);
    border-radius: 5px;
    border: 1px solid #e5e5e5;
}

.rec_top {
    border-bottom: 1px solid #e5e5e5;
    padding: var(--g4);
    gap: var(--g3);
    align-items: center;
    display: flex;
}

.seal_icon {
    flex-shrink: 0;
    height: 70px;
    width: 70px;
}

.rec_title {
    color: var(--t1);
    margin: 0;
    font-weight: 700;
    font-size: var(--ts6);
}

.rec_body {
    gap: var(--g4);
    padding: var(--g4);
    display: flex;
}

.rec_pros {
    flex: 1;
}

.pros_title {
    color: var(--t1);
    margin-bottom: var(--g3);
    font-weight: 700;
    font-size: var(--ts5);
}

.pros_items {
    margin: 0;
    padding: 0;
    list-style: none;
}

.pros_items li {
    color: #333;
    line-height: 1.5;
    font-size: 16px;
    margin-bottom: var(--g2);
    padding-left: 25px;
    position: relative;
}

.pros_items li::before {
    font-size: 15px;
    color: #7DBE31;
    top: 0;
    left: 0;
    position: absolute;
    font-weight: 900;
    font-family: "Font Awesome 5 Free";
    content: "\f058";
}

.rec_photo {
    width: 200px;
    flex-shrink: 0;
}

.rec_photo img {
    height: auto;
    width: 100%;
}

/* winner content in recommendation section */
.pick_text {
    margin-bottom: var(--g6);
}

.pick_text .pick_title {
    margin-bottom: var(--g4);
    font-weight: 700;
    font-size: var(--ts7);
}

.pick_text p {
    color: #333;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: var(--g3);
}

.pick_text .pick_action {
    text-align: left;
    margin-top: var(--g6);
}

.pick_action {
    text-align: center;
    margin-top: var(--g6);
}

.go_btn_lg {
    font-size: var(--ts4);
    padding: var(--g3) var(--g6);
    max-width: none;
    gap: var(--g2);
    align-items: center;
    display: inline-flex;
}

.go_btn_lg i {
    font-size: var(--ts5);
}

.offer_line {
    font-size: var(--ts4);
    margin-top: var(--g2);
    display: block;
}

.txt_red {
    color: var(--alert);
}

/* --- author --- */
.writer_box {
    padding: var(--g8) 0;
    background-color: var(--bg2);
}

.writer_row {
    gap: var(--g4);
    display: flex;
    border-radius: 5px;
    background-color: var(--bg1);
    padding: var(--g4);
    margin: 0 auto;
    max-width: var(--mw);
}

.writer_photo img {
    object-fit: cover;
    border-radius: 50%;
    height: 100px;
    width: 100px;
}

.writer_details {
    flex: 1;
}

.writer_name {
    margin-bottom: var(--g1);
    font-size: var(--ts3);
}

.writer_stars {
    margin-bottom: var(--g2);
    gap: 2px;
    display: flex;
}

.writer_stars .fa-star {
    font-size: var(--ts2);
    color: var(--bg3);
}

.writer_stars .fa-star.is_on {
    color: var(--gold);
}

.writer_bio {
    margin-bottom: 0;
    line-height: 1.7;
    color: #333;
    font-size: 15px;
}

/* author override in recommendation section */
.rec_main .writer_box {
    padding: 0;
    background-color: transparent;
}

.rec_main .writer_row {
    background-color: var(--bg2);
    padding: var(--g4);
    max-width: none;
}

/* --- sidebar --- */
.aside_col {
    top: 20px;
    position: sticky;
}

.aside_stats {
    margin-bottom: var(--g4);
    padding: var(--g4);
    border-radius: 5px;
    border: 1px solid #e5e5e5;
    background-color: var(--bg1);
}

.aside_img {
    margin-bottom: var(--g2);
    margin-left: var(--g2);
    max-width: 35%;
    float: right;
}

.aside_stats .aside_heading {
    color: var(--t1);
    margin-bottom: var(--g2);
    display: block;
    font-weight: 700;
    font-size: var(--ts6);
}

.aside_stats p {
    clear: both;
    margin: 0;
    color: var(--t2);
    line-height: 1.6;
    font-size: var(--ts2);
}

.aside_method {
    padding: var(--g4);
    border-radius: 5px;
    border: 1px solid #e5e5e5;
    background-color: var(--bg1);
}

.aside_method h3 {
    color: var(--t1);
    margin-bottom: var(--g2);
    font-weight: 700;
    font-size: var(--ts5);
}

.aside_method p {
    margin: 0;
    color: var(--t2);
    line-height: 1.6;
    font-size: var(--ts2);
}

.txt_accent {
    color: var(--c4);
}

/* --- footer --- */
.footer_main {
    padding: var(--g8) 0;
    color: #ffffff;
    background-color: var(--bg4);
}

.footer_wrap {
    padding: 0 var(--g4);
    margin: 0 auto;
    max-width: var(--mw);
}

.footer_grid {
    gap: var(--g8);
    grid-template-columns: repeat(3, 1fr);
    display: grid;
}

.footer_title {
    color: #ffffff;
    margin-bottom: var(--g3);
    font-weight: 600;
    font-size: var(--ts4);
}

.footer_nav {
    gap: var(--g1);
    flex-direction: column;
    display: flex;
}

.footer_nav a {
    font-size: var(--ts2);
    color: rgba(255,255,255,0.8);
}

.footer_nav a:hover {
    color: #ffffff;
}

.footer_copy {
    line-height: 1.7;
    color: rgba(255,255,255,0.8);
    font-size: var(--ts2);
}

.footer_logo .logo_link {
    margin-bottom: var(--g3);
    color: #ffffff;
    gap: var(--g2);
    align-items: center;
    display: flex;
}

.footer_logo .logo_ico {
    color: var(--c2);
}

/* --- scroll to top --- */
.up_btn {
    cursor: pointer;
    z-index: 900;
    transition: var(--ease);
    visibility: hidden;
    opacity: 0;
    justify-content: center;
    align-items: center;
    display: flex;
    border-radius: 5px;
    color: var(--t1);
    background-color: var(--bg3);
    height: 40px;
    width: 40px;
    right: 20px;
    bottom: 20px;
    position: fixed;
}

.up_btn.is_open {
    visibility: visible;
    opacity: 1;
}

.up_btn:hover {
    color: #ffffff;
    background-color: var(--t3);
}

/* --- tablet --- */
@media screen and (max-width: 1024px) {
    .item_grid {
        grid-template-columns: 200px 1fr 160px 180px;
    }

    .score_num {
        font-weight: 700;
        font-size: 56px;
    }

    .eval_grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .seal_img {
        display: none;
    }
}

/* --- mobile --- */
@media screen and (max-width: 768px) {
    :root {
        --ts9: 28px;
        --ts8: 24px;
        --ts7: 20px;
    }
    .banner_title {
        line-height: 1.35;
    }

    .topbar_row {
        padding: var(--g3) 0;
        height: auto;
    }

    .share_row {
        gap: 5px;
    }

    .share_ico {
        height: 26px;
        width: 26px;
    }

    .share_ico svg {
        height: 12px;
        width: 12px;
    }

    .banner {
        min-height: auto;
        padding: var(--g6) 0;
    }

    .banner_title {
        font-size: 22px;
    }

    .pub_date {
        font-size: 13px;
        color: rgba(255,255,255,0.7);
    }

    .check_mark i {
        font-size: 14px;
    }

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

    .item_visual,
    .item_specs,
    .item_score,
    .item_action {
        border-bottom: 1px solid #c1c1c1;
        border-right: none;
    }

    .item_action {
        border-bottom: none;
    }

    .ribbon,
    .rank_num {
        left: -5px;
        top: 10px;
        position: absolute;
    }

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

    .aside_col {
        display: none;
    }

    .pick_text p {
        font-size: 17px;
    }

    .rec_body {
        flex-direction: column;
    }

    .rec_photo {
        margin: 0 auto;
        max-width: 200px;
        width: 100%;
    }

    .rec_title {
        font-size: var(--ts5);
    }

    .writer_row {
        text-align: center;
        flex-direction: column;
    }

    .writer_photo {
        margin: 0 auto;
    }

    .writer_stars {
        justify-content: center;
    }

    .footer_grid {
        gap: var(--g6);
        text-align: center;
        grid-template-columns: 1fr;
    }

    .footer_logo .logo_link {
        justify-content: center;
    }

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

    .info_triggers {
        gap: var(--g2);
        flex-direction: column;
    }
}

@media screen and (max-width: 480px) {
    .eval_grid {
        grid-template-columns: 1fr;
    }

    .price_row {
        gap: var(--g1);
        flex-direction: column;
    }
}
