/* =========================================================
   THEME
========================================================= */

.theme-malleus {

    --page-bg: #F3FAF3;
    --card-bg: #FFFFFF;

    --text: #1E3026;

    --accent: #78A982;
    --accent-2: #A9CBAF;

    --deep: #315A3C;

    --soft: #E0F0E2;
    --line: #668D6E;

    --white: #FFFFFF;

    --muted: #6D7E72;

    --mint: #CFE7D3;
    --sage: #B8D3BD;
    --pale: #EEF7EF;

    --shadow:
        5px 6px 0 rgba(49,90,60,.10);

    --soft-shadow:
        0 8px 25px rgba(49,90,60,.09);

    background:
        radial-gradient(
            circle at 8% 12%,
            rgba(169,203,175,.25),
            transparent 30%
        ),
        radial-gradient(
            circle at 92% 78%,
            rgba(120,169,130,.15),
            transparent 30%
        ),
        var(--page-bg);

    color:
        var(--text);

    cursor:
        url("https://i.postimg.cc/rs8V4mFn/tumblr-59ab6c1acb1dc70539e3416543951644-5fc0f5d2-500-ezgif-com-resize.gif"),
        pointer;
}


/* =========================================================
   SCROLLING
========================================================= */

html {
    scroll-behavior: smooth;
}


/* =========================================================
   BASE
========================================================= */

.theme-malleus {

    min-height: 100vh;

    font-family:
        "DM Sans",
        sans-serif;

    line-height: 1.6;
}


.theme-malleus *,
.theme-malleus *::before,
.theme-malleus *::after {
    box-sizing: border-box;
}


.theme-malleus img {
    max-width: 100%;
    display: block;
}


.theme-malleus a {
    color: inherit;
    text-decoration: none;
}


.theme-malleus ::selection {
    background: var(--accent);
    color: white;
}


/* =========================================================
   LEFT SIDEBAR
========================================================= */

.subpage-sidebar {

    position: fixed;

    left: 25px;
    top: 25px;
    bottom: 25px;

    width: 190px;
    height: 530px;

    padding: 25px 18px;

    display: flex;
    flex-direction: column;

    background:
        rgba(255,255,255,.84);

    border:
        1.5px solid rgba(49,90,60,.15);

    border-radius: 28px;

    box-shadow:
        0 12px 35px rgba(49,90,60,.09);

    backdrop-filter:
        blur(15px);

    z-index: 1000;
}


.sidebar-profile {

    position: relative;

    text-align: center;

    padding-bottom: 25px;

    border-bottom:
        1px dashed rgba(49,90,60,.23);
}


.sidebar-avatar {

    width: 82px;
    height: 82px;

    margin: 0 auto 12px;

    border-radius: 50%;

    overflow: hidden;

    border:
        3px solid var(--soft);

    background:
        var(--soft);
}


.sidebar-avatar img {

    width: 100%;
    height: 100%;

    object-fit: cover;
}


.sidebar-status {

    position: absolute;

    width: 14px;
    height: 14px;

    right: 45px;
    top: 67px;

    border-radius: 50%;

    background:
        #8AC89A;

    border:
        3px solid white;
}


.sidebar-name {

    margin: 0;

    font-family:
        "Playfair Display",
        serif;

    font-size: 1.2rem;

    font-weight: 700;

    color:
        var(--deep);
}


.sidebar-handle {

    font-size: .68rem;

    color:
        var(--muted);
}


.sidebar-links {

    display: flex;
    flex-direction: column;

    gap: 5px;

    margin-top: 24px;
}


.sidebar-links a {

    position: relative;

    padding: 9px 12px;

    border-radius: 12px;

    font-size: .72rem;

    font-weight: 700;

    letter-spacing: .02em;

    color:
        var(--muted);

    transition:
        background .2s ease,
        color .2s ease,
        transform .2s ease;
}


.sidebar-links a:hover {

    background:
        var(--soft);

    color:
        var(--deep);

    transform:
        translateX(3px);
}


.sidebar-links a.active {

    background:
        var(--accent);

    color:
        white;

    box-shadow:
        3px 4px 0 rgba(49,90,60,.14);
}


.sidebar-footer {

    margin: 12px 0 0;

    text-align: center;

    font-size: .58rem;

    line-height: 1.5;

    color:
        var(--muted);
}


/* =========================================================
   EMPTY TOP BAR
========================================================= */

.subpage-topbar {

    position: relative;

    margin-left: 240px;

    width:
        calc(100% - 280px);

    min-height: 70px;

    padding: 15px 0;
}


/* =========================================================
   MAIN CONTENT
========================================================= */

.subpage-main {

    margin-left: 240px;

    width:
        calc(100% - 280px);

    max-width: 1250px;

    padding-bottom: 80px;
}


/* =========================================================
   HERO
========================================================= */

.home-hero {

    position: relative;

    min-height: 400px;

    display: grid;

    grid-template-columns:
        1.15fr .85fr;

    margin-bottom: 65px;

    overflow: hidden;

    border:
        1.5px solid rgba(49,90,60,.18);

    border-radius: 32px;

    background:
        linear-gradient(
            135deg,
            rgba(255,255,255,.96),
            rgba(224,240,226,.80)
        );

    box-shadow:
        var(--shadow);
}


.home-hero::before {

    content: "";

    position: absolute;

    width: 280px;
    height: 280px;

    left: -100px;
    top: -100px;

    border-radius: 50%;

    background:
        rgba(169,203,175,.18);
}


.hero-text {

    position: relative;

    z-index: 3;

    display: flex;

    flex-direction: column;

    justify-content: center;

    padding: 55px 45px;
}


.hero-text h1 {

    margin: 0;

    color:
        var(--deep);

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(3.5rem, 7vw, 6.5rem);

    line-height: .83;

    letter-spacing: -.07em;
}


.hero-text h2 {

    margin: 10px 0 20px;

    color:
        var(--accent);

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(1.8rem, 4vw, 3rem);

    line-height: 1;
}


.hero-text p {

    max-width: 570px;

    margin: 0 0 20px;

    color:
        var(--muted);

    font-size: .85rem;
}


.hero-buttons {

    display: flex;

    flex-wrap: wrap;

    gap: 9px;
}


.home-button {

    display: inline-block;

    padding: 9px 17px;

    border:
        1.5px solid var(--deep);

    border-radius: 100px;

    background:
        var(--deep);

    color:
        white;

    font-size: .63rem;

    font-weight: 800;

    letter-spacing: .04em;

    transition:
        transform .2s ease,
        box-shadow .2s ease;
}


.home-button:hover {

    transform:
        translateY(-3px);

    box-shadow:
        3px 4px 0 rgba(49,90,60,.15);
}


.home-button.secondary {

    background:
        white;

    color:
        var(--deep);
}


.hero-art {

    position: relative;

    min-height: 420px;

    min-width: 400px;

    display: flex;

    align-items: flex-end;

    justify-content: center;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            var(--soft),
            #F2F8F2
        );
}


.hero-art img {

    position: relative;

    z-index: 2;

    width: 90%;

    object-fit: contain;

    object-position: bottom center;

    filter:
        drop-shadow(
            8px 10px 0 rgba(49,90,60,.08)
        );

    transition:
        transform .35s ease;
}


.hero-art:hover img {

    transform:
        translateY(-7px)
        rotate(1deg);
}


.hero-decoration {

    position: absolute;

    z-index: 4;

    color:
        var(--accent);

    font-weight: 700;
}


.hero-star {

    left: 35px;
    top: 45px;

    font-size: 2rem;
}


.hero-heart {

    right: 35px;
    top: 100px;

    color:
        var(--accent-2);

    font-size: 1.6rem;
}


/* =========================================================
   CONTENT SECTIONS
========================================================= */

.content-section {

    margin-bottom: 75px;

    scroll-margin-top: 30px;
}


.section-heading {

    display: flex;

    align-items: flex-end;

    justify-content: space-between;

    margin-bottom: 22px;

    padding-bottom: 12px;

    border-bottom:
        1.5px dashed rgba(49,90,60,.20);
}


.section-heading .eyebrow {

    display: block;

    margin-bottom: 5px;

    color:
        var(--accent);

    font-size: .6rem;

    font-weight: 800;

    letter-spacing: .16em;
}


.section-heading h2 {

    margin: 0;

    color:
        var(--deep);

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(2rem, 4vw, 3.1rem);

    line-height: .95;
}


.section-symbol {

    color:
        var(--accent-2);

    font-size: 1.5rem;
}


/* =========================================================
   ABOUT
========================================================= */

.about-layout {

    display: grid;

    grid-template-columns:
        1.2fr .8fr;

    gap: 15px;
}


.intro-card {

    position: relative;

    min-height: 330px;

    padding: 32px;

    overflow: hidden;

    border-radius: 23px;

    background:
        white;

    border:
        1.5px solid rgba(49,90,60,.14);

    box-shadow:
        var(--soft-shadow);
}


.intro-card::after {

    content: "♡";

    position: absolute;

    right: 20px;
    bottom: -25px;

    color:
        rgba(169,203,175,.25);

    font-size: 9rem;

    line-height: 1;
}


.card-label {

    display: inline-block;

    margin-bottom: 8px;

    color:
        var(--accent);

    font-size: .58rem;

    font-weight: 800;

    letter-spacing: .14em;
}


.boundary-label {

    display: inline-block;

    margin-bottom: 8px;

    color:
        var(--accent);

    font-size: 1rem;

    font-weight: 800;

    letter-spacing: .14em;
}


.intro-card h3 {

    position: relative;

    z-index: 2;

    margin: 0 0 15px;

    color:
        var(--deep);

    font-family:
        "Playfair Display",
        serif;

    font-size: 1.9rem;
}


.intro-card p {

    position: relative;

    z-index: 2;

    max-width: 620px;

    color:
        var(--muted);

    font-size: .8rem;
}


.little-stamp {

    position: absolute;

    z-index: 3;

    right: 25px;
    bottom: 25px;

    padding: 7px 12px;

    transform:
        rotate(-4deg);

    border:
        1.5px dashed var(--accent);

    color:
        var(--accent);

    font-size: .52rem;

    font-weight: 800;

    letter-spacing: .08em;
}


/* =========================================================
   BASIC INFO
========================================================= */

.basic-info-card {

    padding: 27px;

    border-radius: 23px;

    background:
        var(--soft);

    border:
        1.5px solid rgba(49,90,60,.10);
}


.info-list {

    margin-top: 7px;
}


.info-row {

    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 15px;

    padding: 10px 0;

    border-bottom:
        1px dashed rgba(49,90,60,.18);
}


.info-row:last-child {

    border-bottom:
        none;
}


.info-row span {

    color:
        var(--muted);

    font-size: .58rem;

    font-weight: 700;

    letter-spacing: .08em;
}


.info-row strong {

    color:
        var(--deep);

    font-size: .68rem;

    text-align: right;
}


/* =========================================================
   CURRENTLY
========================================================= */

.currently-card {

    display: grid;

    grid-template-columns:
        .7fr 1.3fr;

    min-height: 350px;

    margin-bottom: 75px;

    overflow: hidden;

    border-radius: 28px;

    background:
        var(--deep);

    color:
        white;

    box-shadow:
        6px 7px 0 rgba(49,90,60,.14);
}


.currently-art {

    position: relative;

    min-height: 350px;

    display: flex;

    align-items: flex-end;

    justify-content: center;

    overflow: hidden;

    background:
        linear-gradient(
            145deg,
            var(--accent),
            var(--accent-2)
        );
}


.currently-art img {

    position: relative;

    z-index: 2;

    width: 95%;
    height: 95%;

    object-fit: contain;

    object-position: bottom center;

    filter:
        drop-shadow(
            8px 9px 0 rgba(49,90,60,.12)
        );
}


.currently-content {

    padding: 40px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}


.currently-content .card-label {

    color:
        var(--soft);
}


.currently-content h2 {

    margin: 0 0 12px;

    font-family:
        "Playfair Display",
        serif;

    font-size:
        clamp(2rem, 5vw, 3.5rem);

    line-height: .95;
}


.currently-content > p {

    max-width: 550px;

    color:
        rgba(255,255,255,.72);

    font-size: .8rem;
}


.currently-list {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 8px;

    margin-top: 18px;
}


.currently-list > div {

    padding: 11px;

    border-radius: 12px;

    background:
        rgba(255,255,255,.09);
}


.currently-list small {

    display: block;

    margin-bottom: 3px;

    color:
        var(--soft);

    font-size: .49rem;

    font-weight: 800;

    letter-spacing: .1em;
}


.currently-list strong {

    display: block;

    font-size: .62rem;
}


/* =========================================================
   BYI / DNI
========================================================= */

.boundaries-grid {

    display: grid;

    grid-template-columns:
        1fr 1fr;

    gap: 15px;
}


.boundary-card {

    position: relative;

    min-height: 300px;

    padding: 28px;

    overflow: hidden;

    border-radius: 23px;

    background:
        white;

    border:
        1.5px solid rgba(49,90,60,.14);

    box-shadow:
        3px 4px 0 rgba(49,90,60,.07);
}


.boundary-card p {

    position: relative;

    z-index: 2;

    color:
        var(--muted);

    font-size: .76rem;
}


.boundary-card ul {

    position: relative;

    z-index: 2;

    margin: 17px 0 0;

    padding-left: 17px;

    color:
        var(--muted);

    font-size: .7rem;
}


.boundary-card li {

    margin-bottom: 6px;
}


.boundary-card.note img {

    max-height: 250px;

    width: auto;

    margin: 0 auto 15px;

    border-radius: 12px;
}


/* =========================================================
   NAVIGATION
========================================================= */

.navigation-grid {

    display: grid;

    grid-template-columns:
        repeat(3, 1fr);

    gap: 13px;
}


.navigation-card {

    position: relative;

    min-height: 220px;

    padding: 25px;

    overflow: hidden;

    border-radius: 20px;

    background:
        white;

    border:
        1.5px solid rgba(49,90,60,.13);

    transition:
        transform .25s ease,
        box-shadow .25s ease,
        background .25s ease;
}


.navigation-card:hover {

    transform:
        translateY(-6px);

    background:
        var(--pale);

    box-shadow:
        5px 7px 0 rgba(49,90,60,.10);
}


.navigation-icon {

    display: flex;

    align-items: center;

    justify-content: center;

    width: 38px;
    height: 38px;

    margin-bottom: 12px;

    border-radius: 12px;

    background:
        var(--soft);

    color:
        var(--accent);

    font-size: 1rem;

    position: absolute;

    right: 17px;
    top: 13px;

    font-family:
        "Playfair Display",
        serif;
}


.navigation-card .card-label {

    margin-bottom: 3px;
}


.navigation-card h3 {

    margin: 0 0 7px;

    color:
        var(--deep);

    font-family:
        "Playfair Display",
        serif;

    font-size: 1.35rem;
}


.navigation-card p {

    margin: 0;

    color:
        var(--muted);

    font-size: .7rem;
}


.navigation-arrow {

    position: absolute;

    right: 20px;
    bottom: 18px;

    color:
        var(--accent);

    font-weight: 800;

    transition:
        transform .2s ease;
}


.navigation-card:hover .navigation-arrow {

    transform:
        translateX(4px);
}


/* =========================================================
   CURSOR
========================================================= */

.theme-malleus a:hover,
.theme-malleus button:hover {

    cursor:
        url("https://i.postimg.cc/rs8V4mFn/tumblr-59ab6c1acb1dc70539e3416543951644-5fc0f5d2-500-ezgif-com-resize.gif"),
        default;
}


/* =========================================================
FLOATING WIDGETS
========================================================= */


.floating-widget {

    position: fixed;

    width: 245px;

    padding: 15px;

    margin: 0;

    overflow: hidden;

    border-radius: 23px;

    background:
        rgba(255,255,255,.96);

    border:
        1.5px solid rgba(49,90,60,.15);

    box-shadow:
        4px 5px 0 rgba(49,90,60,.08),
        0 12px 30px rgba(49,90,60,.07);

    backdrop-filter:
        blur(12px);

    -webkit-backdrop-filter:
        blur(12px);

    z-index: 5000;

    color:
        var(--text);
}


/* =========================================================
   WIDGET POSITIONS
========================================================= */

.updates-widget {

    top: 25px;

    right: 285px;
}


.guestbook-widget {

    top: 25px;

    right: 25px;
}


/* =========================================================
   DRAG HANDLE
========================================================= */

.widget-drag-handle {

    position: absolute;

    z-index: 50;

    top: 10px;
    right: 10px;

    width: 24px;
    height: 24px;

    display: flex;

    align-items: center;
    justify-content: center;

    cursor: grab;

    user-select: none;
    -webkit-user-select: none;

    border: none;

    background: transparent;

    padding: 0;

    color:
        var(--accent);

    border-radius: 7px;
}


.widget-drag-handle:hover {

    background:
        var(--soft);
}


.widget-drag-handle:active {

    cursor: grabbing;
}


.drag-indicator {

    display: flex;

    align-items: center;
    justify-content: center;

    width: 24px;
    height: 24px;

    background:
        transparent;

    border:
        none;

    color:
        var(--accent);

    font-size:
        .85rem;

    line-height: 1;

    opacity: .7;
}


.widget-drag-handle:hover .drag-indicator {

    color:
        var(--deep);

    opacity: 1;
}


.widget-dropdown {

    position: relative;

    width: 100%;

    margin: 0;
    padding: 0;
}


.widget-dropdown summary {

    list-style: none;
}


.widget-dropdown summary::-webkit-details-marker {

    display: none;
}


.widget-dropdown summary::marker {

    display: none;
}


/* =========================================================
   DROPDOWN HEADER
========================================================= */

.widget-summary {

    position: relative;

    z-index: 10;

    display: flex;

    align-items: center;

    gap: 10px;

    width: 100%;

    min-height: 42px;

    margin: 0;

    padding: 2px 30px 12px 0;

    border-bottom:
        1px dashed rgba(49,90,60,.18);

    cursor: pointer;

    color:
        var(--deep);

    background:
        transparent;

    user-select: none;

    -webkit-user-select: none;
}

.widget-summary,
.widget-summary:hover,
.widget-summary:focus,
.widget-summary:active {

    outline: none;

    appearance: none;
    -webkit-appearance: none;

    background-color: transparent;
}


/* =========================================================
   WIDGET SYMBOL
========================================================= */

.rail-symbol {

    flex-shrink: 0;

    width: 32px;
    height: 32px;

    display: flex;

    align-items: center;
    justify-content: center;

    border-radius: 10px;

    background:
        var(--soft);

    color:
        var(--accent);

    font-size:
        .95rem;

    line-height: 1;
}


/* =========================================================
   SUMMARY TEXT
========================================================= */

.summary-text {

    min-width: 0;

    display: flex;

    flex-direction: column;

    justify-content: center;

    flex: 1;
}


.rail-eyebrow {

    display: block;

    color:
        var(--accent);

    font-size:
        .45rem;

    font-weight:
        800;

    letter-spacing:
        .12em;

    line-height:
        1.3;
}


.summary-title {

    display: block;

    margin-top: 2px;

    color:
        var(--deep);

    font-family:
        "Playfair Display",
        serif;

    font-size:
        1.1rem;

    font-weight:
        700;

    line-height:
        1;
}


/* =========================================================
   CUSTOM DROPDOWN ARROW
========================================================= */

.dropdown-arrow {

    position: absolute;

    right: 2px;
    top: 50%;

    width: 22px;
    height: 22px;

    display: flex;

    align-items: center;
    justify-content: center;

    transform:
        translateY(-65%);

    border-radius: 7px;

    background:
        var(--soft);

    color:
        var(--accent);

    font-size:
        .9rem;

    font-weight:
        700;

    line-height: 1;

    transition:
        transform .2s ease,
        background .2s ease,
        color .2s ease;
}


.widget-dropdown[open] .dropdown-arrow {

    transform:
        translateY(-35%)
        rotate(180deg);

    background:
        var(--accent);

    color:
        white;
}


.widget-summary:hover .dropdown-arrow {

    background:
        var(--accent);

    color:
        white;
}


/* =========================================================
   DROPDOWN CONTENT
========================================================= */

.widget-dropdown-content {

    position: relative;

    padding-top: 13px;
}


/* =========================================================
   UPDATES
========================================================= */

.updates-list {

    position: relative;

    max-height:
        265px;

    overflow-y:
        auto;

    padding-right:
        5px;
}


.updates-list::-webkit-scrollbar {

    width:
        5px;
}


.updates-list::-webkit-scrollbar-track {

    background:
        var(--pale);

    border-radius:
        10px;
}


.updates-list::-webkit-scrollbar-thumb {

    background:
        var(--accent-2);

    border-radius:
        10px;
}


.update-entry {

    position: relative;

    padding:
        0 18px 13px 0;

    margin-bottom:
        13px;

    border-bottom:
        1px dashed rgba(49,90,60,.15);
}


.update-entry:last-child {

    margin-bottom:
        0;

    border-bottom:
        none;
}


.update-entry time {

    display:
        block;

    margin-bottom:
        3px;

    color:
        var(--accent);

    font-size:
        .48rem;

    font-weight:
        800;

    letter-spacing:
        .08em;
}


.update-entry p {

    margin:
        0;

    color:
        var(--muted);

    font-size:
        .63rem;

    line-height:
        1.55;
}


.update-mark {

    position:
        absolute;

    right:
        2px;

    top:
        0;

    color:
        var(--accent-2);

    font-size:
        .7rem;
}


/* =========================================================
   GUESTBOOK INTRO
========================================================= */

.guestbook-intro {

    position:
        relative;

    margin-bottom:
        13px;

    padding:
        10px 12px;

    border-radius:
        13px;

    background:
        var(--pale);

    border:
        1px solid rgba(49,90,60,.08);
}


.guestbook-intro p {

    margin:
        0 0 5px;

    color:
        var(--muted);

    font-size:
        .61rem;

    line-height:
        1.5;
}


.guestbook-intro span {

    color:
        var(--accent);

    font-size:
        .54rem;

    font-weight:
        700;

    font-style:
        italic;
}


/* =========================================================
   C-BOX
========================================================= */

.guestbook-frame {

    position:
        relative;

    width:
        100%;

    height:
        300px;

    overflow:
        hidden;

    border-radius:
        15px;

    border:
        1px solid rgba(49,90,60,.12);

    background:
        var(--pale);
}


.guestbook-frame iframe {

    display:
        block;

    width:
        100%;

    height:
        100%;

    min-height:
        300px;

    border:
        none;

    visibility:
        visible;

    opacity:
        1;
}


/* =========================================================
   GUESTBOOK FOOTER
========================================================= */

.guestbook-footer {

    position:
        relative;

    display:
        flex;

    align-items:
        center;

    justify-content:
        center;

    gap:
        7px;

    margin-top:
        10px;

    color:
        var(--muted);

    font-size:
        .49rem;

    text-align:
        center;

    letter-spacing:
        .03em;
}


.guestbook-footer span {

    color:
        var(--accent);
}


.floating-widget {

    flex:
        none;

    float:
        none;

    clear:
        none;

    grid-column:
        auto;

    grid-row:
        auto;
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 1050px) {

    .floating-widget {

        width:
            245px;
    }

    .updates-widget {

        top:
            20px;

        right:
            275px;
    }

    .guestbook-widget {

        top:
            20px;

        right:
            20px;
    }
}


@media (max-width: 720px) {

    .subpage-sidebar {

        position:
            relative;

        left:
            auto;

        top:
            auto;

        bottom:
            auto;

        width:
            calc(100% - 20px);

        height:
            auto;

        margin:
            10px auto;

        padding:
            10px;

        border-radius:
            20px;
    }


    .sidebar-profile {

        flex-shrink:
            0;
    }


    .sidebar-name {

        display:
            none;
    }


    .sidebar-links {

        overflow-x:
            auto;

        flex-wrap:
            nowrap;

        padding-bottom:
            2px;
    }


    .sidebar-links a {

        flex-shrink:
            0;
    }


    .subpage-topbar {

        width:
            calc(100% - 20px);

        margin:
            0 10px;

        min-height:
            30px;
    }


    .subpage-main {

        width:
            calc(100% - 20px);

        margin:
            0 10px;
    }


    .home-hero {

        display:
            flex;

        flex-direction:
            column;

        border-radius:
            25px;
    }


    .hero-text {

        padding:
            38px 25px 25px;
    }


    .hero-text h1 {

        font-size:
            3.5rem;
    }


    .hero-art {

        min-height:
            330px;

        min-width:
            0;
    }


    .hero-art img {

        width:
            85%;

        height:
            330px;
    }


    .about-layout,
    .currently-card,
    .boundaries-grid {

        grid-template-columns:
            1fr;
    }


    .intro-card {

        min-height:
            300px;
    }


    .currently-art {

        min-height:
            300px;
    }


    .currently-content {

        padding:
            30px 25px;
    }


    .currently-list {

        grid-template-columns:
            1fr;
    }


    .navigation-grid {

        grid-template-columns:
            1fr;
    }


    .floating-widget {

        width:
            min(300px, calc(100vw - 30px));

        max-width:
            calc(100vw - 30px);

        padding:
            13px;

        border-radius:
            20px;
    }


    .updates-widget {

        top:
            auto;

        right:
            15px;

        bottom:
            15px;
    }


    .guestbook-widget {

        top:
            auto;

        right:
            15px;

        bottom:
            15px;
    }


    .guestbook-frame {

        height:
            400px;
    }


    .guestbook-frame iframe {

        min-height:
            400px;
    }
}