/**
 * Digitalwurl
**/
.stream-ad-banner {
  grid-template-columns: minmax(0, 2fr) minmax(0, 1fr);
  gap: 0.5rem;
}
.res-home{
    margin-top: 8rem;
}
.homevideo{
    height: 420px
}
.hero-grid-home {
    margin-top: -4rem;
}
.cretv-title,
footer h4,
.stream-text p,
.stream-text h1 {
  color: #fff;
}
#footer-icon h4 {
    margin-top:-6px;
}
/* ===== Slide-out Drawer ===== */

.cre-drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(15, 23, 42, 0.45); /* dark slate overlay */
  backdrop-filter: blur(4px);
  z-index: 40;
}

.cre-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  max-width: 480px;
  background: #020617; /* near-black/slate background to match hero */
  z-index: 50;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: 0 0 40px rgba(15, 23, 42, 0.7);
  display: flex;
  flex-direction: column;
}

.cre-drawer.is-open {
  transform: translateX(0);
}

.cre-drawer-inner {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.cre-drawer-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(148, 163, 184, 0.35);
  background:
    radial-gradient(circle at top left, rgba(45, 212, 191, 0.15), transparent),
    #020617;
}

.cre-drawer-title {
  font-size: 1rem;
  font-weight: 600;
  color: #e5e7eb;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.cre-drawer-header i {
  color: #22c55e;
}

.cre-drawer-close {
  border: none;
  background: transparent;
  color: #9ca3af;
  padding: 0.25rem;
  border-radius: 999px;
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    transform 0.1s ease;
}

.cre-drawer-close:hover {
  background: rgba(148, 163, 184, 0.15);
  color: #e5e7eb;
  transform: translateY(-1px);
}

.cre-drawer-body {
  padding: 1.25rem 1.5rem 1.5rem;
  overflow-y: auto;
}

/* Prevent background scrolling when open */
body.cre-drawer-open {
  overflow: hidden;
}

/* ===== Form styling (matches site look) ===== */

.cre-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cre-form-title {
  font-size: 1rem;
  font-weight: 600;
  color: #e5e7eb;
  margin-bottom: 0.5rem;
}

.cre-form-group {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.cre-form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.cre-form-row .half {
  flex: 1 1 0;
  min-width: 0;
}

.cre-label {
  font-size: 0.8rem;
  font-weight: 500;
  color: #cbd5f5;
  letter-spacing: 0.01em;
}

.cre-input,
.cre-form textarea,
.cre-form select {
  width: 100%;
  border-radius: 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.45);
  background: rgba(15, 23, 42, 0.9);
  color: #e5e7eb;
  padding: 0.65rem 0.8rem;
  font-size: 0.9rem;
  outline: none;
  transition:
    border-color 0.15s ease,
    box-shadow 0.15s ease,
    background 0.15s ease,
    transform 0.1s ease;
}

.cre-input::placeholder,
.cre-form textarea::placeholder {
  color: rgba(148, 163, 184, 0.8);
}

.cre-input:focus,
.cre-form textarea:focus,
.cre-form select:focus {
  border-color: #0d9488;
  box-shadow: 0 0 0 1px rgba(45, 212, 191, 0.6);
  background: rgba(15, 23, 42, 1);
}

.cre-form select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, #64748b 50%),
    linear-gradient(135deg, #64748b 50%, transparent 50%);
  background-position:
    calc(100% - 16px) calc(50% - 3px),
    calc(100% - 11px) calc(50% - 3px);
  background-size:
    6px 6px,
    6px 6px;
  background-repeat: no-repeat;
}

/* File input */
.cre-form input[type='file'] {
  border-radius: 0.75rem;
  padding: 0.6rem;
  font-size: 0.85rem;
  background: rgba(15, 23, 42, 0.9);
}

/* Help text */
.cre-form small {
  font-size: 0.75rem;
  color: #9ca3af;
}

/* Buttons inside form */
.cre-btn.cre-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  width: 100%;
  border-radius: 0.75rem;
  border: none;
  padding: 0.75rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: #f9fafb;
  cursor: pointer;
  background-image: linear-gradient(to right, #0f766e, #0e7490);
  box-shadow: 0 10px 30px rgba(15, 118, 110, 0.4);
  transition:
    transform 0.12s ease,
    box-shadow 0.12s ease,
    filter 0.12s ease;
}

.cre-btn.cre-btn-primary i {
  font-size: 0.9rem;
}

.cre-btn.cre-btn-primary:hover {
  filter: brightness(1.06);
  transform: translateY(-1px);
  box-shadow: 0 14px 40px rgba(8, 47, 73, 0.6);
}

/* Alerts */
.cre-alert {
  border-radius: 0.75rem;
  padding: 0.75rem 0.9rem;
  font-size: 0.85rem;
  margin-bottom: 0.75rem;
}

.cre-alert-success {
  background: rgba(16, 185, 129, 0.1);
  border: 1px solid rgba(16, 185, 129, 0.5);
  color: #a7f3d0;
}

.cre-alert-error {
  background: rgba(239, 68, 68, 0.08);
  border: 1px solid rgba(239, 68, 68, 0.6);
  color: #fecaca;
}

.cre-alert-error ul {
  margin: 0;
  padding-left: 1.2rem;
}

.dash-title {
  align-items: baseline;
  margin-top: 1rem;
}

.card-type-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #475569;
  background: #f1f5f9;
  border-radius: 999px;
  padding: 4px 10px;
}

/* Gradient Brand Accent */
.bg-brand-gradient {
  background: linear-gradient(
    135deg,
    var(--brand-teal) 0%,
    var(--brand-blue) 100%
  );
}

.property-details section {
  padding: 1rem;
}

.property-details section h2 {
  align-items: baseline;
  flex-direction: row;
  margin-bottom: 1rem;
}

.all-properties h1 {
  align-items: baseline;
  flex-direction: row;
}

.all-properties header p.section-subtitle {
  margin-bottom: 1rem;
}
.properties-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.content-property-layout {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

/* Make archive filter inputs a grid */
.property-filters-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

/* Make each group fill its cell nicely */
.property-filters-grid .filter-group {
  margin: 0; /* remove stacked spacing if you had it */
}

/* Let selects span full width */
.property-filters-grid .filter-group .select,
.property-filters-grid .filter-group select {
  width: 100%;
}

/* Mobile: single column */
@media (max-width: 640px) {
  .property-filters-grid {
    grid-template-columns: 1fr;
  }
}

/* Optional: wide screens can go 3 columns if you want */
@media (min-width: 1100px) {
  .property-filters-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

/* Keep the buttons full width under the grid */
.property-filters .filter-actions {
  margin-top: 16px;
}

.cre-filter-dropdown {
  border-radius: 16px;
}

.cre-filter-dropdown > summary {
  list-style: none;
  cursor: pointer;
  user-select: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cre-filter-dropdown > summary::-webkit-details-marker {
  display: none;
}

.filter-title-left {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

/* Smooth open/close feel */
.filter-dropdown-body {
  padding-top: 14px;
}

/* Caret rotates when opened */
.cre-filter-dropdown .filter-caret {
  transition: transform 0.2s ease;
}

.cre-filter-dropdown[open] .filter-caret {
  transform: rotate(180deg);
}

/* Toggle button: hidden on desktop, visible on mobile */
.mobile-toggle {
  display: none;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 768px) {
  .mobile-toggle {
    display: inline-flex;
  }

  /* IMPORTANT: parent needs positioning so absolute nav sits under header */
  header,
  .site-header,
  .header,
  .nav-wrap {
    position: relative;
  }

  #siteNav {
    display: none !important;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;

    flex-direction: column;
    background: #fff;
    border-top: 1px solid #e2e8f0;
    z-index: 99999;
    padding: 1rem;
  }

  #siteNav.active {
    display: flex !important;
  }

  /* make dropdown panels flow under the button */
  .dropdown-panel {
    position: static;
    transform: none;
    width: 100%;
    padding: 0.75rem 0;
    box-shadow: none;
    border: 0;
    opacity: 0;
    visibility: hidden;
    display: none;
  }

  /* open state */
  .nav-item.dropdown.open > .dropdown-panel {
    opacity: 1;
    visibility: visible;
    display: block;
  }

  .dropdown:hover .dropdown-panel {
    opacity: 0 !important;
    visibility: hidden !important;
    display: none !important;
    transform: none !important;
    left: auto !important;
  }

  /* base closed state */
  .dropdown-panel {
    position: static !important;
    width: 100% !important;
    padding: 0.75rem 0 !important;
    box-shadow: none !important;
    border: 0 !important;
    display: none !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }

  /* open state */
  .nav-item.dropdown.open > .dropdown-panel {
    display: block !important;
  }
  .nav-item.dropdown.open > .dropdown-panel {
    display: block !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  .dropdown-panel.grid-cols-2 .dropdown-column:not(:last-child) {
    padding: 1rem;
  }
}

/*==== Stream Hero ==*/
div.hero-left.stream-area {
  margin-top: 0;
}
/*=== ADS ===*/
.hero-grid.stream-ad-banner {
  align-items: stretch;
}
.hero-right {
  display: flex;
  align-items: stretch;
}

.cretv-ad-slider {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border-radius: 18px;
  overflow: hidden;
  /*border: 1px solid rgba(0, 0, 0, 0.1);*/
  background: #0b1220;
  position: relative;
}

.cretv-ad-track {
  height: 100%;
  position: relative;
}
.cretv-ad-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: scale(1.02);
  transition:
    opacity 0.45s ease,
    transform 0.45s ease;
}
.cretv-ad-slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.cretv-ad-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.cretv-ad-link {
  display: block;
  width: 100%;
  height: 100%;
}

.cretv-ad-dots {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  display: flex;
  gap: 8px;
  justify-content: center;
}
.cretv-ad-dot {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  background: rgba(0, 0, 0, 0.25);
  cursor: pointer;
}
.cretv-ad-dot.is-active {
  background: rgba(13, 148, 136, 0.95);
  border-color: rgba(13, 148, 136, 0.95);
}

.cretv-ad-placeholder {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 18px;
  background: linear-gradient(
    135deg,
    rgba(13, 148, 136, 0.35),
    rgba(3, 105, 161, 0.35)
  );
  color: #fff;
}
.cretv-ad-placeholder h4 {
  margin: 0 0 6px;
  font-size: 18px;
  font-weight: 800;
}
.cretv-ad-placeholder p {
  margin: 0;
  opacity: 0.9;
}
.cretv-ad-ph-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width: 980px) {
  .hero-grid.stream-ad-banner {
    grid-template-columns: 1fr;
  }
  .cretv-ad-slider {
    min-height: 220px;
  }
}
.gform_wrapper select.tw-select option.gf_placeholder { color:#94a3b8; }

/*=== Contact Modal ===*/
.site-modal {
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: none;
}

.site-modal.is-open {
    display: block;
}

.modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.55);
}

.modal-content {
    position: relative;
    max-width: 720px;
    margin: 8vh auto;
    background: #fff;
    border-radius: 12px;
    padding: 32px;
    z-index: 1;
    height: 90vh;
    overflow: scroll;
}

.modal-close {
    position: absolute;
    top: 12px;
    right: 14px;
    font-size: 28px;
    background: none;
    border: none;
    cursor: pointer;
}

body.modal-open {
    overflow: hidden;
}

.contact-title h3 {
    margin-bottom:1rem;
}

/*=== Services Archive ===*/

  .cre-svc-wrap{max-width:1180px;margin:0 auto;padding:26px 14px 70px}
  .cre-svc-hero{display:flex;align-items:flex-end;justify-content:space-between;gap:14px;margin-bottom:18px}
  .cre-svc-title{margin:0;font-size:40px;line-height:1.05;font-weight:900;letter-spacing:-.02em}
  .cre-svc-sub{margin:8px 0 0;opacity:.8;max-width:820px}
  .cre-svc-tabs{display:flex;flex-wrap:wrap;gap:10px;margin:16px 0 26px}
  .cre-svc-tab{display:inline-flex;align-items:center;gap:8px;padding:10px 14px;border:1px solid rgba(0,0,0,.12);border-radius:999px;text-decoration:none;font-weight:800;font-size:13px}
  .cre-svc-tab.is-active{border-color:rgba(13,148,136,.55);box-shadow:0 6px 18px rgba(13,148,136,.10)}
  .cre-svc-row{border:1px solid rgba(0,0,0,.10);border-radius:22px;overflow:hidden;background:#fff;margin:18px 0}
  .cre-svc-row-inner{display:grid;grid-template-columns:1fr 340px;gap:0}
  @media(max-width:980px){.cre-svc-row-inner{grid-template-columns:1fr}}
  .cre-svc-left{padding:18px 18px 22px;background:linear-gradient(180deg, rgba(13,148,136,.06), rgba(13,148,136,0))}
  .cre-svc-right{padding:18px;background:linear-gradient(180deg, rgba(15,23,42,.06), rgba(15,23,42,0))}
  .cre-svc-h{margin:0 0 6px;font-size:22px;font-weight:950;letter-spacing:-.01em}
  .cre-svc-tip{margin:0 0 14px;font-size:14px;line-height:1.65;opacity:.85}
  .cre-grid{display:grid;grid-template-columns:repeat(3, minmax(0, 1fr));gap:14px}
  @media(max-width:980px){.cre-grid{grid-template-columns:repeat(2, minmax(0, 1fr));}}
  @media(max-width:640px){.cre-grid{grid-template-columns:1fr;}}
  .cre-card{border:1px solid rgba(0,0,0,.10);border-radius:18px;overflow:hidden;background:#fff;display:flex;flex-direction:column}
  .cre-card-img{aspect-ratio:16/10;background:#f3f4f6}
  .cre-card-img img{width:100%;height:100%;object-fit:cover;display:block}
  .cre-card-body{padding:12px 12px 14px}
  .cre-card-title{margin:0 0 8px;font-weight:950;letter-spacing:-.01em}
  .cre-card-ex{margin:0;opacity:.8;font-size:13px;line-height:1.55}
  .cre-pill{display:inline-flex;align-items:center;gap:8px;padding:7px 12px;border-radius:999px;border:1px solid rgba(0,0,0,.10);font-weight:800;font-size:12px}
  .cre-pill-ok{border-color:rgba(13,148,136,.35);color:#0d9488}
  .cre-btn{display:inline-flex;justify-content:center;align-items:center;width:100%;padding:12px 14px;border-radius:14px;border:1px solid rgba(0,0,0,.12);font-weight:900;text-decoration:none}
  .cre-btn-primary{background:#0d9488;color:#fff;border-color:#0d9488}
  .cre-ad{border:1px solid rgba(0,0,0,.10);border-radius:18px;overflow:hidden;background:#0b2a2f;color:#fff}
  .cre-ad img{width:100%;height:220px;object-fit:cover;display:block;opacity:.95}
  .cre-ad-body{padding:12px}
  .cre-ad-badge{display:inline-flex;padding:6px 10px;border-radius:999px;background:rgba(255,255,255,.14);font-weight:900;font-size:12px}
  .cre-muted{opacity:.8;font-size:12px;margin-top:8px;line-height:1.5}

/**
 * ==========================================================
 * CRE Frontend Edit Service – UI Skin
 * Scoped to .cre-edit-service
 * ==========================================================
 */

.cre-edit-service {
  max-width: 900px;
  margin: 0 auto;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 18px;
  padding: 24px;
}

/* Tabs */
.cre-edit-service .cmb2-tabs {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 24px;
}

@media (max-width: 900px) {
  .cre-edit-service .cmb2-tabs {
    grid-template-columns: 1fr;
  }
}

.cre-edit-service .cmb-tabs-nav {
  border-right: 1px solid rgba(0,0,0,.08);
  padding-right: 16px;
}

.cre-edit-service .cmb-tabs-nav li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 10px;
  font-weight: 700;
  color: #374151;
  text-decoration: none;
}

.cre-edit-service .cmb-tabs-nav li.active a,
.cre-edit-service .cmb-tabs-nav li a:hover {
  background: #0d9488;
  color: #fff;
}

/* Fields */
.cre-edit-service .cmb-row {
  margin-bottom: 18px;
}

.cre-edit-service .cmb-th label {
  font-weight: 800;
  margin-bottom: 6px;
  display: block;
}

.cre-edit-service input[type="text"],
.cre-edit-service input[type="email"],
.cre-edit-service input[type="url"],
.cre-edit-service textarea {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,.15);
  padding: 10px 12px;
  font-size: 15px;
}

/* WYSIWYG */
.cre-edit-service .wp-editor-wrap {
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(0,0,0,.15);
}

/* Save button */
.cre-edit-service .cmb2-submit-wrap {
  margin-top: 24px;
  text-align: right;
}

.cre-edit-service .cmb2-submit-wrap input[type="submit"] {
  background: #0d9488;
  color: #fff;
  font-weight: 900;
  padding: 12px 22px;
  border-radius: 14px;
  border: none;
  cursor: pointer;
}

.cre-edit-service .cmb2-submit-wrap input[type="submit"]:hover {
  background: #115e59;
}

.newsinput {
    width:60%;
    border-top-left-radius: .5rem;
  border-bottom-left-radius: .5rem;
  border-top-right-radius: .5rem;
  border-bottom-right-radius: .5rem;
  z-index: 1;
  position: relative;
}
.newsbtn {
    border-top-left-radius: .5rem;
  border-bottom-left-radius: .5rem;
  border-top-right-radius: .5rem;
  border-bottom-right-radius: .5rem;
  margin-left: .5rem;
  height: 3.5em;
  top: -1px;
  position: relative;
  border: none;
}

.cre-tabs{display:flex;gap:10px;flex-wrap:wrap;margin:6px 0 14px}
          .cre-tab{border:1px solid rgba(0,0,0,.12);background:#fff;border-radius:999px;padding:10px 14px;font-weight:800;cursor:pointer}
          .cre-tab[aria-selected="true"]{border-color:rgba(13,148,136,.55);box-shadow:0 0 0 3px rgba(13,148,136,.12)}
          .cre-tabpanels{margin-top:10px}
          .cre-tabpanel{display:none}
          .cre-tabpanel.is-active{display:block}
          .cre-subtitle{margin:0 0 14px;opacity:.85}
          .cre-submit{margin-top:14px}
          
.cta-card h2{font-size:32px;}         
.ad-badge{
    bottom:7rem;
}          
#item-header-cover-image #item-header-content .bp-group-type,
.groups-header #cover-image-container:not(.centered) #item-header-content > .bp-group-type,
.group-actions-wrap{
  display: none!important;
}

