
/* Alle Buttons */

.wp-block-button__link,
button,
input[type="submit"] {
    background: lightgray;
    color: #000;
    border: ;
    border-radius: 0px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.wp-block-button__link:hover,
button:hover,
input[type="submit"]:hover {
    transform: translateY(-2px);
}



/* Startseite */

.home.page .entry-header {
    display: none !important;
}

.home.page .site-content {
    padding-top: 0 !important;
}


/* Weiterlesen */

.entry-content.entry-excerpt .more-link {
    display: inline !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    background: none !important;

    color: inherit;
    text-decoration: none !important;
    font-weight: 400 !important;
    white-space: nowrap;
}

.entry-content.entry-excerpt .more-link:hover {
    color: #f2c94c;
}


/* Tags */

.widget_tag_cloud .tagcloud a,
.entry-tags .meta-tags a {
    display: block !important;
    width: 100%;
    margin-bottom: 1px !important;
    padding: 0 !important;

    background: none !important;
    border: 0 !important;
    box-shadow: none !important;

    color: #fff;
    font-weight: 600;
    text-decoration: none !important;
    transition: color 0.2s ease;
}

.widget_tag_cloud .tagcloud a:hover,
.entry-tags .meta-tags a:hover {
    color: #f2c94c;
}


/* Menü */

#primary-menu > li > a {
    color: #fff;
    transition: color 0.3s ease;
}

#primary-menu > li > a:hover {
    color: orange;
}

#primary-menu > li.current-menu-item > a,
#primary-menu > li.current-menu-parent > a,
#primary-menu > li.current-menu-ancestor > a {
    color: yellow;
    font-weight: 700;
}


/* Logo */

.site-branding .custom-logo {
    display: block;
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.site-branding:hover .custom-logo {
    transform: scale(1.06) rotate(-1deg);
}


/* Kategorien */

.page-header .archive-title {
    display: none;
}

.page-header .blog-description,
.page-header .archive-description {
    font-size: 20px;
    font-weight: 700;
}

.widget-title,
.is-style-widget-title,
.widget-header {
    margin: 0 !important;
    padding: 0 !important;
    border-left: 0 !important;
}


/* Gridbox */

#infinite-footer .container {
    display: none !important;
}