
/* ==========================================================
   GHOSTBASE COMICS V2 — CARD ESTRUTURAL ISOLADO
   ========================================================== */
.gbc2{
    min-height:100vh;
    background:#070c0f;
    color:#eef3f5;
}
.gbc2 .container{
    width:min(calc(100% - 36px),1240px);
    margin-inline:auto;
}
.gbc2-hero{
    padding:54px 0 38px;
    border-bottom:1px solid #22363f;
    background:
      radial-gradient(circle at 82% 12%,rgba(255,106,0,.12),transparent 26%),
      linear-gradient(180deg,#070d10,#070c0f);
}
.gbc2-hero span{
    display:block;
    color:#ff6a00;
    font-size:9px;
    font-weight:950;
    letter-spacing:.16em;
}
.gbc2-hero h1{
    max-width:800px;
    margin:10px 0 10px;
    font-size:clamp(42px,5.3vw,72px);
    line-height:.94;
    letter-spacing:-.045em;
}
.gbc2-hero p{
    max-width:720px;
    margin:0;
    color:#879aa2;
    font-size:15px;
    line-height:1.55;
}
.gbc2-list{
    padding-top:38px;
    padding-bottom:78px;
}
.gbc2-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
    align-items:start;
}
.gbc2-card{
    display:flex;
    flex-direction:column;
    min-width:0;
    overflow:hidden;
    border:1px solid #29414a;
    border-radius:18px;
    background:#0a1418;
    box-shadow:0 18px 50px rgba(0,0,0,.14);
    transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease;
}
.gbc2-card:hover{
    transform:translateY(-4px);
    border-color:#ff6a00;
    box-shadow:0 22px 60px rgba(0,0,0,.25);
}
.gbc2-art{
    position:relative;
    display:grid;
    place-items:center;
    width:100%;
    aspect-ratio:4/5;
    overflow:hidden;
    background:#05090b;
    border-bottom:1px solid #22363f;
    text-decoration:none;
}
.gbc2-art img{
    display:block;
    width:100%;
    height:100%;
    object-fit:contain;
    object-position:center;
    margin:0;
    padding:0;
}
.gbc2-art-empty{
    display:grid;
    place-items:center;
    color:#ff6a00;
}
.gbc2-art-empty strong{font-size:26px}
.gbc2-art-empty span{font-size:11px;letter-spacing:.16em}
.gbc2-body{
    display:flex;
    flex-direction:column;
    flex:1 1 auto;
    position:static;
    padding:19px 20px 21px;
    background:#0a1418;
}
.gbc2-meta{
    display:block;
    margin:0 0 9px;
    color:#ff6a00;
    font-size:9px;
    line-height:1.2;
    font-weight:950;
    letter-spacing:.08em;
    text-transform:uppercase;
}
.gbc2-body h2{
    position:static;
    margin:0 0 10px;
    padding:0;
    font-size:22px;
    line-height:1.14;
    letter-spacing:-.025em;
}
.gbc2-body h2 a{
    color:#f3f6f7;
    text-decoration:none;
}
.gbc2-body p{
    position:static;
    display:-webkit-box;
    -webkit-box-orient:vertical;
    -webkit-line-clamp:3;
    overflow:hidden;
    margin:0 0 17px;
    color:#82959d;
    font-size:13px;
    line-height:1.55;
}
.gbc2-read{
    display:inline-flex;
    align-items:center;
    align-self:flex-start;
    margin-top:auto;
    color:#eef3f5;
    text-decoration:none;
    font-size:12px;
    font-weight:900;
}
.gbc2-card:hover .gbc2-read,
.gbc2-card:hover h2 a{
    color:#ff6a00;
}
.gbc2-empty{
    padding:50px;
    border:1px solid #29414a;
    border-radius:18px;
    text-align:center;
    background:#0a1418;
}
.gbc2-empty b{color:#ff6a00;font-size:10px}
.gbc2-empty h2{font-size:30px}
.gbc2-empty p{color:#81949c}

@media(max-width:900px){
    .gbc2-grid{grid-template-columns:repeat(2,minmax(0,1fr))}
}
@media(max-width:580px){
    .gbc2 .container{width:min(calc(100% - 22px),1240px)}
    .gbc2-hero{padding:42px 0 30px}
    .gbc2-grid{grid-template-columns:1fr}
    .gbc2-body h2{font-size:21px}
}
