nav {
    position: fixed;
    top: 0;
    width: 100%;
    background-color: var(--base0);
    z-index: 50;
}

#large-brand, #small-brand {
    position: absolute;
    top: 1rem;
    left: 1rem;
    display: block;
    z-index: 99;
    transition: all .5s ease-in-out;
}

.sticky #large-brand {
    margin-top: -9rem;
}

#small-brand {
    top: -4rem;
}

.sticky #small-brand {
    top: .5rem;
}

#menu {
    display: flex;
    flex-direction: row;
    justify-content: end;
    transition: all .5s ease-in-out;
}

.sticky #menu {
    border-bottom: 1px solid var(--base20);
}

#menu a {
    display: flex;
    height: 6rem;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    padding: 0 2rem;
    color: var(--base80);
    transition: all .5s ease-in-out;
}

.sticky #menu a {
    height: 4rem;
}

#menu a:hover {
    background-color: var(--base20);
}

#menu i {
    font-size: 2rem;
    margin-right: .5rem;
}

#hero {
    flex: 0 1 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 25rem;
    width: 100%;
    margin-top: 6rem;
    overflow: hidden;
}

#hero img {
    width: 100%;
    height: auto;
}

main {
    padding: 2rem;
}

.edit-block {
    margin: 3rem 0;
}

.edit-block h6 {
    margin-bottom: .5rem;
}

.edit-block p {
    margin-left: 2rem;
}

.edit-block .edit-item div {
    flex: 0 0 80%;
}

.edit-block .edit-item div:last-child {
    flex: 1 1 auto;
}

.section-header {
    padding-left: 1rem;
    font-size: 2rem;
    font-weight: 100;
    color: var(--theme);
    border-bottom: 1px solid var(--theme);
    margin-top: 3rem;
    align-items: center;
}

.section-frame {
    background-color: var(--base20);
    border-radius: .5rem;
    margin: 2rem 0;
    padding: 1rem;
    box-shadow: .25rem .25rem .5rem var(--base60);
}

.section-frame header h2 {
    font-size: 1.5rem;
}

.section-frame article {
    margin: 1rem;
}

.section-frame footer {
    gap: 1rem;
}

.section-list {
    justify-content: center;
    font-size: 1rem;
}

.section-list > * {
    line-height: 150%;
}

.section-numbers {
    gap: 3rem;
}

.section-number span {
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--base);
}

.section-number i {
    font-size: 2rem;
    color: var(--base60);
    margin-top: -.5rem;
}

#embedded-content iframe {

    width: 75rem;
    max-width: 100%;
    height: calc(100vh - 8rem);
}

@media only screen and (min-width: 48em) {

    .edit-block {
        margin: 3rem;
    }

    .edit-block .edit-item div {
        flex: 0 0 60%;
    }

    .section-list {
        font-size: 1.25rem;
    }

    .section-frame header h2 {
        font-size: 2.5rem;
    }
}

@media only screen and (min-width: 64em) {

    .edit-block .edit-item div {
        flex: 0 0 40%;
    }

    .section-frame {
        padding: 2rem;
    }

    .section-frame article {
        padding: 1rem 2rem;
    }

    .section-frame footer {
        justify-content: end;
    }

    .section-list {
        margin-right: 10rem;
    }
}

.block header {
    border-bottom: 1px solid var(--base40);
}

.block i {
    font-size: 1.75rem;
}

.selection-block a {
    color: var(--base);
    border-bottom: 1px solid var(--base40);
    transition: all .5s ease-in-out;
}

.selection-block a:last-child {
    color: var(--base);
    border-bottom: none;
    transition: all .5s ease-in-out;
}

.selection-block a:hover {
    color: var(--base120);
    background-color: var(--base20);
}

.list-block article {
    border-bottom: 1px solid var(--base40);
}

.form-collection-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: .5rem 0;
}

.form-collection-header label {
    font-size: 2rem;
}

.form-collection-rows {
    border-bottom: 1px solid var(--base40);
    margin-bottom: 1.5rem;
}

.form-collection-row {
    display: grid;
    width: 100%;
    gap: 2rem;
    padding: 1rem;
    border-top: 1px solid var(--base40);
    align-items: center;
}

.form-collection-row .form-row {
    margin: 0;
}

.form-collection-row .form-remove-entry {
    display: flex;
    align-items: center;
    font-size: 2.5rem;
}

.fishing-edit-form {
    max-width: 100%;
}

.fishing-edit-form .form-collection {
    padding-top: 2rem;
}

.fishing-edit-form .form-collection-row {
    grid-template-areas:
        'item item item trash'
        'counter1 counter1 counter2 counter2';
    grid-template-rows: auto auto;
    grid-template-columns: 1fr 4rem 1fr 4rem;
}

.fishing-edit-form .form-row:nth-child(1) { grid-area: item; }
.fishing-edit-form .form-row:nth-child(2) { grid-area: counter1; }
.fishing-edit-form .form-row:nth-child(3) { grid-area: counter2; }
.fishing-edit-form .form-row:nth-child(4) { grid-area: trash; }

@media only screen and (min-width: 60em) {

    .fishing-edit-form {
        width: 60rem;
    }

    .fishing-edit-form .form-collection-row {
        grid-template-areas:
        'item counter1 counter2 trash';
        grid-template-rows: auto;
        grid-template-columns: 2fr 1fr 1fr 4rem;
    }
}





