.prague-post-title,
.prague-post-navigation,
.post-navigation,
.prague-breadcrumbs {
    display: none !important;
}

/* ── Layout ─────────────────────────────────────────────────────────────── */
#dyn-wrap {
    font-family: Arial, Helvetica, sans-serif;
    color: #111111;
    -webkit-font-smoothing: antialiased;
}
#dyn-wrap *, #dyn-wrap *::before, #dyn-wrap *::after {
    box-sizing: border-box;
}
#dyn-layout {
    max-width: 1140px;
    margin: 0 auto;
    display: flex;
    gap: 80px;
    align-items: flex-start;
}
#dyn-intro {
    flex: 1 1 auto;
    min-width: 0;
}

#dyn-title {
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    color: #111111;
    line-height: 1.1;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}
#dyn-description p {
    font-size: 15px;
    color: #666666;
    line-height: 1.75;
    margin-bottom: 40px;
    max-width: 460px;
}
#dyn-intro-image {
    max-width: 340px;
    width: 100%;
    display: block;
    margin-top: 20px;
}

/* ── Right column (form) ───────────────────────────────────────────────── */
#dyn-form-col {
    flex: 0 0 380px;
    max-width: 380px;
}

/* Eyebrow labels — used above both the intro and the form ("About This
   Resource" / "Get Instant Access") */
.dyn-col-label {
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: #111111;
    margin-bottom: 16px;
}

/* ── Fields ─────────────────────────────────────────────────────────────── */
.dyn-field {
    margin-bottom: 24px;
}
.dyn-label {
    display: block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #111111;
    margin-bottom: 8px;
}
.dyn-req {
    color: #cc0000;
    margin-left: 3px;
}
#dyn-form input[type="text"],
#dyn-form input[type="email"],
#dyn-form input[type="tel"] {
    width: 100%;
    padding: 14px 16px;
    background: #efefef;
    border: none;
    border-bottom: 2px solid transparent;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    color: #111111;
    transition: border-color 0.2s, background 0.2s;
    -webkit-appearance: none;
    border-radius: 0;
}
#dyn-form input:focus {
    outline: none;
    background: #e8e8e8;
    border-bottom-color: #111111;
}
#dyn-form input::placeholder {
    color: #aaaaaa;
}

/* ── Buttons ────────────────────────────────────────────────────────────── */
#dyn-submit,
#dyn-download-btn {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    background: none;
    border: none;
    padding: 16px 0 0;
    width: 100%;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: #111111;
    cursor: pointer;
    transition: opacity 0.2s;
    margin-top: 8px;
}
#dyn-submit:hover,
#dyn-download-btn:hover {
    opacity: 0.5;
}
#dyn-submit::after,
#dyn-download-btn::after {
    content: '→';
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0;
}

/* ── Status messages ────────────────────────────────────────────────────── */
#dyn-error {
    font-size: 13px;
    color: #cc0000;
    padding: 10px 0;
    border-top: 1px solid #cc0000;
    margin-top: 16px;
}
#dyn-success,
#dyn-download-ready {
    padding: 24px 0;
    font-size: 15px;
    color: #666666;
    line-height: 1.75;
}
#dyn-success strong,
#dyn-download-ready strong {
    color: #111111;
}

/* ── Responsive ─────────────────────────────────────────────────────────── */
@media (max-width: 860px) {
   #dyn-layout {
        flex-direction: column;
        align-items: stretch;
        padding: 12px 12px;
        gap: 24px;
    }
    #dyn-intro,
    #dyn-form-col {
        flex: 1 1 100%;
        max-width: 100%;
        min-width: 0;
    }
    #dyn-intro-image {
        max-width: 100%;
    }

}