.ct-page{
    background:var(--ct-bg);
    color:var(--ct-text);
    min-height:600px;
}

.ct-page *{
    box-sizing:border-box;
}

.ct-main-wrap{
    padding-top:26px;
    padding-bottom:36px;
}

.ct-hero{
    background:linear-gradient(135deg,var(--ct-color),var(--ct-secondary));
    color:#fff;
    padding:38px 0;
}

.ct-hero-inner{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:24px;
}

.ct-breadcrumb{
    display:flex;
    align-items:center;
    gap:8px;
    margin-bottom:14px;
    font-size:13px;
    color:rgba(255,255,255,.78);
}

.ct-breadcrumb a{
    color:inherit;
    text-decoration:none;
    font-weight:800;
}

.ct-kicker{
    display:inline-flex;
    align-items:center;
    min-height:28px;
    padding:5px 11px;
    background:rgba(255,255,255,.16);
    border:1px solid rgba(255,255,255,.24);
    font-size:11px;
    font-weight:950;
    text-transform:uppercase;
    letter-spacing:.08em;
    margin-bottom:12px;
}

.ct-hero h1{
    margin:0;
    font-size:clamp(34px,4vw,58px);
    line-height:.96;
    letter-spacing:-.06em;
    font-weight:950;
}

.ct-hero p{
    max-width:650px;
    margin:14px 0 0;
    color:rgba(255,255,255,.78);
    line-height:1.6;
}

.ct-hero-stat{
    min-width:190px;
    background:rgba(255,255,255,.12);
    border:1px solid rgba(255,255,255,.2);
    padding:18px;
    text-align:right;
}

.ct-hero-stat span,
.ct-hero-stat small{
    display:block;
    color:rgba(255,255,255,.76);
    font-size:12px;
    font-weight:800;
}

.ct-hero-stat strong{
    display:block;
    font-size:38px;
    font-weight:950;
    letter-spacing:-.05em;
}

.ct-layout{
    display:grid;
    grid-template-columns:minmax(0,1fr) 330px;
    gap:26px;
    align-items:start;
}

.ct-main{
    min-width:0;
}

.ct-section-head{
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:16px;
    margin:24px 0 16px;
    border-bottom:3px solid var(--ct-text);
    padding-bottom:10px;
}

.ct-section-head h2{
    margin:0;
    color:var(--ct-text);
    font-size:24px;
    font-weight:950;
    letter-spacing:-.04em;
}

.ct-section-head p{
    margin:4px 0 0;
    color:var(--ct-muted);
    font-size:13px;
}

.ct-featured{
    display:grid;
    grid-template-columns:1.15fr .85fr;
    gap:0;
    background:var(--ct-card);
    border:1px solid var(--ct-border);
    border-radius:var(--ct-card-radius);
    overflow:hidden;
    margin-bottom:22px;
}

.ct-featured-img{
    position:relative;
    display:block;
    min-height:390px;
    background:#e5e7eb;
    overflow:hidden;
    padding:var(--ct-image-padding);
}

.ct-featured-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    border-radius:var(--ct-image-radius);
}

.ct-featured-body{
    padding:34px;
    display:flex;
    flex-direction:column;
    justify-content:center;
}

.ct-featured-body h2{
    margin:12px 0;
    font-size:clamp(28px,3.1vw,46px);
    line-height:1.04;
    letter-spacing:-.055em;
    font-weight:950;
}

.ct-featured-body h2 a{
    color:var(--ct-text);
    text-decoration:none;
}

.ct-featured-body p{
    color:var(--ct-muted);
    line-height:1.7;
    font-size:15px;
    margin:0 0 18px;
}

.ct-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:18px;
}

.ct-card{
    background:var(--ct-card);
    border:1px solid var(--ct-border);
    border-radius:var(--ct-card-radius);
    overflow:hidden;
    padding:var(--ct-card-padding);
    transition:.18s ease;
}

.ct-card:hover{
    transform:translateY(-3px);
    box-shadow:0 16px 36px rgba(15,23,42,.10);
}

.ct-card-img{
    position:relative;
    display:block;
    aspect-ratio:16/10;
    background:#e5e7eb;
    overflow:hidden;
    border-radius:var(--ct-image-radius);
    padding:var(--ct-image-padding);
    margin:calc(var(--ct-card-padding) * -1) calc(var(--ct-card-padding) * -1) 14px;
}

.ct-card-img img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
    border-radius:var(--ct-image-radius);
}

.ct-media-icon{
    position:absolute;
    right:12px;
    bottom:12px;
    width:42px;
    height:42px;
    border-radius:50%;
    background:rgba(15,23,42,.88);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:950;
    backdrop-filter:blur(8px);
}

.ct-media-icon.large{
    width:56px;
    height:56px;
    font-size:20px;
}

.ct-labels{
    display:flex;
    align-items:center;
    flex-wrap:wrap;
    gap:7px;
    margin-bottom:9px;
}

.ct-cat,
.ct-type{
    display:inline-flex;
    align-items:center;
    min-height:24px;
    padding:5px 8px;
    font-size:10px;
    font-weight:950;
    text-transform:uppercase;
    letter-spacing:.06em;
}

.ct-cat{
    background:var(--ct-color);
    color:#fff;
}

.ct-type{
    background:#f1f5f9;
    color:#475569;
}

.ct-card h3{
    margin:0 0 9px;
    font-size:19px;
    line-height:1.22;
    letter-spacing:-.035em;
    font-weight:950;
}

.ct-card h3 a{
    color:var(--ct-text);
    text-decoration:none;
}

.ct-card p{
    color:var(--ct-muted);
    margin:0 0 13px;
    font-size:13px;
    line-height:1.55;
}

.ct-meta{
    display:flex;
    gap:9px;
    flex-wrap:wrap;
    color:var(--ct-muted);
    font-size:11px;
    font-weight:700;
}

.ct-sidebar{
    position:sticky;
    top:90px;
    display:grid;
    gap:16px;
}

.ct-side-card{
    background:var(--ct-card);
    border:1px solid var(--ct-border);
    border-radius:var(--ct-card-radius);
    overflow:hidden;
}

.ct-side-head{
    padding:15px 16px;
    border-bottom:1px solid var(--ct-border);
    background:#fbfdff;
}

.ct-side-head h3{
    margin:0;
    font-size:16px;
    font-weight:950;
    color:var(--ct-text);
}

.ct-most-list,
.ct-latest-list{
    display:grid;
}

.ct-most-item{
    display:grid;
    grid-template-columns:34px minmax(0,1fr);
    gap:10px;
    padding:13px 16px;
    border-bottom:1px solid var(--ct-border);
    text-decoration:none;
}

.ct-most-item:last-child{
    border-bottom:0;
}

.ct-most-item > span{
    width:30px;
    height:30px;
    background:var(--ct-color);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-weight:950;
}

.ct-most-item strong{
    display:block;
    color:var(--ct-text);
    font-size:13px;
    line-height:1.35;
}

.ct-most-item small{
    display:block;
    margin-top:4px;
    color:var(--ct-muted);
    font-size:11px;
}

.ct-latest-item{
    display:grid;
    grid-template-columns:74px minmax(0,1fr);
    gap:10px;
    padding:12px 16px;
    border-bottom:1px solid var(--ct-border);
    text-decoration:none;
    align-items:center;
}

.ct-latest-item:last-child{
    border-bottom:0;
}

.ct-latest-item img{
    width:74px;
    height:52px;
    object-fit:cover;
}

.ct-latest-item strong{
    color:var(--ct-text);
    font-size:13px;
    line-height:1.35;
}

.ct-side-empty{
    padding:16px;
    color:var(--ct-muted);
    font-size:13px;
}

.ct-side-cta{
    padding:20px;
    background:linear-gradient(135deg,var(--ct-color),var(--ct-secondary));
    color:#fff;
}

.ct-side-cta h3{
    margin:0 0 8px;
    font-size:21px;
    font-weight:950;
    letter-spacing:-.04em;
}

.ct-side-cta p{
    margin:0 0 16px;
    color:rgba(255,255,255,.75);
    line-height:1.55;
}

.ct-side-cta a{
    display:inline-flex;
    align-items:center;
    height:38px;
    padding:0 13px;
    background:#fff;
    color:#111827;
    text-decoration:none;
    font-weight:900;
}

.ct-pager{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    flex-wrap:wrap;
    margin:30px 0 10px;
}

.ct-pager a,
.ct-pager span{
    min-width:38px;
    height:38px;
    padding:0 12px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:1px solid var(--ct-border);
    background:var(--ct-card);
    color:var(--ct-text);
    text-decoration:none;
    font-weight:800;
}

.ct-pager .cur{
    background:var(--ct-color);
    color:#fff;
    border-color:var(--ct-color);
}

.ct-empty{
    background:var(--ct-card);
    border:1px solid var(--ct-border);
    padding:70px 24px;
    text-align:center;
    border-radius:var(--ct-card-radius);
}

.ct-empty-icon{
    font-size:48px;
    margin-bottom:16px;
}

.ct-empty h2{
    margin:0 0 8px;
    font-size:28px;
    color:var(--ct-text);
}

.ct-empty p{
    color:var(--ct-muted);
}

.ct-empty a{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    height:42px;
    padding:0 16px;
    background:var(--ct-color);
    color:#fff;
    text-decoration:none;
    font-weight:900;
    margin-top:12px;
}

.ct-card-minimal{
    box-shadow:none;
}

.ct-card-big-image .ct-card-img{
    aspect-ratio:16/12;
}

.ct-card-overlay{
    position:relative;
}

.ct-card-overlay .ct-card-body{
    margin-top:-74px;
    position:relative;
    z-index:2;
    background:linear-gradient(180deg,rgba(15,23,42,0),rgba(15,23,42,.9));
    color:#fff;
    padding:80px 14px 14px;
}

.ct-card-overlay h3 a,
.ct-card-overlay p,
.ct-card-overlay .ct-meta{
    color:#fff;
}

.ct-card-list{
    display:grid;
    grid-template-columns:155px minmax(0,1fr);
    gap:14px;
    align-items:start;
}

.ct-card-list .ct-card-img{
    margin:0;
    aspect-ratio:4/3;
}

.ct-card-round-image .ct-card-img,
.ct-card-round-image .ct-card-img img{
    border-radius:999px;
}

@media(max-width:1180px){
    .ct-layout{
        grid-template-columns:1fr;
    }

    .ct-sidebar{
        position:static;
    }

    .ct-grid{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .ct-featured{
        grid-template-columns:1fr;
    }

    .ct-featured-img{
        min-height:300px;
    }
}

@media(max-width:760px){
    .ct-hero-inner{
        display:block;
    }

    .ct-hero-stat{
        text-align:left;
        margin-top:18px;
    }

    .ct-grid{
        grid-template-columns:1fr;
    }

    .ct-card-list{
        grid-template-columns:120px minmax(0,1fr);
    }

    .ct-card h3{
        font-size:17px;
    }
}