/* Business startup — advisory gate layout */
.blog-article--business-start .bizstart-body {
    width: 100%;
    max-width: 100%;
    padding-bottom: 4rem;
}

/* Dream vs reality opener */
.bizstart-opener {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    margin-bottom: 2.5rem;
    border: 1px solid #ececec;
}

@media (min-width: 768px) {
    .bizstart-opener {
        grid-template-columns: minmax(0, 1.65fr) minmax(0, 1fr);
        min-height: 11rem;
    }
}

.bizstart-opener__dream {
    padding: 1.75rem 1.5rem;
    background: #ffffff;
}

.bizstart-opener__dream p {
    font-size: clamp(1rem, 1.9vw, 1.125rem);
    line-height: 1.8;
    color: #333333;
    margin: 0;
}

.bizstart-opener__punch {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.5rem 1.35rem;
    background: #1a1a1a;
    border-top: 1px solid #ececec;
}

@media (min-width: 768px) {
    .bizstart-opener__punch {
        border-top: none;
        border-left: 4px solid #F2BA26;
    }
}

.bizstart-opener__punch p {
    font-size: clamp(1.0625rem, 2vw, 1.3125rem);
    font-weight: 600;
    font-style: italic;
    line-height: 1.45;
    color: #ffffff;
    margin: 0;
    text-align: center;
}

/* Context */
.bizstart-context {
    display: grid;
    gap: 1.15rem;
    margin-bottom: 3rem;
    padding: 1.5rem 1.35rem;
    background: #fafafa;
}

.bizstart-context p {
    font-size: 0.975rem;
    line-height: 1.8;
    color: #555555;
    margin: 0;
}

.bizstart-context strong {
    color: #1a1a1a;
    font-weight: 700;
}

/* Gate chapters */
.bizstart-gates {
    display: flex;
    flex-direction: column;
    gap: 0;
    margin-bottom: 2.5rem;
    border: 1px solid #ececec;
}

.bizstart-gate {
    display: grid;
    grid-template-columns: 1fr;
    border-bottom: 1px solid #ececec;
}

.bizstart-gate:last-child {
    border-bottom: none;
}

@media (min-width: 640px) {
    .bizstart-gate {
        grid-template-columns: 4.5rem minmax(0, 1fr);
    }
}

.bizstart-gate__index {
    display: flex;
    align-items: stretch;
    justify-content: center;
    padding: 0.85rem 0;
    background: #1a1a1a;
}

@media (min-width: 640px) {
    .bizstart-gate__index {
        padding: 0;
        align-items: center;
    }
}

.bizstart-gate__index span {
    font-size: 1rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: #F2BA26;
    line-height: 1;
}

@media (min-width: 640px) {
    .bizstart-gate__index span {
        writing-mode: vertical-rl;
        transform: rotate(180deg);
        font-size: 0.9rem;
    }
}

.bizstart-gate:nth-child(even) .bizstart-gate__index {
    background: #F2BA26;
}

.bizstart-gate:nth-child(even) .bizstart-gate__index span {
    color: #1a1a1a;
}

.bizstart-gate__panel {
    padding: 1.5rem 1.35rem 1.65rem;
    background: #ffffff;
}

.bizstart-gate:nth-child(even) .bizstart-gate__panel {
    background: #fcfcfc;
}

.bizstart-gate__panel h2 {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    font-weight: 700;
    line-height: 1.35;
    color: #1a1a1a;
    margin: 0 0 1rem;
    display: inline-block;
    width: 100%;
    box-sizing: border-box;
}

.bizstart-gate__panel p {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: #555555;
    margin: 0 0 1rem;
}

.bizstart-gate__panel p:last-child {
    margin-bottom: 0;
}

.bizstart-gate__lead {
    font-weight: 600;
    color: #333333 !important;
}

.bizstart-gate__note {
    margin-top: 1rem !important;
    padding: 0.85rem 1rem;
    background: #f5f5f5;
    border-left: 3px solid #1a1a1a;
    font-size: 0.9rem !important;
    color: #444444 !important;
}

.bizstart-gate:nth-child(even) .bizstart-gate__note {
    border-left-color: #F2BA26;
}

/* Checklists */
.bizstart-checklist {
    list-style: none;
    margin: 0 0 1rem;
    padding: 0;
    display: grid;
    gap: 0.55rem;
}

.bizstart-checklist li {
    position: relative;
    padding-left: 1.35rem;
    font-size: 0.9rem;
    line-height: 1.65;
    color: #555555;
}

.bizstart-checklist li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #F2BA26;
}

@media (min-width: 768px) {
    .bizstart-checklist--grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        column-gap: 1.5rem;
    }
}

/* Conclusion */
.owner-conclusion {
    margin: 2.5rem 0;
    padding-top: 2rem;
    border-top: 1px solid #ececec;
}

.owner-conclusion__head {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.owner-conclusion__rule {
    flex-shrink: 0;
    width: 2.5rem;
    height: 3px;
    background: #F2BA26;
}

.owner-conclusion h2 {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 700;
    color: #444444;
    margin: 0;
}

.owner-conclusion p {
    color: #555555;
    margin: 0 0 1rem;
    line-height: 1.75;
    font-size: 0.975rem;
}

.owner-conclusion p:last-child {
    margin-bottom: 0;
}
