
/* Page container */
.wrap {
    max-width: 1100px;
    margin: 0 auto;
    background: white;
    border-radius: 10px;
    box-shadow: 0 6px 24px rgba(20, 20, 40, 0.06);
    overflow: hidden;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 28px;
    padding: 32px;
    padding-top: 120px;
}

/* Article */
article.post {
    min-width: 0;
}

.post .kicker {
    font-size: 13px;
    color: #6b7280;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 8px;
}

.post h1 {
    margin: 0 0 10px 0;
    font-size: 28px;
    line-height: 1.15;
    color: #0f172a;
}

.post .meta {
    font-size: 13px;
    color: #475569;
    margin-bottom: 18px;
}

.hero-image {
    display: block;
    width: 100%;
    /* height:220px; */
    object-fit: cover;
    border-radius: 8px;
    background: linear-gradient(90deg, #e6eef7, #f5f8fb);
    margin-bottom: 18px;
}

.post p {
    margin: 0 0 14px 0;
}

.post ul {
    margin: 0 0 16px 1.25rem;
}

/* Buttons / links */
.btn {
    display: inline-block;
    padding: 10px 16px;
    text-decoration: none;
    border-radius: 0px;
}

.btn-secondary {
    border-color: #6b7280;
    color: #374151;
    background: transparent;
}

.post .actions {
    margin-top: 18px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
}

/* Sidebar */
aside.sidebar {
    border-left: 1px dashed #e6e9ef;
    padding-left: 22px;
}

.subscribe-card,
.about-card {
    background: #fbfdff;
    border-radius: 8px;
    padding: 16px;
    margin-bottom: 18px;
    box-shadow: 0 2px 8px rgba(12, 18, 30, 0.02);
}

.subscribe-card img {
    max-width: 130px;
    margin: 0 auto 20px;
    display: block;
}

.subscribe-card h3,
.about-card h3 {
    margin: 0 0 8px 0;
    font-size: 16px;
}

.subscribe-card label {
    display: block;
    font-size: 13px;
    margin-bottom: 6px;
}

.subscribe-card input[type="text"],
.subscribe-card input[type="email"],
.subscribe-card input[type="tel"] {
    width: 100%;
    padding: 10px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    margin-bottom: 10px;
    font-size: 14px;
}

.subscribe-card button {
    width: 100%;
    padding: 10px;
    border: 0;
    background: #252728 !important;
    color: white;
    font-weight: 600;
    cursor: pointer;
}

.meta-small {
    font-size: 13px;
    color: #6b7280;
    margin-top: 8px;
}

/* Responsive */
@media (max-width:980px) {
    .content-grid {
        grid-template-columns: 1fr;
        padding: 20px;
    }

    aside.sidebar {
        border-left: 0;
        padding-left: 0;
        padding-top: 12px;
    }
}
img{
    max-width: 100%;
}