/* =========================================================
   DESIGN TOKENS AND GLOBAL VARIABLES
========================================================= */

:root {
    --ink:#163b39;
    --soft:#58716d;
    --pine:#174f49;
    --dark:#0c3c38;
    --sea:#2f7580;
    --sea2:#b9ddda;
    --mist:#edf5f1;
    --white:#fff;
    --line:#d5e4de;
    --sun:#f1c66e;
    --coral:#cf6d5e;
    --shadow:0 18px 50px rgba(18,66,61,.12);
    --max:1240px
}

/* =========================================================
   GLOBAL RESET AND BASE STYLES
========================================================= */

* {
    box-sizing:border-box
}

html {
    scroll-behavior:smooth
}

body {
    margin:0;
    color:var(--ink);
    background:radial-gradient(circle at 88% 0%,rgba(185,221,218,.55),transparent 31rem),var(--mist);
    font-family:"DM Sans",sans-serif
}

button,input {
    font:inherit
}

button:focus-visible,a:focus-visible,input:focus-visible {
    outline:3px solid var(--sun);
    outline-offset:3px
}

/* =========================================================
   ACCESSIBILITY
========================================================= */

.skip-link {
    position:fixed;
    top:-5rem;
    left:1rem;
    z-index:3000;
    background:var(--dark);
    color:#fff;
    padding:.8rem 1rem;
    border-radius:10px
}

.skip-link:focus {
    top:1rem
}

/* =========================================================
   HEADER, BRANDING, AND NAVIGATION
========================================================= */

.site-header {
    width:min(calc(100% - 2rem),var(--max));
    min-height:90px;
    margin:auto;
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:1rem
}

.brand {
    display:flex;
    align-items:center;
    gap:.8rem;
    color:var(--ink);
    text-decoration:none
}

.brand-mark {
    width:45px;
    height:45px;
    display:grid;
    place-items:center;
    border-radius:14px;
    background:var(--pine);
    color:#fff;
    font-size:1.7rem
}

.brand strong,.brand small {
    display:block
}

.brand strong {
    font-family:"Fraunces";
    font-size:1.05rem
}

.brand small {
    color:var(--soft);
    font-size:.72rem
}

.main-nav {
    display:flex;
    gap:.35rem;
    padding:.35rem;
    border:1px solid var(--line);
    border-radius:999px;
    background:rgba(255,255,255,.7)
}

.nav-link {
    border:0;
    background:transparent;
    color:var(--soft);
    padding:.62rem 1rem;
    border-radius:999px;
    text-decoration:none;
    font-weight:700;
    cursor:pointer
}

.nav-link:hover,.nav-link.active {
    background:var(--pine);
    color:#fff
}

.nav-link span {
    margin-left:.25rem
}

/* =========================================================
   HERO SECTION
========================================================= */

.hero {
    width:min(calc(100% - 2rem),var(--max));
    min-height:550px;
    margin:1.5rem auto 0;
    padding:3rem;
    display:grid;
    grid-template-columns:.92fr 1.08fr;
    align-items:center;
    gap:3.5rem;
    border-radius:36px;
    background:linear-gradient(115deg,rgba(255,255,255,.94),rgba(237,246,241,.8));
    box-shadow:var(--shadow);
    overflow:hidden
}

.eyebrow {
    display:block;
    margin-bottom:.65rem;
    color:var(--sea);
    font-size:.74rem;
    font-weight:800;
    letter-spacing:.13em;
    text-transform:uppercase
}

.hero h1,.section-heading h2,.saved-heading h2 {
    margin:0;
    font-family:"Fraunces";
    letter-spacing:-.045em
}

.hero h1 {
    font-size:clamp(3.2rem,6.9vw,5.9rem);
    line-height:.96
}

.hero h1 em {
    color:var(--sea)
}

.hero-copy>p {
    max-width:34rem;
    color:var(--soft);
    font-size:1.06rem;
    line-height:1.7
}

.hero-actions {
    display:flex;
    flex-wrap:wrap;
    gap:.8rem;
    margin-top:2rem
}

.button {
    min-height:48px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    padding:.75rem 1.2rem;
    border:1px solid transparent;
    border-radius:13px;
    text-decoration:none;
    font-weight:800;
    cursor:pointer
}

.primary {
    background:var(--pine);
    color:#fff
}

.secondary {
    background:#fff;
    color:var(--pine);
    border-color:var(--line)
}

.quiet-note {
    max-width:34rem;
    margin-top:1.5rem;
    display:flex;
    gap:.65rem;
    padding:.8rem .9rem;
    background:rgba(185,221,218,.35);
    border-radius:13px;
    color:var(--soft)
}

.quiet-note p {
    margin:0;
    font-size:.76rem;
    line-height:1.5
}

/* =========================================================
   HERO ILLUSTRATION
   Builds a detailed Maine coastal scene using CSS shapes.
========================================================= */

.hero-art {
    position: relative;
    height: 440px;
    overflow: hidden;

    border-radius: 32px;
    background:
            linear-gradient(
                    180deg,
                    #bfe1df 0%,
                    #dceee8 58%,
                    #edf5e9 100%
            );

    box-shadow: var(--shadow);
}


/* =========================================================
   SKY AND CLOUDS
========================================================= */

.sun {
    position: absolute;
    top: 48px;
    right: 72px;

    width: 80px;
    height: 80px;

    border-radius: 50%;
    background: var(--sun);

    box-shadow:
            0 0 0 14px rgba(241, 198, 110, 0.12),
            0 0 50px rgba(241, 198, 110, 0.35);
}

.cloud {
    position: absolute;

    width: 82px;
    height: 24px;

    border-radius: 999px;
    background: rgba(255, 255, 255, 0.56);
}

.cloud::before,
.cloud::after {
    content: "";
    position: absolute;

    border-radius: 50%;
    background: inherit;
}

.cloud::before {
    left: 14px;
    bottom: 7px;

    width: 35px;
    height: 35px;
}

.cloud::after {
    right: 12px;
    bottom: 5px;

    width: 28px;
    height: 28px;
}

.cloud-one {
    top: 72px;
    left: 52px;
}

.cloud-two {
    top: 135px;
    right: 168px;

    transform: scale(0.7);
    opacity: 0.72;
}


/* =========================================================
   ISLANDS
========================================================= */

.island {
    position: absolute;
    left: -10%;

    width: 120%;

    border-radius: 52% 52% 0 0;
}

.island-one {
    bottom: 95px;

    height: 190px;

    background:
            linear-gradient(
                    180deg,
                    #73a392,
                    #5c8f80
            );

    transform: rotate(-3deg);
}

.island-two {
    bottom: 45px;

    height: 150px;

    background:
            linear-gradient(
                    180deg,
                    #3d7880,
                    #28636c
            );

    transform: rotate(2deg);
}


/* =========================================================
   PINE TREES
========================================================= */

.tree {
    position: absolute;
    z-index: 3;

    color: #174f49;

    font-size: 100px;
    line-height: 1;

    filter: drop-shadow(
            0 5px 4px rgba(12, 60, 56, 0.12)
    );
}

.t1 {
    left: 42px;
    bottom: 107px;
}

.t2 {
    left: 114px;
    bottom: 88px;

    font-size: 74px;
    color: #28635b;
}

.t3 {
    right: 45px;
    bottom: 103px;

    font-size: 96px;
}

.t4 {
    right: 130px;
    bottom: 92px;

    font-size: 68px;
    color: #28635b;
}


/* =========================================================
   LIGHTHOUSE
========================================================= */

.lighthouse {
    position: absolute;
    bottom: 96px;
    left: 57%;
    z-index: 5;

    width: 44px;
    height: 104px;

    border-radius: 3px 3px 0 0;
    background:
            linear-gradient(
                    90deg,
                    #eee5d3,
                    #fff8eb 48%,
                    #ddd2bd
            );

    box-shadow:
            5px 8px 12px rgba(24, 62, 57, 0.13);
}

.lighthouse::before {
    content: "";
    position: absolute;
    top: -26px;
    left: -9px;

    border-right: 31px solid transparent;
    border-bottom: 26px solid #c96357;
    border-left: 31px solid transparent;
}

.lighthouse::after {
    content: "";
    position: absolute;
    top: -7px;
    left: -5px;

    width: 54px;
    height: 7px;

    border-radius: 2px;
    background: #174f49;
}

.lighthouse-light {
    position: absolute;
    top: 17px;
    left: 8px;

    width: 28px;
    height: 22px;

    border: 3px solid #174f49;
    border-radius: 3px;
    background: #f4c45e;

    box-shadow:
            0 0 18px rgba(244, 196, 94, 0.65);
}

.lighthouse-window {
    position: absolute;
    top: 52px;
    left: 15px;

    width: 14px;
    height: 18px;

    border-radius: 2px;
    background: #39727a;
}

.lighthouse-door {
    position: absolute;
    bottom: 0;
    left: 13px;

    width: 18px;
    height: 27px;

    border-radius: 8px 8px 0 0;
    background: #174f49;
}


/* =========================================================
   SHORELINE ROCKS
========================================================= */

.shore-rock {
    position: absolute;
    z-index: 6;

    border-radius: 55% 48% 35% 30%;
    background: #496d68;

    box-shadow:
            inset -6px -6px 0 rgba(17, 67, 62, 0.15);
}

.rock-one {
    left: 42%;
    bottom: 78px;

    width: 80px;
    height: 34px;

    transform: rotate(-5deg);
}

.rock-two {
    left: 49%;
    bottom: 65px;

    width: 64px;
    height: 27px;

    background: #5a7d74;

    transform: rotate(8deg);
}

.rock-three {
    right: 13%;
    bottom: 73px;

    width: 72px;
    height: 30px;

    background: #3f6864;

    transform: rotate(-8deg);
}


/* =========================================================
   WATER AND WAVES
========================================================= */

.water {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 4;

    height: 104px;

    overflow: hidden;

    background:
            linear-gradient(
                    180deg,
                    #91c5c7,
                    #72acb3
            );
}

.wave {
    position: absolute;

    height: 3px;

    border-radius: 999px;
    background: rgba(239, 248, 245, 0.72);
}

.wave-one {
    top: 21px;
    left: 8%;

    width: 110px;
}

.wave-two {
    top: 50px;
    left: 37%;

    width: 135px;
}

.wave-three {
    top: 72px;
    right: 8%;

    width: 95px;
}

.wave-four {
    top: 34px;
    right: 20%;

    width: 62px;
}

/* =========================================================
   SAILBOAT
========================================================= */

.sailboat {
    position: absolute;
    bottom: 36px;
    left: 24%;
    z-index: 9;

    width: 105px;
    height: 96px;

    filter: drop-shadow(
            0 8px 6px rgba(31, 77, 72, 0.18)
    );
}

.boat-mast {
    position: absolute;
    top: 3px;
    left: 53px;

    width: 3px;
    height: 72px;

    border-radius: 2px;
    background: #594a3b;
}

.boat-sail {
    position: absolute;

    width: 0;
    height: 0;
}

.boat-sail-left {
    top: 8px;
    left: 8px;

    border-top: 30px solid transparent;
    border-right: 42px solid #f7f0df;
    border-bottom: 30px solid transparent;
}

.boat-sail-right {
    top: 11px;
    left: 58px;

    border-top: 27px solid transparent;
    border-bottom: 27px solid transparent;
    border-left: 32px solid #cf6d5e;
}

.boat-hull {
    position: absolute;
    bottom: 11px;
    left: 14px;

    width: 82px;
    height: 21px;

    border-radius: 4px 4px 35px 35px;
    background:
            linear-gradient(
                    180deg,
                    #fff8eb 0 40%,
                    #174f49 40% 100%
            );

    transform: skewX(-10deg);
}

.boat-shadow {
    position: absolute;
    bottom: 0;
    left: 21px;

    width: 73px;
    height: 7px;

    border-radius: 50%;
    background: rgba(40, 99, 101, 0.25);
}


/* =========================================================
   FLOATING WEATHER CARD
========================================================= */

.float-card {
    position: absolute;
    z-index: 20;

    padding: 0.8rem 1rem;

    border: 1px solid rgba(255, 255, 255, 0.9);
    border-radius: 15px;

    background: rgba(255, 255, 255, 0.92);

    box-shadow:
            0 14px 30px rgba(21, 75, 70, 0.16);

    backdrop-filter: blur(10px);
}

.float-card small,
.float-card strong {
    display: block;
}

.float-card small {
    color: var(--soft);
    font-size: 0.68rem;
}

.float-card strong {
    font-size: 0.84rem;
}

.weather-card {
    bottom: 20px;
    left: 18px;

    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.weather-icon {
    width: 40px;
    height: 40px;

    display: grid;
    place-items: center;

    border-radius: 12px;
    background: var(--sea2);
    color: var(--pine);

    font-size: 1.35rem;
}

/* =========================================================
   MOOD FILTER CARDS
========================================================= */

.mood-strip {
    width:min(calc(100% - 2rem),990px);
    margin:-34px auto 4rem;
    position:relative;
    z-index:5;
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:.8rem;
    padding:.9rem;
    border:1px solid rgba(255,255,255,.9);
    border-radius:22px;
    background:rgba(255,255,255,.9);
    box-shadow:var(--shadow)
}

.mood-card {
    display:flex;
    align-items:center;
    gap:.7rem;
    padding:.75rem;
    border:0;
    border-radius:15px;
    background:transparent;
    text-align:left;
    cursor:pointer
}

.mood-card:hover {
    background:var(--mist)
}

.mood-card>span {
    width:42px;
    height:42px;
    display:grid;
    place-items:center;
    border-radius:12px;
    background:var(--sea2);
    font-weight:800
}

.mood-card strong,.mood-card small {
    display:block
}

.mood-card small {
    color:var(--soft);
    font-size:.7rem
}

/* =========================================================
   DISCOVERY SECTION AND FILTER TOOLBAR
========================================================= */

.discover,
.saved-section {
    width:min(calc(100% - 2rem),var(--max));
    margin:auto
}

.discover {
    padding-bottom:5rem
}

.section-heading,.saved-heading {
    display:flex;
    justify-content:space-between;
    align-items:flex-end;
    gap:1rem
}

.section-heading h2,.saved-heading h2 {
    font-size:clamp(2.2rem,4vw,3.35rem)
}

#resultCount {
    color:var(--soft);
    font-weight:700;
    font-size:.82rem
}

.toolbar {
    display:flex;
    justify-content:space-between;
    align-items:center;
    gap:1rem;
    margin:1.4rem 0
}

.filters {
    display:flex;
    gap:.55rem;
    overflow:auto
}

.filter {
    flex:0 0 auto;
    border:1px solid var(--line);
    background:rgba(255,255,255,.72);
    color:var(--soft);
    padding:.57rem .9rem;
    border-radius:999px;
    font-weight:700;
    cursor:pointer
}

.filter.active,.filter:hover {
    background:var(--pine);
    color:#fff
}

.search {
    width:min(260px,100%);
    min-height:43px;
    display:flex;
    align-items:center;
    gap:.4rem;
    padding:0 .8rem;
    border:1px solid var(--line);
    border-radius:999px;
    background:#fff;
    color:var(--sea)
}

.search input {
    width:100%;
    border:0;
    outline:0;
    background:transparent;
    color:var(--ink);
    font-size:.82rem
}

/* =========================================================
   PLACE LIST AND DESTINATION CARDS
========================================================= */

.explore-grid {
    display:grid;
    grid-template-columns:.92fr 1.08fr;
    gap:1.2rem;
    align-items:start
}

.place-list {
    display:grid;
    gap:.86rem;
    max-height:650px;
    overflow-y:auto;

    /* Leaves space for the first card's border and shadow. */
    padding:.4rem .5rem .5rem .4rem;

    scrollbar-width:thin;
    scrollbar-color:var(--sea2) transparent
}

.place-list::-webkit-scrollbar {
    width:8px
}

.place-list::-webkit-scrollbar-track {
    background:transparent
}

.place-list::-webkit-scrollbar-thumb {
    border-radius:999px;
    background:var(--sea2)
}

.place-list::-webkit-scrollbar-thumb:hover {
    background:var(--sea)
}

.place-card {
    display:grid;
    grid-template-columns:126px 1fr auto;
    gap:1rem;
    align-items:center;
    padding:.82rem;
    border:1px solid var(--line);
    border-radius:18px;
    background:rgba(255,255,255,.82);
    cursor:pointer;
    transition:.2s
}

.place-card:hover {
    transform:translateY(-2px);
    border-color:var(--sea);
    box-shadow:0 12px 28px rgba(22,79,73,.1)
}

.place-card.selected {
    border-color:var(--sea);
    box-shadow:
            0 0 0 2px rgba(47,117,128,.22),
            0 12px 28px rgba(22,79,73,.1)
}

.place-image {
    height:110px;
    border-radius:13px;
    overflow:hidden
}

.place-image svg {
    width:100%;
    height:100%;
    display:block
}

.place-type {
    color:var(--sea);
    font-size:.68rem;
    font-weight:800;
    letter-spacing:.08em;
    text-transform:uppercase
}

.place-card h3,.saved-card h3 {
    margin:.22rem 0 .34rem;
    font-size:1.03rem
}

.place-note {
    margin:0 0 .55rem;
    color:var(--soft);
    font-size:.76rem;
    line-height:1.45
}

.place-tags {
    display:flex;
    flex-wrap:wrap;
    gap:.35rem
}

.pill {
    padding:.28rem .48rem;
    border-radius:999px;
    background:var(--mist);
    color:var(--soft);
    font-size:.66rem;
    font-weight:700
}

.pill.calm {
    background:var(--sea2);
    color:var(--pine)
}

.save-button {
    width:40px;
    height:40px;
    display:grid;
    place-items:center;
    align-self:start;
    border:1px solid var(--line);
    border-radius:50%;
    background:#fff;
    color:var(--sea);
    font-size:1.15rem;
    cursor:pointer
}

.save-button.saved {
    background:var(--coral);
    border-color:var(--coral);
    color:#fff
}

/* =========================================================
   MAP AND CUSTOM MARKERS
========================================================= */

.map-wrap {
    position:sticky;
    top:1rem
}

.map-reset {
    position:absolute;
    z-index:500;
    top:1.2rem;
    right:1.2rem;
    padding:.52rem .75rem;
    border:1px solid var(--line);
    border-radius:10px;
    background:#fff;
    color:var(--pine);
    font-weight:800;
    cursor:pointer
}

#map {
    height:650px;
    border:8px solid #fff;
    border-radius:29px;
    box-shadow:var(--shadow);
    overflow:hidden
}

.custom-marker {
    width:34px;
    height:34px;
    display:grid;
    place-items:center;
    background:var(--pine);
    color:#fff;
    border:3px solid #fff;
    border-radius:50% 50% 50% 10%;
    transform:rotate(-45deg);
    box-shadow:0 5px 15px rgba(20,70,66,.35)
}

.custom-marker span {
    transform:rotate(45deg)
}

.saved-section {
    margin-bottom:5rem;
    padding:2rem;
    border:1px solid var(--line);
    border-radius:29px;
    background:rgba(255,255,255,.8);
    box-shadow:var(--shadow)
}

#closeSaved {
    padding:.52rem .8rem;
    border:1px solid var(--line);
    border-radius:10px;
    background:#fff;
    color:var(--pine);
    font-weight:800;
    cursor:pointer
}

.saved-grid {
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:1rem;
    margin-top:1.5rem
}

.saved-card {
    padding:1rem;
    border:1px solid var(--line);
    border-radius:18px;
    background:#fff
}

.saved-card .place-image {
    height:170px;
    margin-bottom:.9rem
}

.saved-card {
    position: relative;
    padding: 1rem;
}

.saved-card-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 1rem;
}

/* =========================================================
   FOOTER
========================================================= */

.site-footer {
    width:min(calc(100% - 2rem),var(--max));
    margin:0 auto;
    padding:2.2rem 0 2.7rem;
    border-top:1px solid var(--line);
    color:var(--soft)
}

.footer-top {
    display:grid;
    grid-template-columns:.72fr 1.28fr;
    gap:3rem;
    align-items:start
}

.footer-brand {
    display:inline-flex;
    align-items:center;
    gap:.8rem;
    color:var(--ink);
    text-decoration:none
}

.footer-brand-mark {
    width:43px;
    height:43px;
    display:grid;
    place-items:center;
    border-radius:14px;
    background:var(--pine);
    color:#fff;
    font-size:1.6rem
}

.footer-brand strong,
.footer-brand small {
    display:block
}

.footer-brand strong {
    font-family:"Fraunces";
    font-size:1.08rem
}

.footer-brand small {
    margin-top:.12rem;
    color:var(--soft);
    font-size:.72rem
}

.footer-links {
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:2rem
}

.footer-links h2 {
    margin:0 0 .55rem;
    color:var(--ink);
    font-family:"Fraunces";
    font-size:1.05rem;
    letter-spacing:-.02em
}

.footer-links p {
    max-width:30rem;
    margin:0;
    font-size:.76rem;
    line-height:1.6
}

.footer-bottom {
    margin-top:2rem;
    display:flex;
    justify-content:space-between;
    gap:2rem;
    padding-top:1.1rem;
    border-top:1px solid var(--line);
    font-size:.72rem
}

.footer-bottom p {
    margin:0
}

.footer-bottom p:last-child {
    max-width:34rem;
    text-align:right
}

.footer-bottom a {
    color:var(--pine);
    font-weight:700;
    text-decoration:none;
    transition:color .2s ease
}

.footer-bottom a:hover {
    color:var(--dark);
    text-decoration-thickness:2px
}

.footer-bottom a:focus-visible {
    border-radius:3px
}

/* =========================================================
   TOASTS AND EMPTY STATES
========================================================= */

.toast {
    position:fixed;
    left:50%;
    bottom:1.5rem;
    z-index:3000;
    transform:translate(-50%,120%);
    opacity:0;
    padding:.75rem 1rem;
    border-radius:999px;
    background:var(--dark);
    color:#fff;
    box-shadow:var(--shadow);
    transition:.25s;
    font-size:.84rem
}

.toast.show {
    transform:translate(-50%,0);
    opacity:1
}

.no-results {
    padding:2rem;
    border:1px dashed var(--line);
    border-radius:18px;
    color:var(--soft);
    text-align:center
}

/* =========================================================
   RESPONSIVE STYLES: TABLETS
========================================================= */

@media(max-width:960px) {
    .hero {
        grid-template-columns:1fr
    }

    .hero-copy {
        text-align:center
    }

    .hero-copy>p,.quiet-note {
        margin-left:auto;
        margin-right:auto
    }

    .hero-actions {
        justify-content:center
    }

    .quiet-note {
        text-align:left
    }

    .mood-strip {
        grid-template-columns:repeat(2,1fr);
        margin-top:1rem
    }

    .explore-grid {
        grid-template-columns:1fr
    }

    .map-wrap {
        position:static;
        order:-1
    }

    #map {
        height:410px
    }

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

    .place-list {
        max-height:none;
        overflow-y:visible;
        padding:0
    }
}

/* =========================================================
   RESPONSIVE STYLES: SMALL TABLETS AND PHONES
========================================================= */

@media(max-width:700px) {
    .brand small {
        display:none
    }

    .nav-link {
        padding:.55rem .75rem;
        font-size:.8rem
    }

    .hero {
        padding:2.2rem 1.2rem;
        border-radius:25px
    }

    .hero h1 {
        font-size:3.4rem
    }

    .hero-art {
        height:360px
    }

    .toolbar {
        flex-direction:column;
        align-items:stretch
    }

    .search {
        width:100%
    }

    .place-card {
        grid-template-columns:96px 1fr auto
    }

    .place-image {
        height:94px
    }

    .saved-grid {
        grid-template-columns:1fr
    }

    .footer-top {
        grid-template-columns:1fr
    }

    .footer-links {
        grid-template-columns:1fr 1fr
    }

    .footer-bottom {
        flex-direction:column;
        gap:.65rem
    }

    .footer-bottom p:last-child {
        text-align:left
    }
}

/* =========================================================
   RESPONSIVE STYLES: SMALL PHONES
========================================================= */

@media(max-width:470px) {
    .footer-links {
        grid-template-columns:1fr
    }

    .mood-strip {
        grid-template-columns:1fr
    }

    .section-heading {
        align-items:flex-start;
        flex-direction:column
    }

    .place-card {
        grid-template-columns:1fr auto
    }

    .place-image {
        grid-column:1/-1;
        height:165px
    }

    .saved-section {
        padding:1.2rem
    }
}