/**
 * Cpunk Astra House Custom Tools - Global Block Styles
 * Shared styles across all custom blocks
 */

/* Block wrapper styles */
.cpunk-block-wrapper {
    position: relative;
    width: 100%;
}

/* Common animation styles */
.cpunk-fade-in {
    opacity: 0;
    animation: cpunkFadeIn 0.5s ease-in-out forwards;
}

@keyframes cpunkFadeIn {
    to {
        opacity: 1;
    }
}

.cpunk-slide-up {
    transform: translateY(20px);
    opacity: 0;
    animation: cpunkSlideUp 0.5s ease-out forwards;
}

@keyframes cpunkSlideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive utilities */
@media (max-width: 768px) {
    .cpunk-hide-mobile {
        display: none !important;
    }
}

@media (min-width: 769px) {
    .cpunk-hide-desktop {
        display: none !important;
    }
}

/* Loading state */
.cpunk-loading {
    position: relative;
    opacity: 0.6;
    pointer-events: none;
}

.cpunk-loading::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid #ddd;
    border-top: 2px solid #007cba;
    border-radius: 50%;
    animation: cpunkSpin 1s linear infinite;
}

@keyframes cpunkSpin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} 

.imprint-content .wp-block-heading {
    max-width: 1180px;
    margin-left: auto;
    margin-right:auto;
}

.body-inner section {
    padding: 10px 0 0 0;
}
.mailinglist-bar {
    margin-top: 60px;
}
.bg-red, .bg-red h1, .bg-red h2, .bg-red h3, .bg-red h4, .bg-red h5, .bg-red h6, .bg-red p {
    color: #000 !important;
}

.bg-red {
    background-color: #e7e7e7 !important;
}
.mailinglist-bar {
    font-size: 28px;
    text-align: center;
}
.p-t-40 {
    padding-top: 40px !important;
}
.p-b-40 {
    padding-bottom: 40px !important;
}
article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
    display: block;
}
section {
    padding: 80px 0px 100px 0px;
    position: relative;
    width: 100%;
    overflow: hidden;
    z-index: 1;
    /* background-color: #edf8fe; */
}

button.btn.btn-white, button.btn.btn-light, .btn:not(.close):not(.mfp-close).btn-white, .btn:not(.close):not(.mfp-close).btn-light, a.btn:not([href]):not([tabindex]).btn-white, a.btn:not([href]):not([tabindex]).btn-light {
    background-color: #112835;
    border-color: #fff;
    color: #fff;
}
button.btn, .btn:not(.close):not(.mfp-close), a.btn:not([href]):not([tabindex]) {
    font-family: "Basis", sans-serif;
    border-radius: 0px;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: normal;
    text-decoration: none !important;
    outline: none;
    padding: 10px 15px 10px 15px;
    position: relative;
    text-transform: uppercase;
    background-color: transparent;
    border-color: #112835;
    border-width: 1px;
    border-style: solid;
    color: #112835;
    transition: all 0.3s;
    margin-bottom: 6px;
    outline: none;
    line-height: normal;
    cursor: pointer;
}
.mailinglist-bar .btn {
    display: inline-block;
}

.mlist-text {
    display: inline-block;
    padding-right: 20px;
}