/* Georgetcom — додаткові віджети сторінок документів */

:root {
    --gt-wine: #6b1220;
    --gt-main: #a32135;
    --gt-gold: #d4a017;
    --gt-ink: #2a1216;
    --gt-mute: #7a565c;
    --gt-tint: #f6e6e3;
    --gt-night: #4a0b16;
}

/* ---------- 17. Смуга ключових тез ---------- */
.GtStrip-17 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1px;
    margin: 0 0 30px;
    background: rgba(107, 18, 32, .14);
    border: 2px solid rgba(107, 18, 32, .14);
    border-radius: 12px;
    overflow: hidden;
}
.GtStrip-17__cell {
    background: linear-gradient(180deg, #fff, rgba(246, 230, 227, .85));
    padding: 16px 16px 14px;
    text-align: center;
}
.GtStrip-17__key {
    font-family: "Franklin Gothic Medium", Arial, sans-serif;
    font-size: 22px;
    font-weight: 900;
    line-height: 1.15;
    background: linear-gradient(100deg, var(--gt-main), var(--gt-gold));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    -webkit-text-fill-color: transparent;
}
.GtStrip-17__cap {
    font-family: "Franklin Gothic Medium", Arial, sans-serif;
    font-size: 11px;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gt-mute);
    margin-top: 5px;
    line-height: 1.5;
}

/* ---------- 18. Бейджі-теги ---------- */
.GtChips-18 {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin: 0 0 26px;
    padding: 0;
    list-style: none;
}
.GtChips-18 li {
    margin: 0;
    font-family: "Franklin Gothic Medium", Arial, sans-serif;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--gt-wine);
    background: rgba(212, 160, 23, .14);
    border: 1px solid rgba(212, 160, 23, .5);
    border-radius: 999px;
    padding: 5px 13px;
    line-height: 1.6;
}

/* ---------- 19. Блок зв'язку в кінці документа ---------- */
.GtCall-19 {
    margin: 34px 0 0;
    padding: 24px 26px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--gt-night), var(--gt-wine));
    border: 2px solid rgba(212, 160, 23, .55);
    color: rgba(255, 255, 255, .8);
}
.GtCall-19__title {
    font-family: "Franklin Gothic Medium", Arial, sans-serif;
    font-size: 15px;
    font-weight: 900;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--gt-gold);
    margin-bottom: 8px;
}
.GtCall-19__text {
    font-size: 14.5px;
    line-height: 1.75;
    margin: 0;
    color: rgba(255, 255, 255, .78);
}
.GtCall-19__text a {
    color: #fff;
    text-decoration: underline;
    text-decoration-color: rgba(212, 160, 23, .8);
}
.GtCall-19__text a:hover { color: var(--gt-gold); }

/* ---------- 20. Смуга повідомлення про cookie ---------- */
.GtCookie-20 {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(74, 11, 22, .97);
    color: #fff;
    padding: 16px 22px;
    z-index: 1000;
    border-top: 3px solid var(--gt-gold);
    backdrop-filter: blur(12px);
}
.GtCookie-20__row {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    gap: 16px;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}
.GtCookie-20__text {
    flex: 1;
    min-width: 220px;
    font: 13.5px/1.7 "Franklin Gothic Medium", Arial, sans-serif;
    color: rgba(255, 255, 255, .78);
}
.GtCookie-20__text a { color: var(--gt-gold); text-decoration: underline; }
.GtCookie-20__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.GtCookie-20__yes,
.GtCookie-20__no {
    padding: 10px 20px;
    border-radius: 999px;
    cursor: pointer;
    border: 2px solid transparent;
    font: 800 12px/1 "Franklin Gothic Medium", Arial, sans-serif;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.GtCookie-20__yes {
    background: linear-gradient(135deg, var(--gt-main), var(--gt-wine));
    border-color: var(--gt-gold);
    color: #fff;
}
.GtCookie-20__no {
    background: transparent;
    color: rgba(255, 255, 255, .74);
    border-color: rgba(255, 255, 255, .28);
}
.GtCookie-20--off { display: none; }
