    .cs2-strats-list {
        max-width: 800px;
        margin: 20px auto;
        padding: 20px;
        border-radius: 8px;
    }

    .strats-heading {
        font-size: 24px;
        margin-bottom: 20px;
        padding-bottom: 4px;
        border-bottom: 2px solid var(--wp--preset--color--tertiary)
    }

    .strats-items {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .strat-item {
        margin-bottom: 15px;
        padding-left: 8px;
        border-left: 4px solid #333;
        transition: all 0.3s ease;
    }

    .strat-item:hover {
        border-left-color: var(--wp--preset--color--primary);
        transform: translateX(5px);
    }

    .strat-link {
        text-decoration: none;
        color: inherit;
        display: block;
    }

    .strat-title {
        font-size: 18px;
        font-weight: 600;
        margin: 0 0 8px 0;
    }

    .strat-excerpt {
        margin: 0;
        font-size: 14px;
        line-height: 1.5;
    }

    @media (max-width: 768px) {
        .cs2-strats-list {
            padding: 15px;
        }

        .strats-heading {
            font-size: 20px;
        }

        .strat-title {
            font-size: 16px;
        }

        .strat-excerpt {
            font-size: 13px;
        }
    }