/* =====================================================================
   Static-clone overrides

   This page's weather box (#weatherWidget) was originally populated at
   runtime by js/widget.js, which does a document.write() of a further
   <script> tag pointing at wetter24.de's live widget service -- there is
   no way to reproduce that live lookup in a static, script-free clone.
   In its place we reproduce the single weather snapshot shown in the
   reference screenshot as plain static markup/CSS below.

   The visitor-counter row further down (Besucher Heute / Gestern /
   Gesamt / Online) is left pointing directly at the live
   speedcounter.net service for the two images the archive never
   captured (a real user's browser can reach that live service, unlike
   this sandbox) -- exactly matching the reference screenshot, where
   those same two images also aren't shown.
   ===================================================================== */

.static-weather {
    width: 155px;
    background-color: #0161ac;
    color: #ffffff;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    padding: 14px 12px 16px 12px;
    box-sizing: border-box;
}
.static-weather__title {
    font-size: 19px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 4px;
}
.static-weather__date {
    font-size: 16px;
    margin-bottom: 18px;
}
.static-weather__lo {
    font-size: 22px;
    text-align: right;
    line-height: 1.2;
}
.static-weather__hi {
    font-size: 28px;
    font-weight: bold;
    color: #ffdd00;
    text-align: right;
    line-height: 1.2;
    margin-bottom: 26px;
}
.static-weather__more {
    font-size: 12px;
}
.static-weather__more a {
    color: #ffdd00;
    font-weight: normal;
    text-decoration: none;
}
.static-weather__more a:hover {
    text-decoration: underline;
}
