/* ===== Full-width layout fix for module page ===== */
.awcip-container-full {
  width: 100% !important;
  max-width: 100% !important;
  padding-left: 20px !important;
  padding-right: 20px !important;
}

.awcip-page {
  width: 100%;
  max-width: 100%;
}

/* ===== Hero ===== */
.awcip-hero{
  position:relative;
  border-radius:16px;
  overflow:hidden;
  background: radial-gradient(1200px circle at 10% 10%, rgba(45,78,255,.35), transparent 55%),
              radial-gradient(900px circle at 90% 30%, rgba(0,200,140,.28), transparent 55%),
              linear-gradient(135deg, rgba(20,20,35,1), rgba(10,10,18,1));
  background-size:cover;
  background-position:center;
  min-height:180px;
  margin-bottom:18px;
}
.awcip-hero-overlay{
  position:absolute; inset:0;
  background: linear-gradient(90deg, rgba(0,0,0,.55), rgba(0,0,0,.20));
}
.awcip-hero-inner{
  position:relative;
  padding:28px 26px;
  color:#fff;
}
.awcip-hero-title{
  margin:0 0 6px 0;
  font-size:28px;
  font-weight:700;
}
.awcip-hero-subtitle{
  margin:0;
  opacity:.9;
  max-width:820px;
}

/* ===== Toolbar ===== */
.awcip-toolbar{
  border:1px solid #e9ecef;
  border-radius:16px;
  padding:14px;
  margin-bottom:12px;
  background:#fff;
}
.awcip-toolbar-form{
  display:grid;
  grid-template-columns: 1.2fr 1.6fr 180px;
  gap:12px;
  align-items:end;
}
.awcip-field{
  min-width:0;
}
.awcip-field-btn{
  min-width:0;
}
.awcip-label{
  font-size:12px;
  font-weight:700;
  text-transform:uppercase;
  letter-spacing:.03em;
  color:#6c757d;
  margin-bottom:6px;
  display:block;
}

/* ===== Meta ===== */
.awcip-meta{
  display:flex;
  justify-content:space-between;
  align-items:center;
  margin:8px 2px 14px 2px;
  color:#495057;
}

/* ===== Grid / Cards (BIGGER WIDTH) ===== */
.awcip-grid{
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(190px, 1fr)); /* was 150px */
  gap:16px;
  width:100%;
}
.awcip-card{
  border:1px solid #e9ecef;
  border-radius:16px;
  padding:12px;
  background:#fff;
  transition:transform .12s ease, box-shadow .12s ease;
  min-width:0; /* prevents overflow */
}
.awcip-card:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0,0,0,.08);
}
.awcip-card-logo{
  height:78px; /* bigger logo area */
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:12px;
  background:linear-gradient(135deg, #f8f9fa, #ffffff);
  overflow:hidden;
  margin-bottom:10px;
}
.awcip-card-logo img{
  max-height:64px;
  max-width:100%;
  object-fit:contain;
  display:block;
}
.awcip-logo-placeholder{
  font-weight:800;
  font-size:26px;
  color:#343a40;
  opacity:.35;
}
.awcip-card-name{
  font-size:14px;
  font-weight:700;
  color:#212529;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  text-align:center;
}

/* ===== Pagination ===== */
.awcip-pagination{
  margin-top:18px;
  display:flex;
  justify-content:center;
}

/* ===== Footer Brand ===== */
.awcip-footer-brand{
  margin-top:20px;
  opacity:.9;
  display:flex;
  justify-content:center;
}
.awcip-footer-brand a{
  display:flex;
  gap:10px;
  align-items:center;
  text-decoration:none;
  color:#495057;
}
.awcip-footer-brand img{
  height:22px;
}

/* ===== Responsive ===== */
@media (max-width: 991px) {
  .awcip-toolbar-form{
    grid-template-columns: 1fr 1fr;
  }
  .awcip-field-btn{
    grid-column: 1 / -1;
  }
}

@media (max-width: 575px) {
  .awcip-toolbar-form{
    grid-template-columns: 1fr;
  }
  .awcip-grid{
    grid-template-columns: repeat(auto-fit, minmax(145px, 1fr));
    gap:12px;
  }
  .awcip-card-logo{
    height:64px;
  }
}
.awcip-page .awcip-hero h1,
.awcip-page .awcip-hero h2,
.awcip-page .awcip-hero h3,
.awcip-page .awcip-hero p {
  color: #fff !important;
  -webkit-text-fill-color: #fff !important;
}