/* Performance CSS for Banners theme - extracted from inline styles */

/* Media queries for column layout */
p[style*="column-gap"] {
    column-count: 1 !important;
}

@media (min-width: 600px) {
    p[style*="column-gap"] {
        column-count: 2 !important;
    }
}

@media (min-width: 900px) {
    p[style*="column-gap"] {
        column-count: 3 !important;
    }
}

@media (min-width: 1200px) {
    p[style*="column-gap"] {
        column-count: 4 !important;
    }
}

/* Remove link button styles */
.remove-link-button {
    background: #ff5500 !important;
    color: #ffffff !important;
    padding: 5px 10px !important;
    font-size: 0.9em !important;
    font-weight: bold !important;
    text-decoration: none !important;
    border-radius: 5px !important;
    display: inline-block !important;
    transition: background-color 0.3s !important;
    box-shadow: none !important;
    outline: none !important;
    border: none !important;
}

/* Hero section styles */
.hero-1 {
    padding: 30px !important;
    background: #054180 !important;
    min-height: 200px;
}

/* MeUp banner styles */
.meup-banner {
    background-color: #0c0c0c !important;
    color: #ffffff !important;
    text-align: center !important;
    padding: 40px 20px !important;
    font-family: Arial, sans-serif !important;
}

.meup-banner h1 {
    font-size: 2.5em !important;
    font-weight: bold !important;
    margin: 0 0 20px !important;
}

.meup-banner p {
    font-size: 1.1em !important;
    font-weight: normal !important;
    margin: 0 0 30px !important;
    line-height: 1.5 !important;
    max-width: 700px !important;
    margin-left: auto !important;
    margin-right: auto !important;
}

.meup-banner a {
    background-color: #00d95f !important;
    color: #ffffff !important;
    padding: 15px 30px !important;
    font-size: 1.2em !important;
    font-weight: bold !important;
    text-decoration: none !important;
    border-radius: 8px !important;
    display: inline-block !important;
    transition: background-color 0.3s !important;
}

/* Breadcrumb navigation */
.breadcrumb {
    text-align: center;
    padding: 10px;
    background-color: #f3f5f7;
    border-radius: 8px;
}

.breadcrumb a {
    color: #f50;
    text-decoration: none;
    font-weight: bold;
}

.breadcrumb a:first-child {
    margin-right: 20px;
}

/* Domain links */
.domain-link {
    display: inline-block;
    margin-bottom: 10px;
    padding: 10px;
    background-color: #f3f3f3;
    border: 1px solid #ddd;
    border-radius: 5px;
    color: #0066cc;
    text-decoration: none;
    font-size: 14px;
    text-align: center;
    width: 100%;
    box-sizing: border-box;
}

/* Content padding */
.content.left {
    padding: 25px;
} 