.dpidea-cta {
    position: relative;
    margin: 50px 0;
    padding: 42px;
    overflow: hidden;
    background: #222;
    border-left: 6px solid #ff4000;
    color: #fff;
}

.dpidea-cta::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 180px;
    height: 100%;
    background: rgba(255, 64, 0, 0.08);
    transform: skewX(-18deg) translateX(60px);
}

.dpidea-cta__inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: minmax(0, 1.5fr) minmax(280px, .7fr);
    gap: 45px;
    align-items: center;
}

.dpidea-cta__label {
    display: inline-block;
    margin-bottom: 14px;
    color: #ff4000;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.dpidea-cta__title {
    margin: 0 0 16px;
    color: #fff;
    font-size: 32px;
    line-height: 1.2;
    font-weight: 700;
}

.dpidea-cta__title span {
    color: #ff4000;
}

.dpidea-cta__text {
    margin: 0;
    max-width: 760px;
    color: #d2d2d2;
    font-size: 16px;
    line-height: 1.7;
}

.dpidea-cta__box {
    padding: 30px;
    background: #fff;
    border-top: 4px solid #ff4000;
}

.dpidea-cta__box-title {
    margin: 0 0 10px;
    color: #222;
    font-size: 21px;
    line-height: 1.3;
    font-weight: 700;
}

.dpidea-cta__box-text {
    margin: 0 0 20px;
    color: #666;
    font-size: 14px;
    line-height: 1.6;
}

.dpidea-cta__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    box-sizing: border-box;
    padding: 14px 20px;
    background: #ff4000;
    border: 2px solid #ff4000;
    color: #fff !important;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none !important;
    transition: background-color .2s ease, border-color .2s ease;
}

.dpidea-cta__btn:hover {
    background: #dc3700;
    border-color: #dc3700;
    color: #fff !important;
}

.dpidea-cta__note {
    margin: 13px 0 0;
    color: #888;
    font-size: 12px;
    line-height: 1.5;
    text-align: center;
}

.dpidea-cta strong {
    color: #fff;
}

@media (max-width: 850px) {
    .dpidea-cta {
        padding: 32px 26px;
    }

    .dpidea-cta__inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .dpidea-cta__title {
        font-size: 27px;
    }
}

@media (max-width: 500px) {
    .dpidea-cta {
        margin: 35px 0;
        padding: 26px 20px;
    }

    .dpidea-cta__title {
        font-size: 24px;
    }

    .dpidea-cta__box {
        padding: 23px 20px;
    }
}

.dpi-blog h2 {
    margin: 25px 0 10px;
}

.dpi-blog p {
    margin-bottom: 8px;
}

.dpi-blog table {
    margin-bottom: 15px;
}

.dpi-blog h2 {
    margin: 42px 0 18px;
    font-size: 30px;
    line-height: 1.25;
    font-weight: 700;
}

.dpi-blog h3 {
    margin: 30px 0 14px;
    font-size: 22px;
    line-height: 1.3;
    font-weight: 700;
}

.dpi-blog ul,
.dpi-blog ol {
    margin: 18px 0 24px;
    padding-left: 24px;
}

.dpi-blog ul li,
.dpi-blog ol li {
    margin-bottom: 8px;
    line-height: 1.65;
}

.dpi-blog ul li::marker {
    color: #ff4000;
}

.dpi-blog ol li::marker {
    color: #ff4000;
    font-weight: 700;
}

.dpi-blog a {
    color: #ff4000;
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color .2s ease;
}

.dpi-blog a:hover {
    color: #d93600;
}

.dpi-blog strong {
    font-weight: 700;
    color: #222;
}

.dpi-toc {
    display: flow-root;
    width: 100%;
    box-sizing: border-box;
    margin: 32px 0;
    padding: 26px 30px;
    background: #f7f7f7;
    border-left: 4px solid #ff4000;
}

.dpi-toc > p {
    margin: 0 0 18px;
    padding: 0 0 14px;
    border-bottom: 1px solid #e5e4e4;
    font-size: 20px;
    line-height: 1.3;
    font-weight: 700;
}

.dpi-toc ul {
    display: block;
    float: none;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style: none;
}

.dpi-toc li {
    display: list-item;
    float: none;
    width: auto;
    margin: 0;
    padding: 0;
    line-height: 1.5;
    list-style: none;
}

.dpi-toc > ul > li {
    border-bottom: 1px solid #e5e4e4;
}

.dpi-toc > ul > li:last-child {
    border-bottom: 0;
}

.dpi-toc a {
    display: block;
    padding: 10px 0;
    color: #222;
    font-weight: 500;
    text-decoration: none;
    transition: color .2s ease, padding-left .2s ease;
}

.dpi-toc a:hover {
    padding-left: 5px;
    color: #ff4000;
    text-decoration: none;
}

.dpi-toc ul ul {
    float: none;
    width: auto;
    margin: 0 0 8px 16px;
    padding: 0 0 0 16px;
    border-left: 2px solid #e5e4e4;
}

.dpi-toc ul ul li {
    border: 0;
}

.dpi-toc ul ul a {
    padding: 6px 0;
    font-size: 0.95em;
    font-weight: 400;
}

.dpi-toc li::marker {
    content: "";
}

.dpi-blog table {
    width: 100%;
    margin: 25px 0 35px;
    border-collapse: collapse;
    font-size: 15px;
    line-height: 1.55;
}

.dpi-blog table td,
.dpi-blog table th {
    padding: 12px 14px;
    border: 1px solid #e5e4e4;
    text-align: left;
    vertical-align: top;
}

.dpi-blog table thead th {
    background: #262626;
    color: #fff;
    font-weight: 700;
    border-color: #3a3a3a;
}

.dpi-blog table thead th:first-child {
    border-left: 4px solid #ff4000;
}

.dpi-blog table tbody tr:nth-child(even) td {
    background: #fafafa;
}

.dpi-blog table:not(:has(thead)) td:first-child {
    width: 32%;
    font-weight: 700;
    color: #222;
    background: #f7f7f7;
    border-left: 3px solid #ff4000;
}

@media (max-width: 768px) {
    .dpi-blog h2 {
        margin-top: 34px;
        font-size: 26px;
    }

    .dpi-blog h3 {
        font-size: 20px;
    }

    .dpi-toc {
        margin: 25px 0;
        padding: 22px 20px;
    }

    .dpi-toc > p {
        font-size: 19px;
    }

    .dpi-toc a {
        padding: 9px 0;
    }

    .dpi-toc ul ul {
        margin-left: 8px;
        padding-left: 12px;
    }

    .dpi-blog table {
        display: block;
        width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .dpi-blog table td,
    .dpi-blog table th {
        min-width: 150px;
        padding: 10px;
    }
}