.rte-tools-hub{
  --ink:#1e2d34;
  --muted:#66747b;
  --line:#dfe5e8;
  --soft:#f7f9fa;
  --accent:#314b56;
  --ok:#2f6e55;
  --warn:#8a652c;
  width:100%;
  max-width:1520px;
  margin:0 auto;
  padding:0 12px 28px;
  box-sizing:border-box;
  color:var(--ink);
  font-family:inherit;
  overflow:visible;
}

.rte-tools-header{
  display:block;
  width:100%;
  max-width:none;
  margin:0 auto 14px;
  padding:0;
  text-align:center;
}

.rte-tools-header>div:first-child{
  width:100%;
  max-width:none;
  text-align:center;
}

.rte-tools-header h2{
  margin:0 auto 7px;
  text-align:center;
  font-size:clamp(28px,3vw,40px);
  line-height:1.08;
  font-weight:500;
}

.rte-tools-header p{
  margin:0 auto;
  max-width:none;
  width:100%;
  color:var(--muted);
  text-align:center;
  font-size:clamp(14px,1.35vw,18px);
  line-height:1.45;
  white-space:nowrap;
}

.rte-tools-filters{
  display:flex;
  justify-content:center;
  align-items:center;
  gap:7px;
  flex-wrap:wrap;
  margin:0 auto 18px;
}

.rte-filter{
  appearance:none;
  border:1px solid #cfd8dc;
  background:#fff;
  color:var(--ink);
  border-radius:999px;
  padding:6px 12px;
  font:inherit;
  font-size:12px;
  cursor:pointer;
}
.rte-filter.active{
  background:var(--accent);
  color:#fff;
  border-color:var(--accent);
}

.rte-tools-grid{
  width:100%;
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:14px;
}

.rte-tool-card{
  position:relative;
  display:flex;
  flex-direction:column;
  min-width:0;
  min-height:255px;
  padding:17px;
  box-sizing:border-box;
  background:#fff;
  border:1px solid var(--line);
  border-radius:16px;
  box-shadow:0 3px 18px rgba(32,51,59,.045);
  transition:transform .15s ease,box-shadow .15s ease,border-color .15s ease;
}
.rte-tool-card:hover{
  transform:translateY(-2px);
  border-color:#c9d5da;
  box-shadow:0 7px 24px rgba(32,51,59,.08);
}
.rte-tool-card.is-featured{grid-column:span 1}
.rte-tool-card.is-hidden{display:none}

.rte-tool-topline{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:10px;
}
.rte-tool-icon{
  width:38px;
  height:38px;
  flex:0 0 38px;
  display:grid;
  place-items:center;
  border:1px solid var(--line);
  border-radius:11px;
  background:var(--soft);
  font-size:19px;
  line-height:1;
}
.rte-status{
  display:inline-flex;
  align-items:center;
  border-radius:999px;
  padding:4px 7px;
  font-size:10px;
  font-weight:700;
  letter-spacing:.02em;
  border:1px solid var(--line);
}
.rte-status-available{color:var(--ok);background:#f1f8f4;border-color:#cfe3d8}
.rte-status-testing{color:#496873;background:#f1f6f8;border-color:#cfdee3}
.rte-status-in-development{color:var(--warn);background:#fff8ec;border-color:#ead7b6}
.rte-status-planned{color:var(--muted);background:#f6f7f8}

.rte-tool-card h3{
  margin:16px 0 7px;
  font-size:18px;
  line-height:1.25;
  text-align:center;
}
.rte-tool-description{
  margin:0 0 13px;
  color:var(--muted);
  font-size:13px;
  line-height:1.55;
  text-align:center;
}
.rte-tool-meta{
  display:flex;
  justify-content:center;
  gap:5px;
  flex-wrap:wrap;
  margin-top:auto;
}
.rte-tool-meta span{
  font-size:10px;
  border:1px solid var(--line);
  border-radius:999px;
  padding:4px 7px;
  background:var(--soft);
}
.rte-tool-reviewed{
  margin-top:9px;
  font-size:10px;
  color:var(--muted);
  text-align:center;
}
.rte-tool-action{margin-top:13px}
.rte-open-tool{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
  text-decoration:none!important;
  border-radius:10px;
  padding:9px 11px;
  background:var(--accent);
  color:#fff!important;
  font-size:12px;
  font-weight:700;
}
.rte-open-tool:hover{filter:brightness(.96)}
.rte-open-tool.is-disabled{
  background:#eef1f2;
  color:#7b858a!important;
  cursor:default;
}

.rte-tools-footer{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
  border-top:1px solid var(--line);
  margin-top:18px;
  padding-top:10px;
  color:var(--muted);
  font-size:10.5px;
  text-align:center;
}

@media (min-width:1380px){
  .rte-tools-grid{
    grid-template-columns:repeat(4,minmax(0,1fr));
  }
}

@media (max-width:980px){
  .rte-tools-grid{
    grid-template-columns:repeat(2,minmax(0,1fr));
  }
  .rte-tools-header p{white-space:normal}
}

@media (max-width:620px){
  .rte-tools-hub{padding-left:10px;padding-right:10px}
  .rte-tools-grid{grid-template-columns:1fr}
  .rte-tools-header h2{font-size:30px}
}


/* v0.1.5 — page title is supplied by WordPress; no redundant default H2 */
.rte-tools-header{
  margin-top:0!important;
  padding-top:0!important;
}
.rte-tools-header p{
  margin-top:0!important;
}
