/*
Theme Name: Cocoon Child
Template: cocoon-master
Version: 1.0.0
Description: Cocoon Child Theme
*/

.minnano-header {
    background-color: rgb(0 83 160);
    border-color: rgb(209 207 207);
    border-bottom-width: 1px;
    border-style: none;

    .minnano-header-container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin: 0 auto;
        max-width: 1440px;

        .minnano-header-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;

            .minnano-header-link-item {
                display: flex;
                align-items: center;
                gap: 6px;
                border-top-left-radius: 4px;
                border-top-right-radius: 4px;
                padding: 6px 12px;
                text-decoration: none;

                &:hover {
                    text-decoration: none;
                }

                .minnano-header-link-text {
                    line-height: 24px;
                    font-size: 16px;
                   :hover {
                    text-decoration: none;
                   }

                    &.home {
                        color: #ffffffe5;
                        font-weight: 300;
                    }

                    &.blog {
                        color: rgb(255 255 255);
                        font-weight: 600;
                    }
                }
            }
        }

        @media screen and (max-width: 1025px) {
            padding-left: 120px;
            padding-right: 120px;
        }

        @media screen and (max-width: 768px) {
            padding-left: 40px;
            padding-right: 40px;
        }

        @media screen and (max-width: 480px) {
           flex-wrap: wrap;
           justify-content: center;
        }
    }
}

/* hiding uncategorized label */
span.cat-label-1, .entry-categories .cat-link-1 {
    display: none;
}

.footer-bottom {
    margin-top: 0px;
}

.footer-bottom-logo img {
    height: 30px;
}