/* Mega Conectado Child - GeneratePress child theme
   Design baseado no modelo Tecnoblog (referência de layout)
*/

/* ===== VARIABLES ===== */
:root, html[dark-mode="no"] {
    color-scheme: light;
    --bg: #fff;
    --bg-2: #f8f8f8;
    --bg-3: #f8f8f8;
    --bg-2-rgba: rgba(248,248,248,.7);
    --header-color: #0694d6;
    --header-color-hover: #14739a;
    --headings-color: #424242;
    --headings-with-color: #0694d6;
    --subhead-color: #757575;
    --link-color: #0694d6;
    --link-color-hover: #14739a;
    --link-underline: rgba(33,128,167,.15);
    --link-underline-hover: rgba(33,128,167,.3);
    --link-background: #ebf3f6;
    --body-color: #212121;
    --exclusivas-bg: rgba(6,148,214,.1);
    --parceiros-bg: rgba(27,62,99,.1);
    --parceiros-color: #1b3e63;
    --article-border: #dddedf;
    --table-border: #ebedec;
    --line-height-base: 1.65;
    --cat-noticia: #229fd3;
    --cat-guia: #69bb36;
    --cat-publieditorial: #1b3e63;
    --cat-responde: #5f4b8b;
    --cat-achados: #d63384;
}
html[dark-mode="yes"] {
    color-scheme: dark;
    --bg: #1e2021;
    --bg-rgba: rgba(30,32,33,1);
    --bg-2: #27292b;
    --bg-3: #35373a;
    --bg-2-rgba: rgba(39,41,43,.7);
    --header-color: #14739a;
    --header-color-hover: #0694d6;
    --headings-color: #e0e0e0;
    --headings-with-color: #35bcf1;
    --subhead-color: #bdbdbd;
    --link-color: #35bcf1;
    --link-color-hover: #1991c3;
    --link-underline: rgba(54,189,242,.3);
    --link-underline-hover: rgba(25,145,195,.5);
    --link-background: #203038;
    --body-color: #f7f7f7;
    --exclusivas-bg: rgba(6,148,214,.1);
    --parceiros-bg: rgba(27,62,99,.1);
    --parceiros-color: #8697aa;
    --article-border: #616161;
    --table-border: #2c2c2c;
    --cat-noticia: #35bcf1;
    --cat-guia: #69bb36;
    --cat-publieditorial: #5b8db8;
    --cat-responde: #9688b6;
    --cat-achados: #e46ba8;
}

/* ===== BASE ===== */
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--body-color);
    background: var(--bg);
    font: 14px "Inter",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif;
    line-height: var(--line-height-base);
    transition: color .2s ease-in-out, background-color .2s ease-in-out;
}
a { text-decoration: none; color: var(--link-color); }
a:hover { color: var(--link-color-hover); }
img { max-width: 100%; display: block; }
.container { margin: 0 auto; }
@media (min-width: 1025px) { .container { width: 1060px; padding: 0 20px; } }
@media (min-width: 744px) and (max-width: 1024px) { .container { width: 700px; } }
@media (max-width: 743px) { .container { padding: 0 15px; } }
.mc-hide { display: none; }

/* ===== HEADER ===== */
#top { position: sticky; top: 0; z-index: 9999; height: 50px; }
#top header {
    background: linear-gradient(90deg, rgba(34,169,225,1) 0%, rgba(0,74,176,1) 100%);
    position: relative; width: 100%; height: 50px; z-index: 9999; color: #fff;
    box-shadow: 0 0 3px 1px rgba(0,0,0,15%);
    user-select: none;
}
#top .container-header-bar {
    padding: 0 10px; margin: 0 auto; position: relative; height: 100%;
    display: flex; align-items: center; gap: 10px;
}
#logo { display: flex; align-items: center; }
#logo a.mc-logo-link {
    display: block; color: #fff; font-weight: 800; font-size: 20px;
    letter-spacing: -.5px; text-transform: none; line-height: 1;
    padding: 5px 0;
}
#logo span { display: none; }
#top nav { position: relative; z-index: 99999; flex: none; }
#top nav ul { list-style: none; margin: 0; padding: 0; display: flex; }
#top nav > ul > li { position: relative; padding: 0; }
#top nav > ul > li > a {
    text-transform: uppercase; color: #d7f3ff; display: block;
    padding: 15px 11px 14px; line-height: 1.75; font-size: 13px;
    transition: background-color .2s ease-in-out;
}
#top nav > ul > li:hover { background-color: rgba(242,242,242,.2); }
#top nav > ul > li:hover > a, #top nav > ul > li > a.sel { color: #fff; }
#top nav > ul > li.menu-item-has-children > a::after {
    content: ""; display: inline-block; width: 7px; height: 7px; margin-left: 5px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d7f3ff' stroke-width='3'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-size: contain;
}
#top nav > ul > li .sub-menu {
    position: absolute; right: 0; flex-direction: column; top: 100%;
    background: #323539; opacity: 0; visibility: hidden; padding: 8px;
    min-width: 210px; border-radius: 4px; box-shadow: 0 12px 30px rgba(0,0,0,.25);
    transition: all .15s ease-in-out;
}
#top nav > ul > li:hover .sub-menu { opacity: 1; visibility: visible; }
#top nav > ul > li .sub-menu li { padding: 0; }
#top nav > ul > li .sub-menu a { text-transform: none; color: #fff; padding: 8px 12px; display: block; font-size: 13px; }
#top nav > ul > li .sub-menu a:hover { color: #69b8e0; background: none; }

/* Mobile menu button */
#mm { display: none; align-items: center; }
#mm button { display: flex; align-items: center; justify-content: center; background: none; border: none; padding: 0; cursor: pointer; }
#toggle-menu-icon { display: block; width: 21px; height: 17px; position: relative; cursor: pointer; }
#toggle-menu-icon span { display: block; position: absolute; height: 3px; width: 100%; background: #fff; border-radius: 1px; left: 0; transition: .25s ease-in-out; }
#toggle-menu-icon span:nth-child(1) { top: 0; }
#toggle-menu-icon span:nth-child(2) { top: 7px; }
#toggle-menu-icon span:nth-child(3) { top: 14px; }

/* Header right: search + social + dark mode */
.mc-header-right { display: flex; align-items: center; margin-left: auto; gap: 4px; }
.busca { overflow: hidden; width: 24px; height: 50px; padding: 0 12px; display: flex; align-items: center; transition: all .2s ease-in-out; cursor: pointer; }
.busca.active { width: 200px; padding: 0 8px; background: rgba(255,255,255,.2); border-radius: 4px; }
.busca .lupa { display: block; width: 22px; height: 22px; background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23fff' stroke-width='2'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cpath d='m21 21-4.35-4.35'/%3E%3C/svg%3E") no-repeat center/contain; cursor: pointer; flex-shrink: 0; }
.busca form { margin: 0; }
.busca input[type="search"] { display: none; border: none; background: transparent; color: #fff; outline: none; width: 140px; font-size: 12px; }
.busca.active input[type="search"] { display: block; padding: 6px 6px 6px 8px; }
.busca input[type="search"]::-webkit-input-placeholder { color: rgba(255,255,255,.6); }
header .redes { display: flex; align-items: center; color: #fff; gap: 4px; padding: 0 4px; border-left: 1px solid rgba(255,255,255,.1); border-right: 1px solid rgba(255,255,255,.1); }
header .redes a { color: #fff; padding: 6px; display: block; transition: transform .2s ease-in-out; }
header .redes a:hover { transform: scale(1.15); }
header .redes svg { display: block; width: 18px; height: 18px; }
.theme-mode { display: flex; align-items: center; padding-left: 8px; }
.theme-mode button {
    width: 32px; height: 32px; background: #07397d url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23ffd54f' stroke-width='2'%3E%3Ccircle cx='12' cy='12' r='4'/%3E%3Cpath d='M12 2v2m0 16v2M4.9 4.9l1.4 1.4m11.4 11.4 1.4 1.4M2 12h2m16 0h2M4.9 19.1l1.4-1.4M17.7 6.3l1.4-1.4'/%3E%3C/svg%3E") no-repeat center; background-size: 18px;
    border-radius: 50%; font-size: 0; border: none; cursor: pointer; transition: .2s ease-in-out;
}
html[dark-mode="yes"] .theme-mode button { background-color: #6693d5; }

/* Mobile drawer */
#mmenu {
    display: none;
    width: 90vw; max-width: 340px; background: #2c2f32; position: fixed; left: 0; top: 0; bottom: 0;
    transform: translate3d(-100%,0,0); z-index: 100001; flex-direction: column;
    transition: transform .2s ease-in-out; overflow-y: auto;
}
#mmenu.open { transform: translate3d(0,0,0); }
#escuro { background: rgba(0,0,0,.6); position: fixed; left: 0; right: 0; top: 0; bottom: 0; z-index: 100000; opacity: 0; visibility: hidden; transition: all .2s ease-in-out; }
#escuro.opened { opacity: 1; visibility: visible; }
#mmenu .search-mobile { padding: 12px; background: #3f4247; }
#mmenu .search-mobile form { display: flex; align-items: center; background: #fff; border-radius: 5px; padding: 0 8px; }
#mmenu .search-mobile input { flex: 1; border: none; outline: none; padding: 9px 6px; font-size: 14px; background: transparent; }
#mmenu .search-mobile button { border: none; background: none; cursor: pointer; }
#mmenu .links ul { list-style: none; margin: 0; padding: 8px 0; }
#mmenu .links li a { color: #fff; padding: 11px 20px; display: block; border-bottom: 1px solid #444; font-weight: 300; font-size: 15px; }
#mmenu .links li a[title] { font-weight: bold; }
#mmenu .links .sub-menu { padding-left: 12px; }
#mmenu .links .sub-menu a { font-weight: 300; }
#mmenu .redes-mobile { display: flex; justify-content: center; gap: 14px; padding: 14px 0; }
#mmenu .redes-mobile a { color: #fff; }
#mmenu .redes-mobile svg { width: 24px; height: 24px; }
#mmenu .close-mmenu { text-align: right; padding: 10px 14px; }
#mmenu .close-mmenu button { background: none; border: none; color: #fff; font-size: 26px; cursor: pointer; line-height: 1; }

/* ===== TOP STORIES (destaques) ===== */
#posts_destaque { display: flex; gap: 4px; padding: 12px 0 0; }
#posts_destaque .bloco_destaque {
    position: relative; flex: 1; height: 220px; border-radius: 6px; overflow: hidden;
    background-size: cover; background-position: center;
}
#posts_destaque .bloco_destaque .bloco_descricao {
    position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
    background: linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,0));
    padding: 34px 12px 10px;
}
#posts_destaque .bloco_destaque .post_title { color: #fff; font-family: "PT Sans Narrow", sans-serif; font-weight: 700; font-size: 17px; line-height: 1.15; }
@media (max-width: 743px) {
    #posts_destaque { flex-wrap: wrap; }
    #posts_destaque .bloco_destaque { flex: 1 1 46%; height: 120px; }
    #posts_destaque .bloco_destaque .post_title { font-size: 13px; }
    #posts_destaque .bloco_destaque:nth-child(1) { flex: 1 1 100%; height: 180px; }
}

/* ===== BANNER ===== */
#fullbanner { background: var(--bg-2); text-align: center; margin: 12px 0; }
#fullbanner .container { min-height: 90px; display: flex; align-items: center; justify-content: center; box-sizing: border-box; }
#fullbanner .mc-ad-placeholder { color: var(--subhead-color); font-size: 12px; border: 1px dashed var(--table-border); border-radius: 6px; padding: 26px; width: 100%; }

/* ===== POST BLOCKS ===== */
#bloco1 { padding-top: 14px; }
#bloco1 .posts, #bloco3 .posts { float: left; }
.row-flex { display: flex; flex-wrap: wrap; }
.row-flex > * { flex: 1 1 auto; }
.row-grid-capa { display: grid; grid-template-columns: 1fr 320px; gap: 20px; }
.twoposts { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
@media (min-width: 744px) and (max-width: 1024px) { .row-grid-capa { grid-template-columns: 1fr; } }
@media (max-width: 743px) { .row-grid-capa { grid-template-columns: 1fr; } .twoposts { grid-template-columns: 1fr; } }
article.bloco { margin-bottom: 20px; position: relative; }
article.bloco a { display: block; }
article.bloco .thumb {
    height: 191px; margin-bottom: 12px; position: relative; background: var(--bg-2);
    border-radius: 4px; box-shadow: 0 0 0 1px rgba(0,0,0,.08); display: flex; overflow: hidden;
}
article.bloco .thumb img { object-fit: cover; border-radius: 4px; min-width: 100%; max-width: 100%; width: 100%; height: 100%; }
article.bloco .mask {
    opacity: 0; transition: opacity .2s ease-in-out; position: absolute; width: 100%; border-radius: 4px; height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,.1) 0%, rgba(0,0,0,.5) 100%); pointer-events: none; z-index: 1;
}
article.bloco a:hover .mask { opacity: .7; }
article.bloco h2 {
    margin: 0; font-family: "PT Sans Narrow", sans-serif; font-size: 24px; line-height: 1.12;
    color: var(--headings-color); transition: color .2s ease-in-out; letter-spacing: -.2px;
}
article.bloco a:hover h2 { color: var(--link-color); }
article.bloco p { font-size: 14px; color: var(--body-color); margin: 8px 0 0; line-height: 1.4; }
article.bloco .info { color: var(--subhead-color); margin: 7px 0; font-size: 12px; letter-spacing: -.2px; }
article .spread { position: absolute; z-index: 2; left: 8px; bottom: 8px; display: flex; align-items: center; }
article .spread .cat { color: #fff; text-transform: uppercase; font-size: 10px; padding: 5px 7px; display: block; border-radius: 2px; font-weight: 600; letter-spacing: .3px; }

/* Category badge colors */
.catname.noticia { background: var(--cat-noticia); }
.catname.guia { background: var(--cat-guia); }
.catname.achado { background: var(--cat-achados); }
.catname.responde { background: var(--cat-responde); }
.catname.publieditorial { background: var(--cat-publieditorial); }

/* ===== WIDGETS / SECTIONS ===== */
.tb-widget-posts { margin-bottom: 30px; }
.tb-widget-posts h2 { font-family: "PT Sans Narrow", sans-serif; font-size: 24px; color: var(--headings-with-color); margin: 0 0 14px; }
.tb-widget-posts h2 a { color: var(--headings-with-color); }
.tb-achados-wrapper, .tb-exclusivas-wrapper, .tb-parceiros-wrapper, .tbr-wrapper {
    display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 16px;
}
@media (max-width: 1024px) { .tb-achados-wrapper, .tb-exclusivas-wrapper, .tb-parceiros-wrapper, .tbr-wrapper { grid-template-columns: 1fr 1fr; } }
@media (max-width: 743px) { .tb-achados-wrapper, .tb-exclusivas-wrapper, .tb-parceiros-wrapper, .tbr-wrapper { grid-template-columns: 1fr; } }
.tb-widget-posts article { margin-bottom: 6px; }
.tb-widget-posts figure { margin: 0 0 8px; }
.tb-widget-posts figure img { border-radius: 4px; aspect-ratio: 16/9; object-fit: cover; width: 100%; }
.tb-widget-posts h3 { font-family: "PT Sans Narrow", sans-serif; font-size: 18px; line-height: 1.15; margin: 0; color: var(--headings-color); }
.tb-widget-posts article a:hover h3 { color: var(--link-color); }
.tb-widget-posts .info { color: var(--subhead-color); font-size: 12px; margin-top: 4px; }

/* Populares */
.populares { border-radius: 4px; background-color: var(--bg-2); padding: 20px; margin-bottom: 30px; }
.populares h2 { font-family: "PT Sans Narrow", sans-serif; font-size: 24px; color: var(--headings-with-color); margin: 0 0 12px; }
.populares .populares-wrapper { display: flex; flex-direction: column; }
.populares .populares-item { padding: 7px 0; border-bottom: 1px solid var(--table-border); }
.populares .populares-item:last-child { border-bottom: 0; }
.populares .populares-item a h3 { margin: 0; font-family: "PT Sans Narrow", sans-serif; font-size: 18px; color: var(--headings-color); display: flex; gap: 8px; align-items: baseline; }
.populares .populares-item .count { min-width: 22px; color: var(--link-color); font-weight: 700; }
.populares .populares-item a:hover h3 { color: var(--link-color); }

/* Sidebar */
.sidebar-home, .mc-sidebar { }
.mc-sidebar > div { margin-bottom: 24px; }

/* ===== CATEGORY PAGE ===== */
.mc-page-head { background: var(--bg-2); padding: 18px 0; margin-bottom: 22px; }
.mc-page-head h1 { margin: 0; font-family: "PT Sans Narrow", sans-serif; font-size: 34px; color: var(--headings-color); }
.mc-breadcrumb { font-size: 12px; color: var(--subhead-color); margin-bottom: 4px; }
.mc-breadcrumb a { color: var(--subhead-color); }
.mc-breadcrumb a:hover { color: var(--link-color); }
.mc-archive-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; padding-bottom: 30px; }
@media (max-width: 743px) { .mc-archive-grid { grid-template-columns: 1fr; } }

/* Pagination */
.mc-pagination { display: flex; justify-content: center; gap: 6px; padding: 10px 0 40px; }
.mc-pagination .page-numbers {
    padding: 8px 13px; border: 1px solid var(--table-border); border-radius: 3px; font-size: 13px;
    color: var(--link-color); background-color: var(--bg-3); display: inline-flex; align-items: center;
}
.mc-pagination .page-numbers.current { background: var(--link-color); border-color: var(--link-color); color: #fff; }
.mc-pagination a.page-numbers:hover { background: var(--table-border); }

/* ===== SINGLE ===== */
#post header .mc-single-head { padding: 20px 0 10px; }
.mc-single-head h1 { margin: 0 0 10px; font-family: "PT Sans Narrow", sans-serif; font-size: 38px; line-height: 1.1; color: var(--headings-color); }
.mc-single-meta { color: var(--subhead-color); font-size: 13px; display: flex; gap: 12px; align-items: center; flex-wrap: wrap; }
.mc-single-head .thumb { border-radius: 6px; overflow: hidden; margin: 16px 0 0; }
.mc-single-head .thumb img { width: 100%; height: auto; }
.entry-content { font-size: 15px; line-height: 1.75; }
.entry-content h2 { font-family: "PT Sans Narrow", sans-serif; font-size: 28px; color: var(--headings-color); margin: 26px 0 10px; }
.entry-content h3 { font-family: "PT Sans Narrow", sans-serif; font-size: 22px; color: var(--headings-color); margin: 22px 0 8px; }
.entry-content p { margin: 0 0 16px; }
.entry-content img { border-radius: 4px; }
.entry-content a { text-decoration: underline; text-decoration-color: var(--link-underline); text-underline-offset: 3px; }
.entry-content a:hover { text-decoration-color: var(--link-underline-hover); }
.mc-related { margin-top: 40px; padding-top: 20px; border-top: 1px solid var(--table-border); }

/* ===== TAGS / TEMAS ===== */
.category_tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 30px; }
.category_tags a {
    padding: 6px 10px; border-radius: 5px; background: var(--bg-3); color: var(--subhead-color);
    font-size: 13px; display: inline-block;
}
.category_tags a:hover { background: var(--table-border); color: initial; }
h3.category_tags_title { font-family: "PT Sans Narrow", sans-serif; font-size: 22px; color: var(--headings-color); margin: 0 0 12px; }

/* ===== COMPARAR (simplificado) ===== */
.mc-comparativo-container { background: linear-gradient(90deg,#22a9e1 0%,#004ab0 100%); border-radius: 8px; padding: 22px; margin-bottom: 30px; color: #fff; text-align: center; }
.mc-comparativo-container h2 { margin: 0 0 4px; font-family: "PT Sans Narrow", sans-serif; font-size: 26px; color: #fff; }
.mc-comparativo-container p { margin: 0 0 12px; font-size: 13px; opacity: .9; }
.mc-comparativo-container form { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; }
.mc-comparativo-container select, .mc-comparativo-container button {
    padding: 9px 14px; border-radius: 5px; border: none; font-size: 14px;
}
.mc-comparativo-container button { background: #fff; color: #004ab0; font-weight: 700; cursor: pointer; }

/* ===== CAROUSEL (simplificado, scroll horizontal) ===== */
.mc-carousel { margin-bottom: 30px; }
.mc-carousel h2 { font-family: "PT Sans Narrow", sans-serif; font-size: 26px; color: var(--headings-with-color); margin: 0 0 16px; }
.mc-carousel-track { display: flex; gap: 14px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; }
.mc-carousel-track::-webkit-scrollbar { height: 8px; }
.mc-carousel-track::-webkit-scrollbar-thumb { background: var(--table-border); border-radius: 8px; }
.mc-carousel-item { scroll-snap-align: start; flex: 0 0 200px; text-align: center; }
.mc-carousel-item figure { margin: 0 0 6px; }
.mc-carousel-item img { width: 100%; aspect-ratio: 1/1; object-fit: cover; border-radius: 6px; }
.mc-carousel-item h3 { font-family: "PT Sans Narrow", sans-serif; font-size: 16px; margin: 0; color: var(--headings-color); }

/* ===== FOOTER ===== */
#footer { background: linear-gradient(90deg, rgba(34,169,225,1) 0%, rgba(0,74,176,1) 100%); padding: 40px 0; color: #fff; }
#footer a { color: #fff; }
#footer .row { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
@media (max-width: 743px) { #footer .row { grid-template-columns: 1fr; } }
.footer-logo a.mc-logo-link { color: #fff; font-size: 24px; font-weight: 800; }
#footer .redes { display: flex; gap: 10px; margin-top: 14px; }
#footer .redes a { width: 36px; height: 36px; border-radius: 50%; background: rgba(255,255,255,.14); display: inline-flex; align-items: center; justify-content: center; transition: background .2s ease; }
#footer .redes a:hover { background: rgba(255,255,255,.3); }
#footer .redes svg { width: 18px; height: 18px; fill: #fff; }
#footer .footer-cat-links { display: flex; flex-wrap: wrap; gap: 8px; }
#footer .footer-cat-links a { background: rgba(255,255,255,.14); padding: 6px 12px; border-radius: 999px; font-size: 13px; }
#footer .footer-cat-links a:hover { background: rgba(255,255,255,.3); }
#footer p { color: #d7f3ff; margin: 10px 0 0; font-size: 13px; }
.footer--darker { padding: 20px 0; background-color: #004ab0; }
.footer--darker .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; }
.footer--darker nav ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: 16px; }
.footer--darker nav a { color: #d7f3ff; font-size: 13px; }
.footer--darker nav a:hover { color: #fff; }
.footer--darker p { color: #d7f3ff; font-size: 13px; margin: 0; }

/* Hide GP default stuff we override */
.site-header, .site-footer, .main-navigation, .site-branding { display: none; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1023px) {
    #top nav { display: none; }
    #mm { display: flex; margin-right: 8px; }
    #logo { margin-left: 6px; }
    header .redes { display: none; }
}
@media (max-width: 743px) {
    .busca { display: none; }
    #logo a.mc-logo-link { font-size: 17px; }
}
