#events {
    .grid {
        margin: 0;

        .frame {
            position: relative;
            flex-direction: row;
            justify-content: flex-start;
            align-items: flex-start;
            padding: 2rem 1rem 4rem;
            background-color: unset;
            border-radius: 0;
    
            .month {
                display: flex;
                justify-content: center;
                align-items: center;
                width: 3rem;
                height: 3rem;
                color: var(--w0);
                font-size: 150%;
                font-weight: bold;
                border: 1px solid var(--b2);
                border-radius: 50%;

                @media screen {
                    border: none;
                    background-color: var(--b0);
                }
            }
            ul {
                margin-left: 1.5rem;

                li {
                    /* color: var(--b0); */
                    display: flex;
                    align-items: center;
                    min-height: 0;
                    border: none;
                    box-shadow: unset;

                    .icon {
                        width: 2.5em;
                        margin-right: .5em;
                    }
                }
            }
        }
        li {
            border-top: 4px dotted var(--b3);
            box-shadow: none;
            margin: 0;
            min-height: 0;
            overflow: visible;

            @media screen {
                border-color: var(--w3);
            }
        }
        @media screen {
            & > li:before {
                content: "";
                position: absolute;
                top: 0;
                left: 0;
                width: 1rem;
                height: 1rem;
                border: 2px solid var(--w0);
                border-radius: 50%;
                background-color: var(--c0);
                transform: translate(2rem, calc(-50% - 2px));
            }
        }
    }
}

#oneday {
    .frame {
        justify-content: flex-start;
        align-items: flex-start;
        padding: 1rem;

        .detail {
            margin-top: .5rem;
            padding: .5rem 0 0;
            font-weight: normal;
            color: var(--b1);
            font-family: unset;
            border-top: 1px solid var(--b2);
        }
    }
}